:root {
  --ink: #14213d;
  --muted: #5f6f80;
  --paper: #ffffff;
  --cloud: #f4f8fb;
  --sand: #f6efe5;
  --teal: #008c8c;
  --coral: #ff6b4a;
  --gold: #f5b84b;
  --line: rgba(20, 33, 61, 0.12);
  --shadow: 0 18px 45px rgba(20, 33, 61, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--coral));
  border-radius: var(--radius);
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 12px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
  border-radius: var(--radius);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: var(--cloud);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--coral);
  box-shadow: 0 12px 24px rgba(255, 107, 74, 0.24);
}

.btn-primary:hover {
  background: #f25f3e;
}

.btn-secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.btn-dark {
  color: #fff;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 76px);
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #0b1628;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(10, 20, 36, 0.9), rgba(10, 20, 36, 0.38)), var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 120px;
  content: "";
  background: linear-gradient(0deg, var(--paper), transparent);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(260px, 360px);
  gap: 48px;
  align-items: end;
  padding: 90px 0 120px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--teal);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.hero .eyebrow {
  color: #9ff2e6;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.93;
  letter-spacing: 0;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 5.8vw, 5.5rem);
}

.lead {
  max-width: 680px;
  color: #dce8ef;
  font-size: clamp(1.04rem, 2vw, 1.25rem);
}

.hero-buttons,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trip-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.trip-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 6px;
}

.trip-card h2 {
  margin: 16px 0 6px;
  color: #fff;
  font-size: 1.25rem;
}

.trip-card p {
  margin-bottom: 0;
  color: #e9f2f4;
}

.trust-strip {
  position: relative;
  z-index: 2;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-weight: 700;
}

.trust-number {
  color: var(--teal);
  font-size: 1.45rem;
  font-weight: 900;
}

section {
  padding: 84px 0;
}

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

.section-head h2,
.split h2,
.cta-band h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1;
}

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

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

.feature,
.service-card,
.testimonial,
.faq-item,
.contact-card,
.step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(20, 33, 61, 0.06);
}

.feature,
.service-card,
.testimonial,
.faq-item,
.contact-card,
.step {
  padding: 24px;
}

.icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border-radius: var(--radius);
  font-size: 1.35rem;
}

.feature:nth-child(2) .icon,
.service-card:nth-child(2) .icon {
  background: var(--coral);
}

.feature:nth-child(3) .icon,
.service-card:nth-child(3) .icon {
  color: var(--ink);
  background: var(--gold);
}

.feature h3,
.service-card h3,
.listing-card h3,
.testimonial h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.feature p,
.service-card p,
.testimonial p,
.faq-item p,
.contact-card p,
.step p {
  color: var(--muted);
}

.image-band {
  background: var(--cloud);
}

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

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stamp {
  position: absolute;
  right: -18px;
  bottom: 28px;
  max-width: 190px;
  padding: 18px;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stamp strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
}

.split p {
  color: var(--muted);
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card .btn {
  width: fit-content;
  margin-top: auto;
}

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

.stars {
  margin-bottom: 14px;
  color: var(--gold);
  font-weight: 900;
}

.cta-band {
  color: #fff;
  background: var(--ink);
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-band p {
  max-width: 570px;
  margin: 12px 0 0;
  color: #dbe4ee;
}

.page-hero {
  position: relative;
  min-height: 440px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #0b1628;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(10, 20, 36, 0.86), rgba(10, 20, 36, 0.3)), var(--hero-image);
  background-position: center;
  background-size: cover;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  padding: 78px 0;
}

.page-hero p {
  max-width: 720px;
  color: #e1ebf3;
  font-size: 1.18rem;
}

.value-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.value-list div {
  padding: 18px;
  border-left: 4px solid var(--coral);
  background: var(--cloud);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: steps;
}

.step {
  position: relative;
}

.step::before {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border-radius: var(--radius);
  counter-increment: steps;
  content: counter(steps);
  font-weight: 900;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-btn {
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  color: #fff;
  background: var(--ink);
}

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

.listing-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(20, 33, 61, 0.07);
}

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

.listing-body {
  padding: 20px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.tag {
  padding: 6px 9px;
  color: var(--teal);
  background: rgba(0, 140, 140, 0.1);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.listing-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 14px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.form-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

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

label {
  font-weight: 800;
}

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

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

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

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.socials a {
  display: grid;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 900;
  background: #fff;
}

.map {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: var(--radius);
  filter: saturate(0.85);
}

.site-footer {
  padding: 48px 0 24px;
  color: #dbe4ee;
  background: #0f1b30;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 0.8fr;
  gap: 30px;
}

.site-footer .brand {
  color: #fff;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 1rem;
}

.site-footer p,
.site-footer a {
  color: #c8d4df;
}

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

.copyright {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #aebccc;
  font-size: 0.92rem;
}

.footer-credit {
  color: #aebccc;
}

.footer-credit a {
  font-weight: 900;
}

.site-word {
  color: #1677ff;
}

.sorcerers-word {
  color: #ff8a00;
}

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

  .nav-links {
    position: absolute;
    right: 20px;
    top: 76px;
    left: 20px;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    padding: 13px;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero-inner,
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 72px;
  }

  .trip-card {
    max-width: 430px;
  }

  .trust-grid,
  .grid-3,
  .steps,
  .listing-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head,
  .cta-band .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .stamp {
    right: 14px;
  }
}

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

  .nav {
    min-height: 68px;
  }

  .nav-links {
    top: 68px;
    right: 14px;
    left: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 58px 0 92px;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4.3rem);
  }

  section {
    padding: 60px 0;
  }

  .trust-grid,
  .grid-3,
  .steps,
  .faq-grid,
  .listing-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    align-items: flex-start;
  }

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

  .cta-row,
  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
