:root {
  color-scheme: dark;
  --bg: #0f1114;
  --text: #f5f0e7;
  --muted: #b8b1a6;
  --line: rgba(245, 240, 231, .16);
  --surface: #171a1f;
  --surface-2: #20242b;
  --accent: #d8953e;
  --accent-2: #37a1a1;
  --dark: #090a0c;
  --light: #fff9ef;
  --shadow: 0 24px 70px rgba(0, 0, 0, .38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 76px);
  color: var(--light);
  background: linear-gradient(180deg, rgba(9, 10, 12, .82), rgba(9, 10, 12, .24));
}

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

.brand-mark {
  display: grid;
  flex: 0 0 46px;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .09);
  color: var(--accent);
  font-weight: 950;
}

.brand strong,
.brand small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: rgba(255, 249, 239, .72);
  font-weight: 850;
}

nav {
  display: flex;
  gap: 28px;
  color: rgba(255, 249, 239, .76);
  font-size: .95rem;
  font-weight: 850;
}

nav a,
.phone-chip {
  text-decoration: none;
}

.phone-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--light);
  color: var(--dark);
  font-weight: 950;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 160px clamp(18px, 5vw, 76px) 72px;
}

.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(9, 10, 12, .9), rgba(9, 10, 12, .62) 44%, rgba(9, 10, 12, .18)),
    linear-gradient(0deg, rgba(9, 10, 12, .88), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.eyebrow,
.label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 22px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: 6.4rem;
  line-height: .88;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.3rem;
  line-height: 1;
}

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

.hero-content p {
  max-width: 650px;
  color: rgba(255, 249, 239, .8);
  font-size: 1.22rem;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 950;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

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

.button.primary:hover {
  background: #efaa56;
}

.button.ghost {
  border-color: rgba(255, 255, 255, .28);
  color: var(--light);
  background: rgba(255, 255, 255, .06);
}

.button.dark {
  color: var(--text);
  border-color: var(--line);
}

.hero-card {
  position: absolute;
  right: clamp(18px, 5vw, 76px);
  bottom: 72px;
  z-index: 1;
  display: grid;
  gap: 6px;
  width: min(360px, 30vw);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(15, 17, 20, .78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card span,
.quick-grid span,
dt {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-card strong {
  color: var(--accent);
  font-size: 2rem;
}

.hero-card small {
  color: rgba(255, 249, 239, .76);
  font-weight: 850;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.quick-grid a,
.quick-grid div {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 26px clamp(18px, 5vw, 76px);
  background: var(--surface);
  text-decoration: none;
}

.quick-grid strong {
  overflow-wrap: anywhere;
  color: var(--light);
  font-size: 1.12rem;
}

.section {
  padding: 92px clamp(18px, 5vw, 76px);
}

.services {
  background: var(--light);
  color: #171a1f;
}

.section-intro {
  max-width: 850px;
  margin-bottom: 42px;
}

.services .label {
  border-color: rgba(23, 26, 31, .16);
  color: #9a5a1e;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1fr);
  gap: 18px;
}

.service-feature,
.service-list article,
.contact-form {
  border-radius: 8px;
}

.service-feature {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 30px;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, .78)),
    url("https://images.unsplash.com/photo-1552930294-6b595f4c2974?auto=format&fit=crop&w=1200&q=82") center / cover;
  color: var(--light);
}

.service-feature p,
.service-list p,
.contact-info p,
.form-note {
  color: var(--muted);
  line-height: 1.65;
}

.service-feature p {
  color: rgba(255, 249, 239, .78);
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 18px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(23, 26, 31, .12);
}

.service-list article span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: #f3e7d9;
  color: #9a5a1e;
  font-weight: 950;
}

.service-list p {
  margin-bottom: 0;
  color: #5e6368;
}

.process {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, .85fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: start;
  background: var(--surface);
}

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

.process li {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
}

.process li strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 1.15rem;
}

.process li span {
  color: rgba(255, 249, 239, .72);
  line-height: 1.65;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, .7fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: #111318;
}

.contact-info {
  min-height: 100%;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

dl {
  display: grid;
  gap: 18px;
  margin: 30px 0;
}

dt {
  margin-bottom: 5px;
}

dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--light);
  font-size: 1.12rem;
  font-weight: 850;
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 28px;
  background: var(--light);
  color: #171a1f;
}

label {
  display: grid;
  gap: 8px;
  color: #30343a;
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  border: 1px solid #d4d0c7;
  border-radius: 8px;
  padding: 13px 14px;
  background: #fff;
  color: #171a1f;
  font: inherit;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(216, 149, 62, .2);
}

textarea {
  resize: vertical;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 76px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .95rem;
}

.footer a {
  color: var(--accent);
  font-weight: 850;
}

@media (max-width: 980px) {
  h1 {
    font-size: 4.4rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 420px);
    margin-top: 28px;
  }

  .service-layout,
  .process,
  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .topbar {
    padding: 12px 16px;
    background: rgba(9, 10, 12, .9);
  }

  .brand span:last-child {
    min-width: 0;
  }

  .brand strong {
    max-width: 158px;
  }

  .brand small,
  nav {
    display: none;
  }

  .phone-chip {
    min-width: 48px;
    width: 48px;
    padding: 0;
    font-size: 0;
  }

  .phone-chip::before {
    content: "Tel";
    font-size: .86rem;
  }

  .hero {
    min-height: 86svh;
    padding: 116px 16px 42px;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1.06rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-card {
    width: 100%;
  }

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

  .quick-grid a,
  .quick-grid div {
    padding: 22px 16px;
  }

  .section {
    padding: 62px 16px;
  }

  .service-feature {
    min-height: 330px;
    padding: 22px;
  }

  .service-list article {
    grid-template-columns: 1fr;
  }

  .service-list article span {
    grid-row: auto;
    margin-bottom: 12px;
  }

  .contact-info,
  .contact-form {
    padding: 22px;
  }

  .footer {
    display: grid;
    padding: 24px 16px;
  }
}
