:root {
  --ink: #10141f;
  --ink-soft: #303849;
  --muted: #6d7480;
  --paper: #f6f3ee;
  --panel: #ffffff;
  --line: rgba(16, 20, 31, 0.12);
  --accent: #d33f2f;
  --accent-dark: #a9251d;
  --steel: #2f6673;
  --blue: #172f4a;
  --shadow: 0 22px 55px rgba(16, 20, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-solid {
  color: var(--ink);
  background: rgba(246, 243, 238, 0.94);
  box-shadow: 0 10px 28px rgba(16, 20, 31, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 4px;
  color: currentColor;
  opacity: 0.76;
  font-size: 0.78rem;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 34px);
  font-weight: 750;
  font-size: 0.94rem;
}

.nav a {
  opacity: 0.84;
}

.nav a:hover {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle {
  min-width: 46px;
  height: 40px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: currentColor;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-small {
  min-height: 40px;
  padding-inline: 16px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.08);
}

.btn-muted {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.hero {
  position: relative;
  min-height: 91vh;
  display: grid;
  align-items: end;
  padding: 118px clamp(18px, 5vw, 78px) 54px;
  overflow: hidden;
  color: #fff;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 14, 23, 0.92) 0%, rgba(10, 14, 23, 0.72) 42%, rgba(10, 14, 23, 0.18) 100%),
    linear-gradient(0deg, rgba(10, 14, 23, 0.64), rgba(10, 14, 23, 0.05) 48%);
}

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

.hero-kicker,
.eyebrow {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 16px 0 18px;
  font-size: clamp(2.8rem, 6.8vw, 6.7rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.02rem, 1.7vw, 1.28rem);
  line-height: 1.65;
}

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

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(620px, 100%);
  margin-top: 36px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.trust-strip span {
  display: grid;
  gap: 4px;
  padding: 16px;
  background: rgba(16, 20, 31, 0.42);
}

.trust-strip strong {
  font-size: 1.5rem;
}

.trust-strip small {
  color: rgba(255, 255, 255, 0.72);
}

.quick-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1120px, calc(100% - 36px));
  margin: -34px auto 0;
  background: #fff;
  box-shadow: var(--shadow);
}

.quick-panel a {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 22px clamp(18px, 2.4vw, 30px);
  border-right: 1px solid var(--line);
}

.quick-panel a:last-child {
  border-right: 0;
}

.quick-panel span,
.quick-panel strong {
  overflow-wrap: anywhere;
}

.quick-panel span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-panel strong {
  font-size: clamp(1rem, 1.8vw, 1.35rem);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(74px, 9vw, 118px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 104px;
}

.section h2 {
  margin: 10px 0 16px;
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.section p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  gap: 12px;
}

.service-card button {
  width: 100%;
  min-height: 82px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 17px 18px;
  color: var(--ink);
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.service-card button:hover,
.service-card.active button {
  border-color: rgba(211, 63, 47, 0.42);
  background: #fff8f5;
  transform: translateX(2px);
}

.service-card span,
.service-card small {
  display: block;
}

.service-card span {
  font-size: 1.12rem;
  font-weight: 900;
}

.service-card small {
  margin-top: 6px;
  color: var(--muted);
}

.service-detail {
  grid-column: 2;
  padding: 28px;
  border-left: 6px solid var(--accent);
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow);
}

.service-detail span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-detail h3 {
  margin: 10px 0 8px;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.service-detail p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
}

.text-link {
  color: #fff;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.photo-band {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.95fr;
  gap: 10px;
  width: min(1260px, calc(100% - 36px));
  margin: 0 auto;
}

.photo-band img {
  width: 100%;
  height: clamp(210px, 27vw, 360px);
  object-fit: cover;
}

.photo-band img:first-child {
  height: clamp(260px, 33vw, 440px);
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

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

.proof-grid article {
  display: grid;
  gap: 12px;
  min-height: 170px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.proof-grid strong {
  color: var(--steel);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.95;
}

.proof-grid span {
  color: var(--ink-soft);
  line-height: 1.45;
}

.planner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.05fr);
  gap: clamp(26px, 5vw, 74px);
  align-items: center;
  padding-top: 0;
}

.planner-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 34px);
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.planner-form label {
  display: grid;
  gap: 8px;
}

.planner-form label span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.planner-form input,
.planner-form select,
.planner-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fbfbfa;
}

.planner-form textarea {
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 12px;
  align-items: stretch;
}

.visit-card {
  padding: clamp(24px, 4vw, 44px);
  color: #fff;
  background: var(--ink);
}

.visit-card p {
  color: rgba(255, 255, 255, 0.76);
}

.visit-card dl {
  display: grid;
  gap: 16px;
  margin: 26px 0;
}

.visit-card div {
  display: grid;
  gap: 5px;
}

.visit-card dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.visit-card dd {
  margin: 0;
  font-size: 1.05rem;
}

.map-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--blue);
}

