:root {
  --bg: #f6f4ef;
  --text: #181818;
  --muted: #626262;
  --dark: #101010;
  --line: #ddd8cc;
  --gold: #caa35a;
  --gold-dark: #9e7835;
  --white: #ffffff;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(18px, 4vw, 48px);
  background: rgba(16, 16, 16, 0.92);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 172px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.92rem;
}

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

.main-nav a:hover {
  color: var(--white);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.lang-btn {
  min-width: 42px;
  border: 0;
  border-radius: 999px;
  padding: 8px 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-weight: 700;
}

.lang-btn.active {
  background: var(--gold);
  color: var(--dark);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: transform 0.2s ease, top 0.2s ease;
}

.menu-toggle span:first-child {
  top: 14px;
}

.menu-toggle span:last-child {
  top: 23px;
}

.nav-open .menu-toggle span:first-child {
  top: 19px;
  transform: rotate(45deg);
}

.nav-open .menu-toggle span:last-child {
  top: 19px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.38) 44%, rgba(0, 0, 0, 0.12));
}

.hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0;
  color: var(--white);
}

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

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

h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 6vw, 5.8rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
}

.btn.primary {
  background: var(--gold);
  color: var(--dark);
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: var(--white);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(var(--max), calc(100% - 36px));
  margin: -42px auto 0;
  position: relative;
  z-index: 2;
  background: var(--line);
  border: 1px solid var(--line);
}

.trust-band div {
  min-height: 104px;
  padding: 26px;
  background: var(--white);
}

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

.trust-band strong {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.trust-band span {
  color: var(--muted);
}

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

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

.section-heading p:not(.eyebrow),
.split p,
.contact-section p {
  color: var(--muted);
  font-size: 1.05rem;
}

.compact {
  max-width: 680px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

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

.service-card span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--gold-dark);
  font-weight: 900;
}

.service-card p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 14px;
  height: 2px;
  background: var(--gold);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--white);
}

.gallery img:first-child {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.process {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline article {
  position: relative;
  padding: 28px 24px;
  background: var(--dark);
  color: var(--white);
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-weight: 900;
}

.timeline p {
  color: rgba(255, 255, 255, 0.74);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

details {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-weight: 850;
}

details p {
  margin: 16px 0 0;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 72px max(18px, calc((100vw - var(--max)) / 2));
  background: var(--dark);
  color: var(--white);
}

.contact-section h2 {
  max-width: 740px;
}

.contact-card {
  display: grid;
  gap: 10px;
  min-width: min(420px, 100%);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-style: normal;
}

.contact-card a {
  color: var(--gold);
  font-weight: 800;
}

.contact-card span {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 48px);
  background: #070707;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer nav {
  display: flex;
  gap: 18px;
}

.legal-page {
  background: var(--white);
}

.legal-main {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0;
}

.legal-main h1 {
  color: var(--text);
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.legal-main h2 {
  margin-top: 40px;
  font-size: 1.5rem;
}

.legal-main p,
.legal-main li {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.legal-note {
  padding: 18px;
  background: #fff7e5;
  border: 1px solid #ead3a3;
  color: #664b19;
}

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

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    grid-column: 1 / -1;
    display: grid;
    gap: 0;
    padding: 18px clamp(18px, 5vw, 28px) 22px;
    overflow: hidden;
    border-top: 1px solid rgba(202, 163, 90, 0.42);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    background: linear-gradient(180deg, rgba(16, 16, 16, 0.99), rgba(26, 24, 20, 0.99));
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.34);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-open .main-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    background: transparent;
    color: var(--white);
    font-size: 1.12rem;
    font-weight: 800;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    color: var(--gold);
  }

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

  .legal-actions {
    padding: 3px;
  }

  .hero {
    min-height: 660px;
  }

  .trust-band,
  .service-grid,
  .timeline,
  .faq-grid,
  .split,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .trust-band {
    margin-top: 0;
    width: 100%;
    border-left: 0;
    border-right: 0;
  }

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

  .service-card span {
    margin-bottom: 26px;
  }
}

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

  .brand img {
    width: 132px;
  }

  .header-actions {
    gap: 4px;
    padding: 3px;
  }

  .lang-btn {
    min-width: 36px;
    padding: 7px 8px;
    font-size: 0.78rem;
  }

  .main-nav {
    font-size: 0.95rem;
  }

  .hero {
    min-height: 600px;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding: 70px 0;
  }

  h1 {
    font-size: 2.35rem;
  }

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

  .btn {
    width: 100%;
  }

  .section {
    width: calc(100% - 28px);
    padding: 68px 0;
  }

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

  .gallery img:first-child {
    grid-column: auto;
  }

  .contact-section {
    padding: 58px 14px;
  }
}
