:root {
  color-scheme: light;
  --ink: #103844;
  --muted: #66777c;
  --line: #d7e4e6;
  --paper: #f6fbfb;
  --white: #ffffff;
  --teal: #028fba;
  --deep: #064f65;
  --coral: #e76f51;
  --gold: #d5a84c;
  --shadow: 0 24px 70px rgba(16, 56, 68, .14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
}

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

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

button, input, textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 20;
  background: var(--deep);
  color: var(--white);
  padding: .75rem 1rem;
}

.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 clamp(1rem, 4vw, 4.5rem);
  background: rgba(246, 251, 251, .92);
  border-bottom: 1px solid rgba(215, 228, 230, .8);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand span { white-space: nowrap; }

.nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  color: var(--deep);
  font-weight: 700;
}

.nav a {
  padding: .55rem .1rem;
  border-bottom: 2px solid transparent;
}

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

.lang-switch, .nav-toggle {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--deep);
  cursor: pointer;
}

.lang-switch {
  min-width: 46px;
  min-height: 38px;
  border-radius: 999px;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 19px;
  height: 2px;
  background: var(--deep);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  overflow: hidden;
  background: #0c3948;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,79,101,.92) 0%, rgba(6,79,101,.62) 38%, rgba(6,79,101,.1) 72%), linear-gradient(0deg, rgba(6,79,101,.75), rgba(6,79,101,0) 38%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 2rem));
  margin: 0 0 clamp(2.5rem, 8vw, 6.5rem) clamp(1rem, 6vw, 6rem);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 .75rem;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero .eyebrow { color: #9de8f4; }

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 1rem;
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: .95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: .6rem;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 650px;
  color: rgba(255,255,255,.88);
  font-size: clamp(1.06rem, 2vw, 1.35rem);
}

.hero-actions, .social {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: .85rem 1.2rem;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
}

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

.secondary {
  background: rgba(255,255,255,.14);
  color: var(--white);
  border-color: rgba(255,255,255,.34);
}

.hero-panel {
  position: absolute;
  right: clamp(1rem, 4vw, 4rem);
  bottom: clamp(1rem, 4vw, 3rem);
  width: min(370px, calc(100% - 2rem));
  display: grid;
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255,255,255,.2);
  box-shadow: var(--shadow);
}

.hero-panel div {
  padding: 1rem;
  background: rgba(255,255,255,.9);
}

.hero-panel span, .trust-strip span, .quick-actions em, .review-card span {
  display: block;
  color: var(--muted);
  font-style: normal;
  font-size: .92rem;
}

.hero-panel strong { display: block; }

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

.trust-strip div {
  padding: clamp(1rem, 3vw, 2rem);
  background: var(--white);
}

.trust-strip strong {
  display: block;
  color: var(--deep);
  font-size: 1.8rem;
  line-height: 1;
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}

.intro, .contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.section-copy {
  max-width: 790px;
}

.section-copy h2 {
  color: var(--deep);
}

.quick-actions {
  display: grid;
  gap: .8rem;
}

.quick-actions a {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: .25rem 1rem;
  padding: 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 35px rgba(16, 56, 68, .07);
}

.quick-actions span {
  grid-row: span 2;
  color: var(--coral);
  font-weight: 900;
}

.service-layout {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.service-list {
  display: grid;
  gap: .6rem;
}

.service-tab {
  width: 100%;
  min-height: 58px;
  padding: .9rem 1rem;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--deep);
  font-weight: 900;
  cursor: pointer;
}

.service-tab.active {
  background: var(--deep);
  color: var(--white);
  border-color: var(--deep);
}

.service-card {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
  min-height: 430px;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: 6px;
}

.service-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(.5rem, 3vw, 2rem);
}

.service-card ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.team {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100vw - 1180px) / 2));
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.team-member {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.team-member img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.team-member h3, .team-member p {
  padding-inline: 1rem;
}

.team-member h3 {
  margin-top: 1rem;
}

.team-member p {
  color: var(--muted);
  padding-bottom: 1.2rem;
}

.team-note {
  max-width: 900px;
  margin: 1.5rem 0 0;
  color: var(--muted);
}

.proof {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 2rem;
  align-items: center;
}

.comparison {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1620 / 785;
  border-radius: 8px;
  background: var(--deep);
  box-shadow: var(--shadow);
}

.comparison img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-after-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--compare-pos, 52%)) 0 0);
}

