:root {
  --ink: #151719;
  --muted: #646a70;
  --paper: #f7f6f2;
  --surface: #ffffff;
  --line: #dedbd2;
  --accent: #f5b81d;
  --accent-strong: #d99500;
  --copper: #b7602d;
  --green: #1f7a61;
  --shadow: 0 24px 80px rgba(21, 23, 25, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(21, 23, 25, 0.96);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

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

.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(136px, 16vw, 194px);
  min-height: 46px;
  padding: 8px 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.94);
}

.brand-logo {
  width: 100%;
  max-height: 34px;
  object-fit: contain;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.92rem;
  font-weight: 600;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.82);
}

.main-nav a:hover {
  color: #fff;
}

.header-call {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #151719;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(21, 23, 25, 0.96) 0%, rgba(21, 23, 25, 0.76) 40%, rgba(21, 23, 25, 0.18) 78%),
    linear-gradient(0deg, rgba(21, 23, 25, 0.86) 0%, rgba(21, 23, 25, 0) 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 112px 0 24px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 800;
}

.button-primary {
  background: var(--accent);
  color: #171717;
}

.button-primary:hover {
  background: #ffd15a;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 900px;
  margin: 38px 0 0;
  background: rgba(255, 255, 255, 0.16);
}

.hero-facts div {
  min-width: 0;
  padding: 18px;
  background: rgba(21, 23, 25, 0.62);
}

.hero-facts dt {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
}

.section-pad {
  padding: clamp(72px, 10vw, 124px) clamp(18px, 4vw, 56px);
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.trust-copy h2,
.contact-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 90px);
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: end;
}

.intro > p,
.trust-copy p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.services {
  background: var(--surface);
}

.services > .section-heading,
.process > .section-heading {
  width: min(1180px, 100%);
  margin: 0 auto 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.service-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  background: #fbfaf7;
}

.service-card .icon {
  color: var(--accent-strong);
  font-weight: 800;
}

.service-card h3,
.timeline h3 {
  margin: 42px 0 12px;
  font-size: 1.28rem;
}

.service-card p,
.timeline p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.trust {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(32px, 7vw, 110px);
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: start;
}

.trust-copy p {
  margin-top: 24px;
}

.trust-list {
  display: grid;
  gap: 12px;
}

.trust-list div {
  padding: 24px;
  background: var(--ink);
  color: #fff;
}

.trust-list strong,
.trust-list span {
  display: block;
}

.trust-list strong {
  color: var(--accent);
  font-size: 1.08rem;
}

.trust-list span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.process {
  background: #ebe8df;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, 100%);
  margin: 0 auto;
  background: var(--line);
}

.timeline div {
  min-height: 230px;
  padding: 24px;
  background: var(--paper);
}

.timeline span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--green);
  color: #fff;
  font-weight: 800;
}

.contact {
  background: var(--ink);
  color: #fff;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(30px, 7vw, 100px);
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 6vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #202326;
  box-shadow: var(--shadow);
}

.map-panel {
  width: min(1180px, 100%);
  min-height: 430px;
  margin: 18px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #202326;
  overflow: hidden;
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
}

.map-placeholder {
  display: grid;
  align-content: center;
  min-height: 430px;
  padding: clamp(26px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(245, 184, 29, 0.12), rgba(31, 122, 97, 0.2)),
    #202326;
}

.map-placeholder h3 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.08;
}

.map-placeholder p {
  max-width: 620px;
  margin: 18px 0 24px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
}

.contact-card p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.74);
}

address {
  display: grid;
  align-content: center;
  gap: 16px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.8);
}

.contact-link {
  font-weight: 800;
  color: #fff;
}

.contact-link.large {
  color: var(--accent);
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  line-height: 1;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 28px;
  padding: 28px 18px;
  background: #111315;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.footer-logo {
  width: 122px;
  padding: 7px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.92);
}

.privacy-notice {
  position: fixed;
  left: clamp(14px, 3vw, 28px);
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 30;
  display: none;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 1060px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(21, 23, 25, 0.97);
  color: #fff;
  box-shadow: var(--shadow);
}

.privacy-notice.is-visible {
  display: grid;
}

.privacy-notice strong {
  display: block;
  color: var(--accent);
}

.privacy-notice p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.privacy-actions .button {
  min-height: 46px;
}

.policy-body {
  background: var(--surface);
}

.policy-page {
  padding-top: 78px;
}

.policy-hero {
  padding: clamp(78px, 11vw, 140px) clamp(18px, 4vw, 56px) clamp(42px, 8vw, 78px);
  background: var(--ink);
  color: #fff;
}

.policy-hero > * {
  width: min(980px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.policy-hero h1 {
  max-width: 980px;
}

.policy-hero p:not(.eyebrow) {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.12rem;
  line-height: 1.8;
}

.policy-content {
  display: grid;
  gap: 1px;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) 0;
}

.policy-content article {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.policy-content h2 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.15;
}

.policy-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.policy-content a {
  color: var(--accent-strong);
  font-weight: 700;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 16px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .main-nav,
  .header-call {
    display: none;
  }

  .main-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    justify-self: stretch;
    gap: 0;
    padding-top: 8px;
  }

  .main-nav.is-open a {
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero {
    min-height: 860px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(21, 23, 25, 0.95) 0%, rgba(21, 23, 25, 0.72) 68%, rgba(21, 23, 25, 0.36) 100%),
      linear-gradient(0deg, rgba(21, 23, 25, 0.9) 0%, rgba(21, 23, 25, 0) 52%);
  }

  .intro,
  .trust,
  .contact-card {
    grid-template-columns: 1fr;
  }

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

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

  .privacy-notice {
    grid-template-columns: 1fr;
  }

  .privacy-actions {
    justify-content: stretch;
  }

  .privacy-actions .button {
    flex: 1 1 180px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand small {
    display: none;
  }

  .brand-logo-wrap {
    width: 132px;
    min-height: 42px;
    padding: 7px 10px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-content {
    width: min(100% - 32px, 1180px);
    padding-bottom: 28px;
  }

  h1 {
    font-size: clamp(2.34rem, 13vw, 3.8rem);
  }

  .button {
    width: 100%;
  }

  .hero-facts,
  .service-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    margin-top: 36px;
  }

  .hero-facts {
    display: none;
  }

  .service-card,
  .timeline div {
    min-height: auto;
  }

  .contact-card {
    padding: 26px 20px;
  }

  .map-panel,
  .map-placeholder,
  .map-panel iframe {
    min-height: 340px;
    height: 340px;
  }

  .privacy-notice {
    padding: 14px;
  }

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