:root {
  --bg: #ffffff;
  --bg-soft: #f3fbfc;
  --ink: #12323a;
  --muted: #5d747b;
  --line: #d7ecef;
  --teal: #0f7c86;
  --teal-dark: #0a5560;
  --blue: #1677b8;
  --yellow: #f7c948;
  --shadow: 0 24px 70px rgba(15, 124, 134, 0.14);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.brand img {
  width: 138px;
  height: 64px;
  object-fit: contain;
  object-position: center;
}

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

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  justify-self: end;
  width: max-content;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover {
  color: var(--teal-dark);
}

.language-switch {
  display: flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-soft);
}

.language-switch button {
  border: 0;
  border-radius: 999px;
  padding: 7px 9px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.language-switch button.active {
  color: #fff;
  background: var(--teal-dark);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  place-items: center;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--teal-dark);
}

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

.hero {
  display: grid;
  gap: clamp(26px, 4vw, 42px);
  align-items: start;
  justify-items: center;
  min-height: calc(100vh - 84px);
  padding: clamp(44px, 6vw, 78px) 0 clamp(56px, 7vw, 92px);
}

.hero-logo {
  width: min(320px, 72vw);
  height: 168px;
  margin: 0 auto 22px;
  object-fit: contain;
  object-position: center;
}

.hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.65rem, 5.4vw, 5.4rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 0.98;
  text-align: center;
}

.hero-copy p {
  max-width: 690px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  text-align: center;
}

.hero-copy,
.hero-panel,
.hero-media,
.split-section > *,
.contact-section > * {
  min-width: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 48px;
  border-radius: var(--radius);
  padding: 12px 20px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.2;
}

.button.primary {
  color: #fff;
  background: var(--teal-dark);
  box-shadow: 0 14px 30px rgba(10, 85, 96, 0.18);
}

.button.secondary {
  color: var(--teal-dark);
  border-color: var(--line);
  background: #fff;
}

.hero-media {
  display: grid;
  gap: 18px;
  width: min(100%, 1040px);
}

.hero-media > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-soft);
}

.hero-panel ul {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-panel p {
  margin: 0 0 16px;
  font-size: 1.1rem;
  font-weight: 850;
  line-height: 1.24;
}

.hero-panel ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.hero-panel li::before {
  content: "";
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--yellow);
}

.split-section,
.services-section,
.contact-section {
  padding: clamp(72px, 8vw, 112px) 0;
}

.split-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(30px, 6vw, 80px);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.25;
}

.split-section p,
.contact-section p {
  color: var(--muted);
  font-size: 1.04rem;
}

.service-grid article,
.scope-card,
.travel-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.about-panel {
  padding: clamp(24px, 4vw, 34px);
  border-left: 4px solid var(--teal);
  background: var(--bg-soft);
  border-radius: 8px;
}

.about-list {
  display: grid;
  gap: 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.about-list li {
  display: grid;
  gap: 4px;
}

.about-list strong {
  color: var(--ink);
}

.about-list span,
.service-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.about-list span {
  margin: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.services-title {
  margin-bottom: 18px;
}

.services-note {
  max-width: 850px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 1.04rem;
}

.service-grid article {
  padding: 26px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-grid article:hover {
  transform: translateY(-3px);
  border-color: #a8dce2;
  box-shadow: 0 18px 42px rgba(15, 124, 134, 0.11);
}

.service-grid svg {
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  color: var(--teal);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 18px;
}

.service-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
}

.scope-card {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: clamp(22px, 4vw, 46px);
  align-items: start;
  margin-top: 18px;
  padding: 26px;
  background: var(--bg-soft);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.scope-grid h4 {
  margin: 0;
  color: var(--ink);
  font-size: 0.94rem;
}

.scope-grid p {
  margin: 14px 0 0;
  color: var(--muted);
}

.travel-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 18px;
  padding: 24px 26px;
  background:
    linear-gradient(180deg, rgba(247, 201, 72, 0.12), rgba(247, 201, 72, 0) 45%),
    #fff;
}

.travel-card svg {
  width: 32px;
  height: 32px;
  color: var(--teal);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.travel-card p {
  max-width: 850px;
  margin: 10px 0 0;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
}

.contact-details div {
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-soft);
}

.contact-details dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 900;
}

.contact-address {
  opacity: 0.78;
}

.contact-address dd {
  font-weight: 750;
}

.request-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.request-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-wide {
  grid-column: 1 / -1;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--bg-soft);
  font: inherit;
}

.request-form textarea {
  resize: vertical;
}

.request-form select {
  cursor: pointer;
}

.request-form .button {
  justify-self: start;
}

.request-form .button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status,
.form-fallback {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status:empty {
  display: none;
}

.form-status[data-state="success"] {
  color: var(--teal-dark);
  font-weight: 800;
}

.form-status[data-state="error"] {
  color: #9b2c2c;
  font-weight: 800;
}

.form-status[data-state="sending"] {
  color: var(--muted);
  font-weight: 800;
}

.form-fallback a {
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(247, 201, 72, 0.55);
  outline-offset: 3px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 48px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
  }

  .menu-toggle {
    display: inline-grid;
    order: 4;
  }

  .brand {
    order: 1;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    width: max-content;
    min-width: 190px;
    max-width: calc(100vw - 36px);
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav a {
    white-space: nowrap;
  }

  .site-nav.open {
    display: flex;
  }

  .language-switch {
    order: 2;
    justify-self: end;
  }

  .hero,
  .split-section,
  .scope-card,
  .scope-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-panel ul {
    grid-template-columns: 1fr;
  }

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

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

  .brand img {
    width: 124px;
    height: 54px;
  }

  .brand span {
    display: none;
  }

  .language-switch button {
    padding: 7px 8px;
    font-size: 0.72rem;
  }

  .section-shell {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    padding: 42px 0 62px;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 11.5vw, 3.5rem);
    overflow-wrap: normal;
  }

  .hero-logo {
    height: 148px;
    margin-bottom: 22px;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .travel-card {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .request-form {
    padding: 22px;
  }

  .request-form .button {
    width: 100%;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
