:root {
  --ink: #13212a;
  --muted: #5f6d74;
  --paper: #fbfaf7;
  --line: #dce4df;
  --teal: #006a6a;
  --teal-dark: #034747;
  --gold: #d89a35;
  --coral: #d95745;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(19, 33, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(8, 22, 28, 0.76), rgba(8, 22, 28, 0.1));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 1px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.74);
}

.nav-links {
  display: flex;
  gap: clamp(14px, 2.4vw, 30px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--white);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
}

.language-switch button {
  min-width: 34px;
  height: 32px;
  border: 0;
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.76);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.language-switch button:hover,
.language-switch button.is-active {
  color: var(--ink);
  background: var(--white);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 4px;
  padding: 0 18px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

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

.header-cta {
  color: var(--ink);
  background: var(--white);
}

.button.primary {
  color: var(--white);
  background: var(--teal);
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.1);
}

.button.phone {
  color: var(--ink);
  background: var(--gold);
}

.mobile-menu,
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
}

.mobile-menu.is-open,
.booking-modal.is-open {
  display: block;
}

.mobile-menu {
  background: rgba(5, 19, 25, 0.46);
}

.mobile-menu-panel {
  width: min(360px, 88vw);
  height: 100%;
  margin-left: auto;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.mobile-menu-head button,
.modal-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 26px;
  cursor: pointer;
}

.mobile-menu nav {
  display: grid;
  gap: 18px;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px clamp(20px, 5vw, 80px) 92px;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 19, 25, 0.88), rgba(5, 19, 25, 0.52) 42%, rgba(5, 19, 25, 0.12) 78%),
    linear-gradient(180deg, rgba(5, 19, 25, 0.2), rgba(5, 19, 25, 0.72));
}

.hero-content {
  position: relative;
  width: min(780px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 21px);
}

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

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-band div {
  padding: 26px clamp(18px, 4vw, 58px);
  background: var(--white);
}

.stats-band strong,
.stats-band span {
  display: block;
}

.stats-band strong {
  font-size: clamp(24px, 3vw, 38px);
}

.stats-band span {
  margin-top: 4px;
  color: var(--muted);
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.feature-card {
  min-height: 260px;
  padding: 28px;
  background: var(--paper);
}

.feature-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  padding: 0 10px;
  border-radius: 4px;
  color: var(--white);
  background: var(--teal);
  font-weight: 900;
}

.feature-card h3 {
  margin: 28px 0 12px;
  font-size: 21px;
}

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

.section,
.split-section,
.contact-section {
  padding: clamp(70px, 9vw, 118px) clamp(20px, 5vw, 80px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(260px, 1fr);
  gap: clamp(24px, 5vw, 74px);
  align-items: start;
  margin-bottom: 38px;
}

.section-heading.compact {
  margin-bottom: 0;
}

.section-heading h2,
.company-copy h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.05;
}

.section-heading p:not(.eyebrow),
.company-copy p:not(.eyebrow),
.contact-section p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.journey-card {
  min-height: 300px;
  padding: 28px;
  background: var(--white);
}

.journey-card span {
  color: var(--coral);
  font-weight: 800;
}

.journey-card h3,
.service-item h3 {
  margin: 28px 0 12px;
  font-size: 22px;
}

.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.tour-meta small {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--teal-dark);
  background: #f5faf7;
  font-size: 12px;
  font-weight: 800;
}

.journey-card p,
.service-item p {
  margin: 0;
  color: var(--muted);
}

.text-button {
  margin-top: 22px;
  border: 0;
  padding: 0;
  color: var(--teal);
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

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

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

.process-list article {
  padding: 30px;
  border-left: 4px solid var(--gold);
  background: #f3f8f5;
}

.process-list span {
  color: var(--coral);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.process-list h3 {
  margin: 18px 0 10px;
}

.process-list p {
  margin: 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  background: #eef5f1;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-item {
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.service-item h3 {
  margin-top: 0;
}

.company-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 86px);
}

.company-details {
  padding: clamp(26px, 4vw, 42px);
  background: var(--white);
  box-shadow: var(--shadow);
}

dl {
  display: grid;
  gap: 1px;
  margin: 0;
  background: var(--line);
}

dl div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 18px 0;
  background: var(--white);
}

dt {
  color: var(--muted);
  font-weight: 700;
}

dd {
  margin: 0;
  font-weight: 700;
}

.faq-section {
  background: #eef5f1;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.faq-list details {
  border: 1px solid var(--line);
  background: var(--white);
}

.faq-list summary {
  padding: 20px 22px;
  font-weight: 800;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  color: var(--white);
  background: var(--ink);
}

.contact-section p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.contact-links a {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-links span,
.contact-links strong {
  display: block;
}

.contact-links span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-links strong {
  margin-top: 4px;
  color: var(--white);
  font-size: 14px;
  overflow-wrap: anywhere;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  padding: 14px 15px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

textarea {
  resize: vertical;
}

select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 19, 25, 0.62);
}

.modal-card {
  position: relative;
  width: min(640px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  margin: 16px auto;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.modal-intro {
  padding-right: 44px;
}

.modal-intro h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
}

.modal-intro p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
}

.modal-form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.modal-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.modal-form input {
  border-color: var(--line);
  color: var(--ink);
  background: var(--paper);
}

.modal-form input::placeholder {
  color: #89959a;
}

.form-error {
  margin: 0;
  color: var(--coral);
  font-weight: 800;
}

.success-state {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid #b9d7cb;
  background: #f0faf5;
}

.success-state strong {
  display: block;
  color: var(--teal-dark);
  font-size: 22px;
}

.success-state p {
  margin: 6px 0 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(20px, 5vw, 80px);
  color: var(--muted);
  background: var(--white);
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .site-header {
    gap: 14px;
  }

  .menu-toggle {
    display: inline-block;
  }

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

  .section-heading,
  .split-section,
  .company-section,
  .contact-section,
  .process-list {
    grid-template-columns: 1fr;
  }

  .section-heading.compact {
    margin-bottom: 8px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .header-cta {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .language-switch button {
    min-width: 32px;
    height: 30px;
  }

  .hero {
    min-height: 88vh;
    padding: 120px 18px 54px;
  }

  h1 {
    font-size: clamp(36px, 10.5vw, 46px);
    line-height: 1.04;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 19, 25, 0.9), rgba(5, 19, 25, 0.58)),
      linear-gradient(180deg, rgba(5, 19, 25, 0.22), rgba(5, 19, 25, 0.78));
  }

  .stats-band,
  .journey-grid,
  .service-list,
  .feature-grid,
  .contact-links {
    grid-template-columns: 1fr;
  }

  .journey-card {
    min-height: auto;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .site-footer {
    flex-direction: column;
  }
}
