:root {
  --sand: #f1ebe0;
  --ocean: #172b69;
  --midnight: #0a1237;
  --accent: #f45d01;
  --accent-soft: rgba(244, 93, 1, 0.12);
  --text-body: #1a1a1a;
  --text-muted: #3d425a;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --shadow-soft: 0 24px 48px rgba(10, 18, 55, 0.14);
  --max-width: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  color: var(--text-body);
  background: var(--sand);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 18, 55, 0.08) 0%, rgba(10, 18, 55, 0) 45%),
    linear-gradient(225deg, rgba(23, 43, 105, 0.2) 0%, rgba(241, 235, 224, 0.8) 60%),
    repeating-linear-gradient(45deg, rgba(244, 93, 1, 0.08) 0 14px, transparent 14px 28px);
  z-index: -2;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background-color: #d9d9d9;
}

.site-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header.site-header {
  background: color-mix(in srgb, var(--midnight) 88%, black 12%);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 12px 24px rgba(10, 18, 55, 0.3);
}

.top-bar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  width: 44px;
  height: 44px;
}

.brand-title {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.primary-nav {
  display: flex;
  gap: 1.5rem;
}

.primary-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.primary-nav a:focus-visible,
.primary-nav a:hover {
  color: var(--accent);
}

.primary-nav a:focus-visible::after,
.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.banner {
  position: relative;
  padding: 4rem 1.5rem 3rem;
  background: radial-gradient(circle at top left, rgba(244, 93, 1, 0.35), transparent 45%),
    linear-gradient(120deg, rgba(10, 18, 55, 0.9) 0%, rgba(23, 43, 105, 0.8) 70%, rgba(23, 43, 105, 0.35) 100%);
  color: #fff;
  overflow: hidden;
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../image/picture11.jpg") center/cover no-repeat;
  opacity: 0.2;
  mix-blend-mode: lighten;
  z-index: 0;
}

.banner-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.banner-copy h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 1rem;
}

.tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--accent);
}

.tagline::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--accent);
}

.banner-copy p {
  max-width: 520px;
  margin-bottom: 1.5rem;
  color: #f7f4ee;
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 30px rgba(244, 93, 1, 0.35);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.hero-media {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(140deg, rgba(241, 235, 224, 0.9), rgba(10, 18, 55, 0.6)),
    linear-gradient(40deg, rgba(244, 93, 1, 0.15), transparent 70%);
  box-shadow: var(--shadow-soft);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
  border-radius: calc(var(--radius-lg) - 16px);
}

.hero-media img {
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.section {
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
}

.section-light {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(22px);
}

.section-dark {
  background: color-mix(in srgb, var(--midnight) 90%, black 10%);
  color: #f1ebe0;
}

.section .inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section h2 {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin: 0 0 2rem;
  position: relative;
}

.section h2::after {
  content: "";
  position: absolute;
  bottom: -0.75rem;
  left: 0;
  width: 72px;
  height: 3px;
  background: var(--accent);
}

.grid {
  display: grid;
  gap: 1.75rem;
}

.grid.g2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid.g3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 38px rgba(10, 18, 55, 0.12);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: -20% -35% auto auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(244, 93, 1, 0.3), transparent 70%);
  transform: rotate(35deg);
  z-index: 0;
}

.card-content {
  position: relative;
  z-index: 1;
}

.icon-linear {
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
}

.card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card p {
  margin: 0;
  color: var(--text-muted);
}

