:root {
  --bg: #0d0d0d;
  --gold: #d8b47d;
  --gold-2: #c9a36d;
  --gold-3: #cfa46a;
  --dark-button: #2a241d;
  --white: #f3f3f3;
  --container: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: #fff;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.site-container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

/* Saved T228: rgba(18,18,18,.80), 70px, shadow 0 8 30 rgba(0,0,0,.18) */
.site-header {
  position: relative;
  z-index: 100;
  height: 70px;
  background: rgba(18,18,18,.80);
  box-shadow: 0 8px 30px rgba(0,0,0,.18);
}

.site-header__inner {
  height: 70px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-logo {
  color: #fff;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a {
  color: #fff;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.desktop-nav a:hover { color: var(--gold-2); }

.desktop-phone {
  margin-left: 12px;
  min-height: 45px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d6b78e;
  background: var(--dark-button);
  border: 1px solid var(--gold-2);
  border-radius: 14px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.mobile-menu-button,
.mobile-menu {
  display: none;
}

/* Saved T213 cover */
.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  overflow: hidden;
  background: linear-gradient(0turn, rgba(13,13,13,1) 0%, rgba(0,0,0,1) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url("https://static.tildacdn.biz/tild3863-3935-4364-a432-623265656237/photo_2025-10-27_12-.png"),
    url("/assets/img/reference-team.webp");
  background-repeat: no-repeat;
  background-position: 71% 16%, 71% 50%;
  background-size: cover, cover;
}

.hero__filter {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.78) 42%, rgba(0,0,0,.24) 75%, rgba(13,13,13,.06) 100%),
    linear-gradient(rgba(0,0,0,.3), rgba(13,13,13,0));
}

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
}

.hero__content {
  width: 58.333%;
  max-width: 700px;
  padding: 42px 0;
}

.hero__title {
  margin: 0;
  padding: 20px 0;
  color: #f5f5f5;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 30px;
  line-height: 34px;
  letter-spacing: 1px;
  font-weight: 700;
}

.hero__title strong,
.hero__title span {
  display: block;
}

.hero__title strong {
  margin-bottom: 34px;
}

.hero__description {
  padding: 0 0 30px;
  color: #fff;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 300;
}

.hero__description p {
  margin: 0 0 18px;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

/* Button geometry/styles from saved Tilda blocks */
.ref-button {
  min-height: 60px;
  padding: 0 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  border-radius: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  transition: .2s ease-in-out;
}

.ref-button--dark {
  color: #f3f3f3;
  border-color: var(--gold-3);
  background-image: linear-gradient(.171turn, rgba(26,26,26,.08) 0%, rgba(5,5,5,.6) 100%);
}

.ref-button--outline {
  color: #f2e4cd;
  border-color: var(--gold);
  background: rgba(20,20,20,.12);
}

.ref-button:hover {
  transform: translateY(-1px);
  border-color: #e7c58d;
}

.hero__arrow {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 22px;
  width: 38px;
  transform: translateX(-50%);
}

.hero__arrow svg {
  display: block;
  width: 38px;
  fill: var(--gold);
}

/* Saved T1196 section values: 45px block padding, gradient, 62px Inter title */
.services {
  padding: 45px 0;
  background: linear-gradient(0turn, rgba(15,15,15,1) 0%, rgba(24,24,24,1) 49%, rgba(16,16,16,1) 100%);
}

.services__heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.services__heading h2 {
  margin: 0 0 20px;
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 62px;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -.02em;
}

.services__heading h2 span {
  color: var(--gold);
}

.services__heading p {
  max-width: 560px;
  margin: 0 auto;
  color: #fff;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}

.service-card {
  min-height: 320px;
  padding: 24px 28px;
  overflow: hidden;
  border: 1px solid rgba(216,180,125,.38);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(216,180,125,.035), transparent 45%),
    #0f0f0f;
}

.service-card__number {
  display: block;
  margin-bottom: 72px;
  color: var(--gold);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.service-card h3 {
  margin: 0 0 16px;
  color: #fff;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
}

.service-card p {
  margin: 0;
  color: var(--gold);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 300;
}

.result-row {
  margin-top: 35px;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.result-row > div {
  display: grid;
  gap: 8px;
}

.result-row span {
  color: var(--gold);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.result-row strong {
  max-width: 700px;
  color: #fff;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.35;
}

/* Saved T678: white section, 60px top/bottom, 26px heading */
.form-section {
  padding: 60px 0;
  background: #fff;
  color: #000;
}

.form-heading {
  max-width: 560px;
  margin: 0 auto 40px;
  text-align: center;
}

.form-heading h2 {
  margin: 0 0 20px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 26px;
  line-height: 1.23;
  font-weight: 700;
}

.form-heading p {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 300;
}

.lead-form {
  width: min(100%,560px);
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.field label small {
  color: rgba(0,0,0,.5);
  font-size: 11px;
  font-weight: 300;
}

.field input {
  width: 100%;
  height: 60px;
  padding: 0 18px;
  outline: 0;
  color: #000;
  background: #fff;
  border: 1px solid #000;
  border-radius: 10px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.field input::placeholder {
  color: #000;
  opacity: .5;
}

.field input:focus {
  box-shadow: 0 0 0 2px rgba(201,163,109,.25);
}

.field input.is-invalid {
  border-color: #c74444;
}

.form-error {
  min-height: 15px;
  color: #c74444;
  font-size: 12px;
}

.form-submit {
  min-height: 50px;
  padding: 0 44px;
  color: var(--dark-button);
  background: var(--gold-2);
  border: 1px solid var(--dark-button);
  border-radius: 8px;
  cursor: pointer;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.form-submit:disabled {
  opacity: .6;
  cursor: wait;
}

.form-status {
  min-height: 20px;
  color: #000;
  font-size: 13px;
  text-align: center;
}

@media (max-width: 980px) {
  .desktop-nav,
  .desktop-phone {
    display: none;
  }

  .site-logo {
    margin-right: auto;
  }

  /* Saved T228 mobile: gold header + small dark burger */
  .site-header {
    background: #c79a63;
  }

  .mobile-menu-button {
    position: relative;
    width: 22px;
    height: 14px;
    padding: 0;
    display: block;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .mobile-menu-button span {
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    display: block;
    background: #1f1f1f;
    transition: .25s ease-in-out;
  }

  .mobile-menu-button span:nth-child(1) { top: 0; }
  .mobile-menu-button span:nth-child(2),
  .mobile-menu-button span:nth-child(3) { top: 6px; }
  .mobile-menu-button span:nth-child(4) { top: 12px; }

  .mobile-menu-button.is-open span:nth-child(1),
  .mobile-menu-button.is-open span:nth-child(4) {
    width: 0;
    left: 50%;
  }

  .mobile-menu-button.is-open span:nth-child(2) {
    transform: rotate(45deg);
  }

  .mobile-menu-button.is-open span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    padding: 22px 20px 26px;
    background: rgba(18,18,18,.98);
    box-shadow: 0 12px 30px rgba(0,0,0,.28);
  }

  .mobile-menu.is-open {
    display: grid;
    gap: 18px;
  }

  .mobile-menu a {
    color: #fff;
    font-family: "Manrope", Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
  }

  .hero__content {
    width: 68%;
  }

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

@media (max-width: 640px) {
  .site-container {
    width: calc(100% - 40px);
  }

  .site-logo {
    font-size: 18px;
  }

  .hero {
    min-height: calc(100svh - 70px);
  }

  .hero::before {
    background-position: 68% center, 68% center;
  }

  .hero__filter {
    background: linear-gradient(90deg, rgba(0,0,0,.93), rgba(0,0,0,.73));
  }

  .hero__inner {
    min-height: calc(100svh - 70px);
  }

  .hero__content {
    width: 100%;
    max-width: none;
    padding: 42px 0 72px;
  }

  .hero__title {
    font-size: 26px;
    line-height: 30px;
    letter-spacing: 1px;
  }

  .hero__title strong {
    margin-bottom: 28px;
  }

  .hero__description {
    padding-bottom: 22px;
    font-size: 14px;
    line-height: 1.45;
  }

  .hero__description p {
    margin-bottom: 14px;
  }

  .hero__buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ref-button {
    width: 100%;
    min-height: 60px;
    padding: 0 30px;
    font-size: 16px;
  }

  .hero__arrow {
    bottom: 14px;
  }

  .services {
    padding: 45px 0;
  }

  .services__heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .services__heading h2 {
    font-size: 30px;
    line-height: 1.23;
  }

  .services__heading p {
    margin-left: 0;
    font-size: 14px;
    line-height: 1.45;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-card {
    min-height: 235px;
    padding: 24px 20px;
  }

  .service-card__number {
    margin-bottom: 46px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 14px;
    line-height: 1.45;
  }

  .result-row {
    margin-top: 28px;
    padding: 24px 0;
    display: grid;
    gap: 20px;
  }

  .result-row strong {
    font-size: 20px;
  }

  .form-section {
    padding: 45px 0;
  }

  .form-heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .form-heading h2 {
    font-size: 26px;
  }

  .form-heading p {
    font-size: 14px;
    line-height: 1.45;
  }

  .form-submit {
    width: 100%;
  }
}
