:root {
  --ink: #13211f;
  --muted: #63706d;
  --paper: #f5f8f6;
  --white: #ffffff;
  --line: #d8e3df;
  --teal: #0f6b67;
  --teal-dark: #083f41;
  --blue: #176a8a;
  --green: #67a857;
  --coral: #bd6f45;
  --mist: #e6f2ef;
  --shadow: 0 18px 44px rgba(19, 33, 31, 0.13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(216, 227, 223, 0.88);
  background: rgba(245, 248, 246, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal-dark), var(--green));
  color: var(--white);
  font-weight: 850;
}

.brand strong,
.brand small { display: block; }
.brand small { color: var(--muted); }

nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

nav a { text-decoration: none; }
nav a:hover { color: var(--teal); }

.top-actions,
.actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lang {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.lang button {
  min-width: 42px;
  border: 0;
  border-radius: 6px;
  padding: 7px 10px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.lang button.active {
  color: var(--white);
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  padding: 11px 16px;
  font-weight: 800;
  text-decoration: none;
}

.button.compact { min-height: 38px; padding: 8px 13px; }
.button.primary { color: var(--white); border-color: var(--teal-dark); background: var(--teal-dark); }
.button.secondary { color: var(--white); border-color: var(--blue); background: var(--blue); }
.button.quiet { border-color: var(--line); background: var(--white); }

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(44px, 8vw, 96px) clamp(18px, 5vw, 76px) 34px;
}

.hero-media { position: relative; }

.hero-media img {
  width: 100%;
  height: min(68vh, 680px);
  min-height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.status {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  color: var(--white);
  background: rgba(8, 63, 65, 0.84);
  backdrop-filter: blur(12px);
}

.status span,
.status strong,
.status small { display: block; }
.status span { color: #c9f5d0; font-weight: 850; }
.status strong { margin: 6px 0; font-size: 1.45rem; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1, h2, h3, p { overflow-wrap: anywhere; }
h1 { margin: 0; font-size: 5.15rem; line-height: 0.98; letter-spacing: 0; }
h2 { margin: 0; font-size: 3.7rem; line-height: 1; letter-spacing: 0; }
h3 { margin: 0 0 8px; font-size: 1.13rem; }

.lead {
  max-width: 690px;
  margin: 22px 0 26px;
  color: var(--muted);
  font-size: 1.18rem;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 0;
}

.facts div,
.proof-grid article,
.service-panel,
.steps article,
.travel-grid article,
.planner-box,
.gallery figure,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.facts div { padding: 16px; }
.facts dt { font-size: 1.95rem; font-weight: 900; }
.facts dd { margin: 4px 0 0; color: var(--muted); font-size: 0.91rem; }

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 76px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.contact-strip a {
  display: grid;
  gap: 4px;
  padding: 20px;
  background: var(--white);
  text-decoration: none;
}

.contact-strip span,
.muted,
.proof-grid p,
.service-panel p,
.steps p,
.travel p,
.faq p,
footer p { color: var(--muted); }

.section { padding: clamp(58px, 9vw, 112px) clamp(18px, 5vw, 76px); }

.section-title {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 1.22fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 28px;
}

.section-title.narrow {
  display: block;
  max-width: 860px;
}

.proof-grid,
.steps,
.travel-grid,
.gallery-grid {
  display: grid;
  gap: 16px;
}

.proof-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.proof-grid article,
.steps article,
.travel-grid article { padding: 24px; }
.proof-grid span,
.steps span { display: inline-block; margin-bottom: 24px; color: var(--coral); font-weight: 900; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: var(--mist);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 14px;
}

.tabs button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 13px;
  color: var(--muted);
  background: var(--white);
  cursor: pointer;
}

.tabs button.active { border-color: var(--teal-dark); color: var(--white); background: var(--teal-dark); }
.service-panel { min-height: 188px; padding: 24px; }
.service-panel ul { display: grid; gap: 8px; margin: 14px 0 0; padding-left: 20px; color: var(--muted); }

.visual-pair {
  position: relative;
  min-height: 500px;
}

.main-img {
  width: min(78%, 470px);
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.side-img {
  position: absolute;
  right: 0;
  bottom: 44px;
  width: min(64%, 420px);
  height: 250px;
  object-fit: cover;
  border: 10px solid var(--mist);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.first { background: var(--ink); color: var(--white); }
.first .eyebrow { color: #a7e6d6; }
.first p,
.first .steps p { color: rgba(255, 255, 255, 0.74); }
.steps { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 30px; }
.steps article { border-color: rgba(255, 255, 255, 0.14); background: rgba(255, 255, 255, 0.06); }

.travel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 26px;
  align-items: center;
}

.travel-grid { grid-template-columns: 1fr; margin-top: 22px; }
.travel img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow); }

.planner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  background: #fff8f3;
}

.planner-box { display: grid; gap: 16px; padding: 22px; }
.planner-box label { display: grid; gap: 7px; color: var(--muted); font-weight: 800; }
.planner-box input,
.planner-box select,
.planner-box textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfdfc;
}

.gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gallery figure { margin: 0; overflow: hidden; }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery figcaption { min-height: 58px; padding: 12px 14px; color: var(--muted); font-size: 0.92rem; }

.faq { max-width: 980px; margin: 0 auto; }
details { margin-top: 12px; padding: 18px 20px; }
summary { cursor: pointer; font-weight: 900; }
summary::marker { color: var(--teal); }

.final {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 20px clamp(18px, 5vw, 76px) 58px;
  padding: clamp(26px, 5vw, 46px);
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-dark), #173f5b);
}

