:root {
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-100: #f1f5f9;
  --indigo-600: #4f46e5;
  --indigo-500: #6366f1;
  --cyan-500: #06b6d4;
  --cyan-400: #22d3ee;
  --bg-color: var(--slate-100);
  --text-main: var(--slate-900);
  --text-muted: var(--slate-800);
  --border-accent: var(--cyan-500);
  --spacing-fluid: clamp(1.5rem, 5vw, 4rem);
  --radius-lg: 1rem;
  --shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.05);
  --font-main: system-ui, -apple-system, sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-main);

  line-height: 1.6;
  padding-bottom: 70px;
}

body.page-sticky-footer {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 70px;
}

body.page-sticky-footer main {
  flex: 1;
}

@media (min-width: 768px) {
  body.page-sticky-footer {
    padding-bottom: 0;
  }
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-fluid);
}

main {
  display: block;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.site-header {
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  border-bottom: 4px solid var(--border-accent);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-main);
  font-weight: 700;
  font-size: 1.5rem;
}

.brand svg {
  width: 32px;
  height: 32px;
  color: var(--indigo-600);
}

.desktop-nav {
  display: none;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-list a:hover {
  color: var(--indigo-600);
}

.nav-list a.activ_link {
  color: var(--indigo-600);
  font-weight: 600;
}

.nav-list a.btn.activ_link {
  background: var(--indigo-500);
  color: #ffffff;
}

.nav-list a.btn.activ_link:hover {
  background: var(--indigo-600);
}

.bottom-nav-list a.activ_link {
  color: var(--cyan-500);
}

.bottom-nav-list a.activ_link svg {
  color: var(--cyan-500);
}

.btn {
  background: var(--indigo-600);
  color: #ffffff !important;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: background 0.2s;
  border: 2px solid transparent;
  display: inline-block;
}

.btn:hover {
  background: var(--indigo-500);
}

.burger-menu {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-main);
}

.burger-menu svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 767px) {
  .desktop-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 1.5rem 0;
    box-shadow: var(--shadow-soft);
    border-top: 1px solid #e2e8f0;
  }

  .desktop-nav.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .desktop-nav {
    display: block;
  }

  .burger-menu {
    display: none;
  }
}

.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
  border-top: 2px solid var(--border-accent);
  z-index: 99;
  display: block;
}

.bottom-nav-list {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: space-around;
  align-items: center;
  height: 70px;
}

.bottom-nav-list a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  gap: 4px;
}

.bottom-nav-list svg {
  width: 24px;
  height: 24px;
}

.bottom-nav-list a:hover {
  color: var(--indigo-600);
}

@media (min-width: 768px) {
  .mobile-bottom-nav {
    display: none;
  }
}

.site-footer {
  background: var(--slate-900);
  color: var(--slate-100);
  padding: var(--spacing-fluid) 0;
  border-top: 4px solid var(--border-accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand .brand {
  color: #ffffff;
  margin-bottom: 1rem;
  display: inline-flex;
}

.tagline {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--cyan-400);
  margin: 0 0 1rem 0;
}

.footer-description {
  color: #cbd5e1;
  max-width: 500px;
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.25rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--cyan-400);
}

.footer-contact p {
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--cyan-400);
  text-decoration: none;
  font-weight: 500;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s;
}

.contact-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contact-link svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.legal-links a:hover {
  color: #ffffff;
}

.copyright {
  margin: 0;
  color: #94a3b8;
  font-size: 0.875rem;
}

/* footer extras */
.footer__extras {
  margin-top: 16px;
}

.footer__extrasInner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}

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

.footer-social {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
}

.footer-social__icon {
  display: block;
}

.footer__poemWrap {
  max-width: 520px;
}

.footer-poem {
  opacity: 0.9;
  font-size: 0.95em;
  line-height: 1.35;
}

/* --- injected by logo step --- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px
}

.brand-logo {
  width: 28px;
  height: 28px;
  display: inline-block;
  flex: 0 0 auto
}

.brand-logo * {
  vector-effect: non-scaling-stroke
}

/* --- /injected by logo step --- */

/* --- booking page: step numbers and cards (no Tailwind dependency) --- */
.booking-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: var(--cyan-500);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.booking-step-card {
  background: var(--slate-100);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  list-style: none;
  margin: 0;
}

.booking-step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 0.5rem 0;
}

.booking-step-card p {
  color: var(--slate-800);
  margin: 0;
  line-height: 1.6;
}

.booking-steps-grid {
  display: grid;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 768px) {
  .booking-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .booking-steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.booking-check-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: #e0e7ff;
  color: var(--indigo-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.booking-get-card {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: rgba(241, 245, 249, 0.5);
}

.booking-get-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 0.5rem 0;
}

.booking-get-card p {
  color: var(--slate-800);
  margin: 0;
  line-height: 1.6;
}

.booking-get-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .booking-get-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.booking-need-list {
  display: grid;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--slate-800);
}

@media (min-width: 768px) {
  .booking-need-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.booking-need-item {
  display: flex;
  gap: 1rem;
}

.booking-need-item strong {
  color: var(--text-main);
}

/* FAQ: details/summary */
#faq .container {
  text-align: center;
}

.faq-intro {
  text-align: center;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
  color: var(--slate-800);
  line-height: 1.6;
}

.faq-list {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  background: #ffffff;
  overflow: hidden;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-question {
  display: block;
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  list-style: none;
  line-height: 1.4;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  display: none;
}

.faq-question::after {
  content: "+";
  float: right;
  font-size: 1.25rem;
  color: var(--cyan-500);
  font-weight: 400;
}

.faq-item[open] .faq-question::after {
  content: "−";
}

.faq-answer {
  margin: 0;
  padding: 1.25rem;
  color: var(--slate-800);
  line-height: 1.6;
  border-top: 1px solid #f1f5f9;
}

.faq-item[open] .faq-question {
  border-bottom: 1px solid #f1f5f9;
}