.card ul {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.card ul li + li {
  margin-top: 0.35rem;
}

.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.testimonial {
  background: rgba(10, 18, 55, 0.8);
  color: #f1ebe0;
}

.testimonial::before {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
}

.testimonial p {
  color: #f1ebe0;
  font-style: italic;
}

.badge-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.badge {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(10, 18, 55, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline {
  display: grid;
  gap: 1.5rem;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 16px;
  width: 2px;
  background: var(--accent);
}

.timeline-item {
  padding-left: 3rem;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--sand);
}

.table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(10, 18, 55, 0.2);
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.table th,
.table td {
  padding: 1rem 1.25rem;
  text-align: left;
}

.table th {
  background: rgba(10, 18, 55, 0.9);
  color: #f1ebe0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.table tr:nth-child(even) td {
  background: rgba(241, 235, 224, 0.7);
}

.cta-panel {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: center;
  background: linear-gradient(135deg, rgba(10, 18, 55, 0.9), rgba(23, 43, 105, 0.8));
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  box-shadow: var(--shadow-soft);
  color: #fff;
}

.cta-panel p {
  margin: 0;
  color: #f7f4ee;
}

.site-footer {
  background: rgba(10, 18, 55, 0.95);
  color: #f1ebe0;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 1.5rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-bottom {
  border-top: 1px solid rgba(241, 235, 224, 0.2);
  padding: 1rem 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(241, 235, 224, 0.7);
}

.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.contact-card {
  background: rgba(255, 255, 255, 0.92);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.contact-card h3 {
  margin-top: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

form {
  display: grid;
  gap: 1rem;
}

label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

label input[type="checkbox"] {
  margin-right: 0.5rem;
  transform: translateY(1px);
}

input,
textarea,
select {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(10, 18, 55, 0.2);
  border-radius: var(--radius-sm);
  font: inherit;
  background: rgba(255, 255, 255, 0.95);
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.disclaimer {
  font-size: 0.75rem;
  color: rgba(29, 34, 53, 0.7);
}

.map-embed {
  border: none;
  width: 100%;
  height: 340px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.success-card {
  max-width: 640px;
  margin: 5rem auto;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.success-card h1 {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  width: min(540px, calc(100% - 2rem));
  background: rgba(10, 18, 55, 0.95);
  color: #f1ebe0;
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 60px rgba(10, 18, 55, 0.4);
  padding: 1.5rem;
  display: none;
  z-index: 100;
}

.cookie-banner[data-visible="true"] {
  display: block;
}

.cookie-banner__inner {
  display: grid;
  gap: 1rem;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(241, 235, 224, 0.9);
}

.cookie-banner a {
  color: var(--accent);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.cookie-banner__actions .btn {
  padding: 0.65rem 1.5rem;
}

.cookie-banner__actions .btn-secondary {
  border-color: rgba(241, 235, 224, 0.6);
  color: rgba(241, 235, 224, 0.9);
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.legal-list li {
  font-size: 0.8rem;
  line-height: 1.5;
}

.policy-list {
  display: grid;
  gap: 1.75rem;
  margin: 0 auto;
  padding: 0;
  max-width: 920px;
  justify-items: center;
}

.policy-item {
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 18px 30px rgba(10, 18, 55, 0.1);
  border: 1px solid rgba(10, 18, 55, 0.1);
  text-align: center;
}

.policy-item h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
  color: var(--midnight);
}

.policy-item p {
  margin-top: 0;
  color: var(--text-muted);
}

.policy-item ul {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
  text-align: left;
}

.policy-item ul li + li {
  margin-top: 0.4rem;
}

.scroll-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  background: var(--accent);
  color: var(--midnight);
  border: none;
  border-radius: 999px;
  padding: 0.6rem;
  box-shadow: 0 12px 30px rgba(244, 93, 1, 0.4);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}

.scroll-top svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.scroll-top.visible {
  display: inline-flex;
}

@media (max-width: 960px) {
  .primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 82vw);
    background: rgba(10, 18, 55, 0.96);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    gap: 1.75rem;
    box-shadow: -12px 0 40px rgba(10, 18, 55, 0.35);
    z-index: 45;
  }

  .primary-nav.open {
    transform: translateX(0%);
  }

  .nav-toggle {
    display: inline-flex;
  }

  body.nav-open {
    overflow: hidden;
    height: 100vh;
  }

  body.nav-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(10, 18, 55, 0.55);
    z-index: 40;
  }

  .top-bar {
    padding: 0.65rem 1.25rem;
  }

  .banner {
    padding-top: 6rem;
  }
}

@media (max-width: 600px) {
  .banner {
    padding: 3.3rem 1.05rem 2.4rem;
  }

  .section {
    padding: 2.4rem 1.05rem;
  }

  .cta-panel {
    padding: 1.9rem;
  }

  .timeline::before {
    left: 8px;
  }

  .timeline-item {
    padding-left: 2.4rem;
  }

  .timeline-item::before {
    left: 2px;
  }

  .contact-card {
    padding: 1.6rem;
  }

  .success-card {
    margin: 3rem 1rem;
    padding: 1.9rem;
  }

  .cookie-banner {
    width: calc(100% - 1.5rem);
    padding: 1.35rem;
  }
}

@media (max-width: 420px) {
  .cta-row {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .primary-nav {
    width: 100vw;
    max-width: 100%;
  }

  .banner {
    padding: 3.1rem 0.85rem 2.25rem;
  }

  .section {
    padding: 2.3rem 0.85rem;
  }

  .hero-media {
    padding: 1rem;
  }

  .contact-card {
    padding: 1.45rem;
  }

  .cookie-banner {
    left: 0.75rem;
    right: 0.75rem;
    transform: none;
    width: auto;
    bottom: 1rem;
  }

  .cookie-banner__actions {
    justify-content: stretch;
  }

  .cookie-banner__actions .btn {
    flex: 1 0 100%;
  }
}