.map-panel img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.04);
}

.map-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 20, 31, 0.72), rgba(16, 20, 31, 0.04) 58%);
}

.map-overlay {
  position: absolute;
  z-index: 1;
  left: clamp(18px, 3vw, 34px);
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  max-width: 430px;
  padding: 24px;
  color: #fff;
  background: rgba(16, 20, 31, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.map-overlay span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.map-overlay strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.8rem, 3.4vw, 3.2rem);
  line-height: 1;
}

.map-overlay p {
  margin: 12px 0 18px;
  color: rgba(255, 255, 255, 0.78);
}

.map-overlay a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--accent);
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 58px);
  padding-top: 0;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-tile {
  display: grid;
  gap: 8px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
}

.contact-tile span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-tile strong {
  overflow-wrap: anywhere;
  font-size: clamp(1.22rem, 2.4vw, 1.9rem);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 28px clamp(18px, 5vw, 72px) 92px;
  color: rgba(255, 255, 255, 0.74);
  background: var(--ink);
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

.mobile-bar {
  position: fixed;
  z-index: 60;
  inset: auto 10px 10px;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(16, 20, 31, 0.34);
}

.mobile-bar a {
  display: grid;
  min-height: 52px;
  place-items: center;
  color: #fff;
  background: var(--accent);
  font-weight: 900;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.mobile-bar a:last-child {
  border-right: 0;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 68px;
    gap: 12px;
    color: var(--ink);
    background: rgba(246, 243, 238, 0.95);
    box-shadow: 0 10px 28px rgba(16, 20, 31, 0.12);
  }

  .brand small,
  .nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-top: 108px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(10, 14, 23, 0.86), rgba(10, 14, 23, 0.42)),
      linear-gradient(90deg, rgba(10, 14, 23, 0.84), rgba(10, 14, 23, 0.24));
  }

  .quick-panel,
  .split,
  .proof,
  .planner,
  .visit,
  .contact {
    grid-template-columns: 1fr;
  }

  .section-copy {
    position: static;
  }

  .service-detail {
    grid-column: auto;
  }

  .photo-band {
    grid-template-columns: 1fr;
  }

  .photo-band img,
  .photo-band img:first-child {
    height: 260px;
  }

  .map-panel,
  .map-panel img {
    min-height: 360px;
  }
}

@media (max-width: 680px) {
  .header-actions .btn {
    display: none;
  }

  .hero {
    min-height: 86vh;
    padding-inline: 18px;
    padding-bottom: 38px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 13vw, 4.35rem);
  }

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

  .trust-strip,
  .quick-panel,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .quick-panel a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-panel a:last-child {
    border-bottom: 0;
  }

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

  .section h2 {
    font-size: clamp(1.95rem, 9vw, 3rem);
  }

  .form-actions .btn {
    width: 100%;
  }

  .mobile-bar {
    display: grid;
  }
}
