:root {
  --bg: #f5f3ff;
  --bg-alt: #ffffff;
  --accent: #2563eb;
  --accent-soft: #e0edff;
  --accent-strong: #1d4ed8;
  --text: #0f172a;
  --muted: #6b7280;
  --border: #e5e7eb;
  --radius-lg: 1.2rem;
  --radius-md: 0.8rem;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.12);
  --transition: 0.18s ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, #dbeafe 0, transparent 55%),
    radial-gradient(circle at bottom right, #fef3c7 0, transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.mx-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.4rem;
}

.mx-main {
  min-height: 60vh;
}

/* Header & nav */

.mx-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(248, 250, 252, 0.96);
  border-bottom: 1px solid rgba(209, 213, 219, 0.9);
}

.mx-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
}

.mx-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.mx-logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 1.1rem;
  background: conic-gradient(from 160deg, #2563eb, #22c55e, #f97316, #2563eb);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.45);
}

.mx-logo-icon {
  background: #f9fafb;
  color: #1f2937;
  border-radius: 999px;
  padding: 0.15rem 0.35rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.mx-logo-text {
  display: flex;
  flex-direction: column;
}

.mx-logo-title {
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mx-logo-subtitle {
  font-size: 0.78rem;
  color: var(--muted);
}

.mx-nav {
  display: flex;
  gap: 1.2rem;
  font-size: 0.88rem;
}

.mx-nav a {
  color: var(--muted);
  position: relative;
  padding: 0.2rem 0;
}

.mx-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #f97316);
  transition: width var(--transition);
}

.mx-nav a:hover {
  color: var(--text);
}

.mx-nav a:hover::after {
  width: 100%;
}

.mx-nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(148, 163, 184, 0.9);
  border-radius: 999px;
  padding: 0.3rem 0.5rem;
  cursor: pointer;
}

.mx-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #111827;
  border-radius: 999px;
  margin: 3px 0;
}

/* Sections & typography */

.mx-section {
  padding: 3rem 0;
}

.mx-section-alt {
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(209, 213, 219, 0.8);
  border-bottom: 1px solid rgba(209, 213, 219, 0.8);
}

.mx-section-header {
  margin-bottom: 1.5rem;
}

.mx-section-header h1,
.mx-section-header h2 {
  margin: 0 0 0.45rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.mx-section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.mx-section-header-inline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

h1 {
  font-size: clamp(2rem, 3vw, 2.5rem);
}

h2 {
  font-size: 1.3rem;
}

h3 {
  font-size: 1.05rem;
}

.mx-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

/* Hero */

.mx-hero {
  padding-top: 2.2rem;
}

.mx-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: center;
}

.mx-hero-copy {
  max-width: 36rem;
}

.mx-hero-lead {
  color: var(--muted);
  margin: 0.6rem 0 1.2rem;
}

.mx-hero-booking {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.1rem 1.2rem 1.2rem;
  box-shadow: var(--shadow-soft);
}

.mx-booking-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.mx-booking-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.mx-booking-form label {
  font-size: 0.84rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.mx-booking-form input,
.mx-booking-form select {
  border-radius: 0.8rem;
  border: 1px solid var(--border);
  padding: 0.5rem 0.7rem;
  font: inherit;
  background: #f9fafb;
  color: var(--text);
}

.mx-booking-form input:focus,
.mx-booking-form select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.mx-booking-note {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.mx-hero-media {
  position: relative;
}

.mx-hero-card {
  position: relative;
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: var(--shadow-soft);
  background: radial-gradient(circle at top left, #bfdbfe, #e5e7eb);
}

.mx-hero-card img {
  border-radius: inherit;
  object-fit: cover;
}

/* Buttons */

.mx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.mx-btn-primary {
  background: linear-gradient(120deg, var(--accent), #f97316);
  color: #f9fafb;
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.45);
}

.mx-btn-primary:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}

/* Grids & cards */

.mx-grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.6rem;
}

.mx-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.mx-grid-align-top {
  align-items: flex-start;
}

.mx-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.2rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  font-size: 0.92rem;
}

.mx-card-outline::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #f97316);
  opacity: 0.7;
}

.mx-card h2,
.mx-card h3 {
  margin-top: 0.3rem;
}

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

.mx-card ul {
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Steps & lists */

.mx-steps {
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.mx-steps li + li {
  margin-top: 0.25rem;
}

.mx-link-inline {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-strong);
}

.mx-link-inline::after {
  content: "↗";
  margin-left: 0.25rem;
}

/* Map */

.mx-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  background: #e5e7eb;
}

.mx-map-large iframe {
  height: 260px;
}

/* Contact */

.mx-contact-grid {
  margin-bottom: 2rem;
}

.mx-contact-form {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem 1.3rem;
  font-size: 0.9rem;
}

.mx-form-row {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}

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

.mx-contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.7rem;
  font-size: 0.86rem;
}

.mx-contact-form input,
.mx-contact-form textarea {
  border-radius: 0.85rem;
  border: 1px solid var(--border);
  padding: 0.55rem 0.75rem;
  font: inherit;
  background: #f9fafb;
  color: var(--text);
}

.mx-contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.mx-contact-form input:focus,
.mx-contact-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

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

/* Footer */

.mx-footer {
  margin-top: 2.6rem;
  background: #0f172a;
  color: #e5e7eb;
}

.mx-footer-main {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  padding: 1.8rem 0 1.2rem;
  font-size: 0.88rem;
}

.mx-footer-col h3,
.mx-footer-col h4 {
  margin-top: 0;
}

.mx-footer-col p {
  margin: 0 0 0.4rem;
  color: #cbd5f5;
}

.mx-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mx-footer-col li + li {
  margin-top: 0.3rem;
}

.mx-footer a {
  color: #e5e7eb;
}

.mx-footer-bottom {
  border-top: 1px solid rgba(55, 65, 81, 0.9);
  text-align: center;
  padding: 0.7rem 0 1.1rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Cookie banner */

.mx-cookie {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  max-width: 980px;
  width: 100%;
  background: #0f172a;
  color: #e5e7eb;
  padding: 0.9rem 1.3rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.82rem;
  z-index: 40;
  border-top: 1px solid rgba(55, 65, 81, 0.9);
}

.mx-cookie-text p {
  margin: 0 0 0.35rem;
  color: #cbd5f5;
}

.mx-cookie-text a {
  color: #bfdbfe;
  text-decoration: underline;
}

.mx-cookie-actions {
  display: flex;
  gap: 0.45rem;
  flex-shrink: 0;
  align-items: center;
}

.mx-cookie-btn {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
}

.mx-cookie-btn-primary {
  background: linear-gradient(120deg, #2563eb, #f97316);
  color: #f9fafb;
}

.mx-cookie-btn-secondary {
  background: transparent;
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.9);
}

.mx-cookie-btn-secondary:hover {
  background: rgba(15, 23, 42, 0.9);
}

.mx-cookie--hidden {
  display: none !important;
}

/* General text */

ul {
  padding-left: 1.1rem;
}

.mx-section p {
  margin-bottom: 0.7rem;
}


/* Gallery */

.mx-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.mx-gallery--page {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 1.8rem;
}

.mx-gallery-item {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  font-size: 0.82rem;
}

.mx-gallery-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.mx-gallery-item figcaption {
  padding: 0.45rem 0.7rem 0.6rem;
  color: var(--muted);
}