.compare-after-wrap img {
  width: 100%;
  max-width: 100%;
}

.compare-after-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-pos, 52%);
  width: 3px;
  transform: translateX(-50%);
  background: var(--white);
}

.comparison input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.disclaimer {
  grid-column: 2;
  color: var(--muted);
  font-size: .92rem;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr .85fr;
  gap: 1rem;
  align-items: stretch;
}

.gallery img, .review-card {
  min-height: 320px;
  border-radius: 8px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.2rem, 4vw, 2rem);
  background: var(--deep);
  color: var(--white);
}

.review-card blockquote {
  margin: 0 0 1rem;
  font-size: 1.45rem;
  line-height: 1.25;
}

.review-card span { color: rgba(255,255,255,.72); }

.contact {
  align-items: stretch;
}

.contact-card, .inquiry {
  padding: clamp(1.25rem, 4vw, 2.5rem);
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 45px rgba(16, 56, 68, .08);
}

.contact-lines {
  display: grid;
  gap: .7rem;
  margin: 1.5rem 0;
  font-size: 1.1rem;
  font-weight: 900;
}

.hours { color: var(--muted); }

.social a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .55rem .8rem;
  color: var(--deep);
  font-weight: 800;
}

.inquiry {
  display: grid;
  gap: 1rem;
}

.inquiry label {
  display: grid;
  gap: .35rem;
  color: var(--deep);
  font-weight: 900;
}

.inquiry input, .inquiry textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .9rem 1rem;
  background: #fbfefe;
  color: var(--ink);
}

.inquiry textarea { resize: vertical; }

.form-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .92rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 4vw, 4.5rem) 6rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: .8rem;
  z-index: 9;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  width: min(430px, calc(100% - 1rem));
  transform: translateX(-50%);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.sticky-cta a {
  min-height: 48px;
  display: grid;
  place-items: center;
  color: var(--deep);
  font-weight: 900;
}

.sticky-cta a + a {
  border-left: 1px solid var(--line);
}

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }

  .nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 84px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: .25rem;
    padding: .75rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav.open { display: flex; }

  .nav a, .lang-switch {
    width: 100%;
    min-height: 44px;
    text-align: left;
  }

  .hero {
    min-height: 760px;
    align-items: center;
  }

  .hero-media::after {
    background: linear-gradient(0deg, rgba(6,79,101,.95) 0%, rgba(6,79,101,.76) 48%, rgba(6,79,101,.18) 100%);
  }

  .hero-media img { object-position: 58% top; }

  .hero-content {
    margin: 17rem 1rem 12rem;
    width: calc(100% - 2rem);
  }

  .hero-panel {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    width: auto;
  }

  .trust-strip, .intro, .service-layout, .service-card, .team-grid, .proof, .gallery, .contact {
    grid-template-columns: 1fr;
  }

  .service-card { min-height: 0; }

  .service-card img { min-height: 260px; }

  .disclaimer { grid-column: auto; }

  .gallery img, .review-card { min-height: 260px; }

  .footer {
    flex-direction: column;
  }

  .sticky-cta { display: grid; }
}

@media (max-width: 560px) {
  .site-header {
    height: 68px;
    padding-inline: .85rem;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand span {
    max-width: 180px;
    white-space: normal;
    line-height: 1.05;
  }

  .nav { top: 76px; }

  .hero {
    min-height: 790px;
  }

  .hero-content {
    margin-top: 14rem;
  }

  h1 { font-size: 3.2rem; }

  h2 { font-size: 2.15rem; }

  .hero-actions .button {
    width: 100%;
  }

  .trust-strip div {
    padding: 1rem;
  }

  .section {
    width: min(100% - 1rem, 1180px);
  }

  .team {
    padding-inline: .5rem;
  }

  .quick-actions a {
    grid-template-columns: 42px 1fr;
  }
}