.final .eyebrow { color: #bff1e6; }
.final .button.quiet { color: var(--ink); }
footer { padding: 28px clamp(18px, 5vw, 76px) 92px; border-top: 1px solid var(--line); }
footer p { max-width: 980px; margin: 0; }

.mobile-cta { display: none; }

@media (max-width: 1120px) {
  .topbar { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero,
  .split,
  .travel,
  .planner { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  h1 { font-size: 4rem; }
  h2 { font-size: 3rem; }
  .visual-pair { min-height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .main-img,
  .side-img { position: static; width: 100%; height: 340px; border: 0; }
  .steps,
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .topbar { gap: 10px; padding: 12px 14px; }
  .brand { min-width: 0; }
  .brand strong { font-size: 0.95rem; }
  .brand small,
  .top-actions .button { display: none; }
  .hero { padding: 34px 14px 20px; }
  .hero-media { order: -1; }
  .hero-media img { min-height: 275px; height: 305px; }
  .status { left: 12px; right: 12px; bottom: 12px; padding: 13px; }
  .status strong { font-size: 1.08rem; }
  h1 { font-size: 2.45rem; }
  h2 { font-size: 2.05rem; }
  .lead { font-size: 1rem; }
  .actions .button { width: 100%; }
  .facts,
  .contact-strip,
  .proof-grid,
  .steps,
  .travel-grid,
  .gallery-grid { grid-template-columns: 1fr; }
  .contact-strip { margin: 0 14px; }
  .section { padding: 48px 14px; }
  .section-title { display: block; }
  .visual-pair { grid-template-columns: 1fr; }
  .main-img,
  .side-img { height: 300px; }
  .final { display: block; margin: 12px 14px 78px; }
  .final .actions { margin-top: 18px; }
  footer { padding-bottom: 92px; }
  .mobile-cta {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    background: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(74px);
    transition: opacity 160ms ease, transform 160ms ease;
  }
  body.show-mobile-cta .mobile-cta { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-cta a { min-height: 48px; display: grid; place-items: center; text-decoration: none; font-weight: 900; }
  .mobile-cta a + a { border-left: 1px solid var(--line); }
}

@media (max-width: 390px) {
  .brand-mark { width: 36px; height: 36px; }
  .lang button { min-width: 38px; padding-left: 8px; padding-right: 8px; }
  h1 { font-size: 2.22rem; }
}
