@@font-face {
  font-family: "Yesteryear";
  src: url("../fonts/Yesteryear/Yesteryear-Regular.woff2") format("woff2"),
    url("../fonts/Yesteryear/Yesteryear-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@@font-face {
  font-family: "DM Serif Text";
  src: url("../fonts/DM_Serif_Text/DMSerifText-Regular.woff2") format("woff2"),
    url("../fonts/DM_Serif_Text/DMSerifText-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@@font-face {
  font-family: "DM Serif Text";
  src: url("../fonts/DM_Serif_Text/DMSerifText-Italic.woff2") format("woff2"),
    url("../fonts/DM_Serif_Text/DMSerifText-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
:root {
  --color-dark: #2c2c2c;
  --color-deep-purple: #522546;
  --color-rose: #88304e;
  --color-flamingo: #f7374f;
  --font-title: "Yesteryear", cursive;
  --font-text: "DM Serif Text", serif;
  --max-width: 1440px;
  --section-padding: 4rem 1.5rem;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-text);
  background: url("../images/pattern.webp") repeat;
  color: var(--color-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--color-dark);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  color: var(--color-deep-purple);
}
p {
  font-family: var(--font-text);
  color: var(--color-dark);
  line-height: 1.7;
}
@media (max-width: 768px) {
  :root {
    --section-padding: 3rem 1rem;
  }
}
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: var(--section-padding);
}
.flex {
  display: flex;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-column {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.justify-between {
  justify-content: space-between;
}
.align-start {
  align-items: flex-start;
}
.align-end {
  align-items: flex-end;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.uppercase {
  text-transform: uppercase;
}
.capitalize {
  text-transform: capitalize;
}
.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}
.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}
.pt-1 {
  padding-top: 0.5rem;
}
.pt-2 {
  padding-top: 1rem;
}
.pt-3 {
  padding-top: 1.5rem;
}
.pt-4 {
  padding-top: 2rem;
}
.pb-1 {
  padding-bottom: 0.5rem;
}
.pb-2 {
  padding-bottom: 1rem;
}
.pb-3 {
  padding-bottom: 1.5rem;
}
.pb-4 {
  padding-bottom: 2rem;
}
.w-100 {
  width: 100%;
}
.max-w-50 {
  max-width: 50%;
}
.max-w-75 {
  max-width: 75%;
}
.max-w-100 {
  max-width: 100%;
}
.bg-dark {
  background-color: var(--color-dark);
}
.bg-purple {
  background-color: var(--color-deep-purple);
}
.bg-rose {
  background-color: var(--color-rose);
}
.bg-flamingo {
  background-color: var(--color-flamingo);
}
.text-dark {
  color: var(--color-dark);
}
.text-purple {
  color: var(--color-deep-purple);
}
.text-rose {
  color: var(--color-rose);
}
.text-flamingo {
  color: var(--color-flamingo);
}
.hidden {
  display: none !important;
}
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
.rounded {
  border-radius: 0.5rem;
}
.shadow {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-text);
  font-weight: normal;
  border-radius: 0.75rem;
  border: none;
  padding: 0.75rem 2rem;
  transition: all 0.35s ease;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transform: translateY(0);
}
.btn-sm {
  padding: 0.4rem 1.2rem;
  font-size: 0.85rem;
}
.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}
.btn-filled {
  background: var(--color-deep-purple);
  color: #fff;
  box-shadow: inset 0 0 0 0 transparent;
}
.btn-filled:hover {
  box-shadow: inset 0 0 20px var(--color-rose);
  background: rgba(82, 37, 70, 0.9);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--color-deep-purple);
  color: var(--color-deep-purple);
}
.btn-outline:hover {
  background: rgba(82, 37, 70, 0.15);
  box-shadow: inset 0 0 15px rgba(136, 48, 78, 0.2);
  color: var(--color-dark);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.1)
  );
  z-index: -1;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.btn:hover::before {
  opacity: 1;
  backdrop-filter: blur(12px);
}
.btn:active {
  transform: translateY(2px);
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.3);
  filter: brightness(0.95);
}
.site-header {
  width: 100%;
  background-color: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: fixed;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.logo {
  z-index: 3;
}
.logo img {
  height: 34px;
  width: auto;
  display: block;
}
.nav-toggle {
  display: none;
}
.nav-icon {
  position: absolute;
  right: 1.5rem;
  top: 1.4rem;
  cursor: pointer;
  z-index: 3;
}
.nav-icon svg {
  fill: none;
  stroke: var(--color-flamingo);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
  transition: transform 0.3s ease, stroke 0.3s ease;
}
.nav-icon:hover svg {
  stroke: #fff;
  transform: scale(1.1);
}
.close-icon {
  display: none;
}
.nav-toggle:checked + .nav-icon .burger-icon {
  display: none;
}
.nav-toggle:checked + .nav-icon .close-icon {
  display: block;
}
.site-nav {
  position: absolute;
  top: 100%;
  right: 1.5rem;
  background: rgba(44, 44, 44, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: all 0.4s ease;
  min-width: 260px;
  z-index: 2;
}
.site-nav ul {
  list-style: none;
}
.site-nav li + li {
  margin-top: 1rem;
}
.site-nav a {
  color: #f9f9f9;
  font-family: var(--font-text);
  text-decoration: none;
  font-size: 1.05rem;
  letter-spacing: 0.2px;
  transition: color 0.3s ease, transform 0.3s ease;
}
.site-nav a:hover {
  color: var(--color-flamingo);
  transform: translateX(4px);
}
.nav-toggle:checked ~ .site-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
@media (min-width: 768px) {
  .nav-icon {
    display: none;
  }
  .site-nav {
    position: static;
    background: none;
    border: none;
    box-shadow: none;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    display: flex;
    margin-left: auto;
  }
  .site-nav ul {
    display: flex;
    gap: 2.5rem;
  }
  .site-nav li + li {
    margin-top: 0;
  }
  .site-nav a {
    font-size: 1rem;
    color: #fff;
  }
  .site-nav a:hover {
    color: var(--color-flamingo);
    transform: none;
  }
}
.site-footer {
  background-color: #1a1a1a;
  padding: 3rem 1.5rem;
  text-align: center;
  color: #ccc;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-inner {
  max-width: 900px;
  margin: 0 auto;
}
.footer-logo img {
  max-width: 160px;
  height: auto;
  margin-bottom: 1.5rem;
}
.footer-description {
  font-family: var(--font-text);
  font-size: 1.05rem;
  line-height: 1.7;
  color: #aaa;
  margin: 0 auto 2rem;
  max-width: 600px;
}
.footer-nav {
  margin-top: 1rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links a {
  color: #eee;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--color-flamingo);
}
.footer-meta .footer-disclaimer,
.footer-meta .footer-note {
  color: #fff;
}
.footer-meta {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: #fff;
  line-height: 1.6;
  font-family: var(--font-text);
}
.footer-meta strong {
  color: #fff;
  font-weight: 600;
}
.footer-meta u {
  text-decoration-color: var(--color-flamingo);
  text-underline-offset: 2px;
}
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  padding: var(--section-padding);
  padding-top: 10rem;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.hero-section h1 {
  font-family: var(--font-title);
  font-size: 3rem;
  margin-bottom: 2rem;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-visuals {
  margin-top: 4rem;
}
.hero-visuals .visual {
  border-radius: 1rem;
}
.hero-visuals .visual {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  width: 300px;
  height: auto;
  transition: transform 0.3s ease;
}
.visual-1 {
  top: 0;
  right: 60%;
  transform: rotate(-4deg);
}
.visual-2 {
  top: 20%;
  left: 40%;
  transform: rotate(2deg);
}
.visual-3 {
  bottom: 5%;
  left: 20%;
  transform: rotate(-6deg);
}
@media (min-width: 1024px) {
  .hero-section {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding-top: 8rem;
    padding-bottom: 6rem;
  }
  .hero-content {
    flex: 1;
    padding-right: 3rem;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .hero-visuals {
    display: block;
    flex: 1;
    position: relative;
    max-width: 600px;
  }
  .hero-visuals .visual {
    position: absolute;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    width: 300px;
    height: auto;
    transition: transform 0.3s ease;
  }
  .visual-1 {
    top: 0;
    right: 60%;
    transform: rotate(-4deg);
  }
  .visual-2 {
    top: 20%;
    left: 40%;
    transform: rotate(2deg);
  }
  .visual-3 {
    bottom: 5%;
    left: 20%;
    transform: rotate(-6deg);
  }
  .hero-visuals .visual:hover {
    transform: scale(1.03) rotate(0deg);
    z-index: 3;
  }
}
.gallery-section {
  padding: var(--section-padding);
  background: #1b1b1b;
  color: #fff;
}
.section-bullets {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.section-bullets .bullet {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--color-flamingo);
  box-shadow: 0 0 10px rgba(247, 55, 79, 0.4);
}
.gallery-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.gallery-text {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.gallery-text h2 {
  font-family: var(--font-title);
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
}
.gallery-text p {
  font-family: var(--font-text);
  color: #ccc;
  font-size: 1.1rem;
}
.gallery-swiper {
  overflow: hidden;
  width: 100%;
}
.swiper-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
}
.swiper-slide {
  scroll-snap-align: start;
  flex: 0 0 80%;
  max-width: 80%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
}
@media (min-width: 1024px) {
  .gallery-layout {
    flex-direction: row;
    align-items: center;
  }
  .gallery-text {
    flex: 1;
    text-align: left;
    padding-right: 2rem;
  }
  .gallery-swiper {
    flex: 1.5;
  }
  .swiper-slide {
    flex: 0 0 45%;
    max-width: 45%;
  }
  .swiper-track {
    gap: 1.5rem;
  }
}
.gallery-swiper {
  overflow: hidden;
  position: relative;
}
.swiper-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
}
.swiper-track::-webkit-scrollbar {
  display: none;
}
.swiper-slide {
  scroll-snap-align: center;
  flex: 0 0 80%;
  max-width: 80%;
  border-radius: 1rem;
  overflow: hidden;
  cursor: grab;
}
.swiper-slide img {
  width: 100%;
  display: block;
  border-radius: 1rem;
}
@media (min-width: 1024px) {
  .swiper-slide {
    flex: 0 0 45%;
    max-width: 45%;
  }
}
.section-bullets {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.section-bullets .bullet {
  width: 50px;
  height: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  transition: background 0.3s ease;
  cursor: pointer;
}
.section-bullets .bullet.active {
  background: var(--color-flamingo);
  box-shadow: 0 0 10px rgba(247, 55, 79, 0.5);
}
.gallery-controls {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.gallery-controls button {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.gallery-controls button:hover {
  background: var(--color-flamingo);
  color: #fff;
  box-shadow: 0 0 8px rgba(247, 55, 79, 0.5);
}
.noscript-warning {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-flamingo);
  font-size: 1rem;
  border-radius: 0.5rem;
  text-align: center;
  font-family: var(--font-text);
}
.services-section {
  padding: var(--section-padding);
  background: #111;
  color: #fff;
}
.services-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.services-header h2 {
  font-family: var(--font-title);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
}
.services-header p {
  font-family: var(--font-text);
  font-size: 1.15rem;
  color: #ccc;
}
.services-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.service-post {
  background: rgba(255, 255, 255, 0.03);
  padding: 3rem 2rem;
  margin-bottom: 3rem;
  border-radius: 1rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: box-shadow 0.3s ease;
}
.service-post:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.service-title {
  font-family: var(--font-text);
  font-size: 1.75rem;
  color: var(--color-flamingo);
  margin-bottom: 1.25rem;
}
.service-post p {
  font-family: var(--font-text);
  font-size: 1.1rem;
  color: #ddd;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.adventurers-section {
  padding: var(--section-padding);
  background: #181818;
  color: #fff;
}
.adventurers-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.adventurers-header h2 {
  font-family: var(--font-title);
  font-size: 2.3rem;
  margin-bottom: 1rem;
  color: #fff;
}
.adventurers-header p {
  font-family: var(--font-text);
  font-size: 1.15rem;
  color: #ccc;
}
.adventurers-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .adventurers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .adventurers-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.adventure-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.adventure-card:hover {
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.05);
}
.icon-wrapper {
  color: var(--color-flamingo);
}
.adventure-title {
  font-size: 1.3rem;
  font-family: var(--font-text);
  color: #fff;
  margin: 0;
}
.adventure-card p {
  font-family: var(--font-text);
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}
.adventure-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #aaa;
  font-size: 0.95rem;
  font-family: var(--font-text);
}
.adventure-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.4rem;
}
.adventure-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-flamingo);
  font-size: 1rem;
  line-height: 1;
}
.contact-section {
  padding: var(--section-padding);
  background: #1d1d1d;
  color: #fff;
}
.contact-container {
  max-width: 800px;
  margin: 0 auto;
}
.contact-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.contact-header h2 {
  font-family: var(--font-title);
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 1rem;
}
.contact-header p {
  font-family: var(--font-text);
  font-size: 1.1rem;
  color: #ccc;
}
.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.form-group {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
}
.form-group.full {
  flex: 1 1 100%;
}
.form-group label {
  font-size: 0.95rem;
  color: #ddd;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  font-family: var(--font-text);
  font-size: 1rem;
  padding: 0.8rem 1rem;
  border: 1px solid #444;
  background: #222;
  color: #fff;
  border-radius: 0.5rem;
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-flamingo);
}
.form-group.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.form-group.checkbox input {
  margin-top: 0.3rem;
  accent-color: var(--color-flamingo);
}
.form-group.checkbox label {
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.4;
}
.form-group.checkbox a {
  color: var(--color-flamingo);
  text-decoration: underline;
}
.faq-section {
  padding: var(--section-padding);
  background: #121212;
  color: #fff;
}
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .faq-container {
    flex-direction: row;
    gap: 3rem;
  }
}
.faq-content {
  flex: 1 1 60%;
}
.faq-content h2 {
  font-family: var(--font-title);
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
}
.faq-content p {
  font-family: var(--font-text);
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
}
.faq-accordion details {
  background: rgba(255, 255, 255, 0.03);
  padding: 1.2rem 1.5rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #333;
  transition: background 0.3s ease;
}
.faq-accordion details[open] {
  background: rgba(255, 255, 255, 0.05);
}
.faq-accordion summary {
  cursor: pointer;
  font-weight: bold;
  color: var(--color-flamingo);
  font-size: 1rem;
  font-family: var(--font-text);
}
.faq-accordion p {
  margin-top: 0.75rem;
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}
.faq-images {
  flex: 1 1 40%;
}
.image-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.image-grid img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  object-fit: cover;
}
.page-banner {
  background: url("../images/pattern.webp") repeat;
  background-color: #2c2c2c;
  padding: 8rem 1.5rem 4rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-banner-inner {
  max-width: 960px;
  margin: 0 auto;
}
.page-banner h1 {
  font-family: var(--font-title);
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff;
}
.page-banner-subtitle {
  font-family: var(--font-text);
  font-size: 1.1rem;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto;
}
.menu-download-cta {
  background-color: #181818;
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}
.menu-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.menu-cta-content {
  max-width: 600px;
  color: #eee;
}
.menu-cta-content h2 {
  font-family: var(--font-title);
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
}
.menu-cta-content p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1.5rem;
}
.menu-cta-image {
  flex-shrink: 0;
}
.menu-cta-image img {
  border-radius: 1rem;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}
@media (min-width: 1024px) {
  .menu-cta-wrapper {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }
  .menu-cta-content {
    flex: 1 1 50%;
    padding: 0 2rem;
  }
  .menu-cta-image {
    flex: 1 1 25%;
  }
  .left-image {
    order: 1;
  }
  .menu-cta-content {
    order: 2;
  }
  .right-image {
    order: 3;
  }
}
.menu-image-gallery {
  padding: var(--section-padding);
  background-color: #111;
}
.menu-gallery {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.menu-gallery img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.legal-banner {
  background-color: #1a1a1a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.legal-updated {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #aaa;
  font-style: italic;
}
.legal-section {
  padding: var(--section-padding);
  background-color: #111;
  color: #ddd;
}
.legal-inner {
  max-width: 860px;
  margin: 0 auto;
}
.legal-section h3 {
  font-family: var(--font-text);
  color: #fff;
}
.legal-section h2 {
  font-size: 1.6rem;
  font-family: var(--font-text);
  margin-bottom: 1rem;
  color: #fff;
}
.legal-section p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-family: var(--font-text);
  color: #fff;
}
.legal-section a {
  color: var(--color-flamingo);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-section ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  list-style-type: disc;
  color: #fff;
}
.legal-section li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
