:root {
  --ink: #171717;
  --muted: #696969;
  --paper: #fffdf8;
  --soft: #f4f0e6;
  --yellow: #ffd700;
  --yellow-deep: #d6ae00;
  --line: rgba(23, 23, 23, 0.14);
  --display: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  --sans: "Manrope", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}
.eyebrow {
  color: #8b7100;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 {
  font-size: clamp(3.2rem, 9vw, 7.2rem);
  text-transform: uppercase;
}
h2 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}
p {
  color: var(--muted);
}
.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 0.75rem;
}
.topbar-inner {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.topbar a {
  color: var(--yellow);
}
.socials {
  display: flex;
  gap: 13px;
  color: #fff;
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo img {
  width: 170px;
  height: auto;
}
.nav-toggle {
  display: none;
  border: 0;
  background: none;
  font-size: 1.35rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(15px, 2.4vw, 31px);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-links a {
  padding: 30px 0;
  border-bottom: 3px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  border-color: var(--yellow);
}
.nav-phone {
  padding: 12px 17px !important;
  border: 0 !important;
  background: var(--yellow);
}
.hero {
  position: relative;
  min-height: calc(100vh - 118px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}
.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    90deg,
    rgba(23, 23, 23, 0.48) 0%,
    rgba(23, 23, 23, 0.24) 42%,
    rgba(23, 23, 23, 0.04) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0 90px;
  color: #fff;
}
.hero h1 {
  max-width: 820px;
  margin: 18px 0 26px;
}
.hero h1 em {
  color: var(--yellow);
  font-style: normal;
}
.hero p {
  max-width: 580px;
  color: #e7e1d5;
  font-size: 1.08rem;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 15px 20px;
  border: 1px solid var(--ink);
  background: var(--yellow);
  font-weight: 800;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.button:hover {
  transform: translateY(-4px);
  box-shadow: 5px 5px 0 var(--ink);
}
.button-dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.button-light {
  background: #fff;
}
.section {
  padding: clamp(76px, 10vw, 140px) 0;
}
.section-soft {
  background: var(--soft);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 52px;
}
.section-head h2 {
  max-width: 670px;
  margin-top: 12px;
}
.section-head p {
  max-width: 350px;
  margin: 0;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.service-card {
  grid-column: span 4;
  border-top: 1px solid var(--ink);
  padding-top: 12px;
  transition: transform 0.3s;
}
.service-card:nth-child(2),
.service-card:nth-child(5) {
  transform: translateY(48px);
}
.service-card:hover {
  transform: translateY(-8px);
}
.service-card:nth-child(2):hover,
.service-card:nth-child(5):hover {
  transform: translateY(36px);
}
.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: #ddd8cc;
  filter: grayscale(0.35);
}
.service-card h3 {
  font-size: 1.7rem;
  margin: 20px 0 10px;
}
.service-card p {
  margin: 0 0 20px;
  font-size: 0.93rem;
}
.text-link {
  font-size: 0.79rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.text-link i {
  color: var(--yellow-deep);
  margin-left: 5px;
}
.feature-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: start;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px 22px;
}
.feature-item {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.feature-number {
  color: var(--yellow-deep);
  font-weight: 800;
  font-size: 0.8rem;
}
.feature-item h3 {
  font-size: 1.45rem;
  margin: 16px 0 8px;
}
.feature-item p {
  margin: 0;
  font-size: 0.9rem;
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 70px;
  align-items: center;
}
.about-copy p {
  max-width: 570px;
}
.about-image {
  background: var(--yellow);
  padding: 16px 16px 0 0;
}
.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.stats {
  background: var(--yellow);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat {
  border-left: 1px solid rgba(23, 23, 23, 0.35);
  padding-left: 20px;
}
.stat strong {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 1;
}
.stat span {
  display: block;
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}
.policy-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
}
.policy-list {
  display: grid;
  gap: 0;
}
.policy-row {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.policy-row b {
  color: var(--yellow-deep);
}
.policy-row h3 {
  font: 800 1rem var(--sans);
}
.policy-row p {
  margin: 5px 0 0;
  font-size: 0.9rem;
}
.regions {
  background: var(--ink);
  color: #fff;
}
.regions p {
  color: #c6c2b7;
}
.regions .eyebrow {
  color: var(--yellow);
}
.region-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 40px;
}
.region-list span {
  color: #e8e3d8;
  font-size: 0.9rem;
}
.cta {
  background: var(--yellow);
  padding: 70px 0;
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.cta h2 {
  max-width: 650px;
}
.page-hero {
  padding: 100px 0 80px;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  max-width: 850px;
  margin-top: 15px;
}
.prose {
  max-width: 800px;
}
.prose h2 {
  font-size: 2.4rem;
  margin: 42px 0 16px;
}
.prose p,
.prose li {
  font-size: 1rem;
  color: var(--muted);
}
.prose ul {
  padding-left: 20px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}
.contact-details {
  display: grid;
  gap: 22px;
}
.contact-detail {
  border-top: 1px solid var(--line);
  padding-top: 15px;
}
.contact-detail strong {
  display: block;
  font: 1.25rem var(--display);
}
.contact-detail span {
  color: var(--muted);
  font-size: 0.9rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: grid;
  gap: 7px;
}
.field.full {
  grid-column: 1 / -1;
}
.field label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 14px;
  background: #fff;
  font: inherit;
  color: var(--ink);
}
.field textarea {
  min-height: 140px;
  resize: vertical;
}
.map {
  min-height: 330px;
  border: 1px solid var(--line);
  margin-top: 60px;
  background: #e4dfd2;
}
.map iframe {
  width: 100%;
  height: 100%;
  min-height: 330px;
  border: 0;
  filter: grayscale(1);
}
footer {
  background: var(--ink);
  color: #fff;
  padding: 70px 0 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 55px;
}
footer .logo {
  display: inline-block;
  background: var(--yellow);
  padding: 8px;
}
footer p,
footer a {
  color: #c6c2b7;
  font-size: 0.9rem;
}
footer h3 {
  color: #fff;
  font: 800 0.77rem var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
footer a:hover {
  color: var(--yellow);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 0.75rem;
  color: #9d998f;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.mobile-call {
  display: none;
}
@media (max-width: 850px) {
  .nav-toggle {
    display: block;
  }
  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    display: none;
    padding: 15px 20px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 12px 0;
  }
  .nav-phone {
    text-align: center;
    margin-top: 8px;
  }
  .service-card {
    grid-column: span 6;
  }
  .service-card:nth-child(2),
  .service-card:nth-child(5) {
    transform: none;
  }
  .feature-layout,
  .about-layout,
  .policy-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 12px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1160px);
  }
  .topbar-inner {
    min-height: 34px;
    font-size: 0.68rem;
  }
  .socials {
    display: none;
  }
  .logo img {
    width: 135px;
  }
  .hero {
    min-height: 520px;
  }
  .hero > img {
    object-position: center;
  }
  .hero-content {
    padding: 42px 0 50px;
  }
  .hero h1 {
    max-width: 330px;
    margin: 14px 0 18px;
    font-size: 2.75rem;
    line-height: 0.98;
  }
  .hero p {
    max-width: 330px;
    margin: 0 0 22px;
    font-size: 0.92rem;
    line-height: 1.55;
  }
  .hero .button {
    padding: 12px 16px;
    font-size: 0.8rem;
  }
  .page-hero {
    padding: 68px 0 54px;
  }
  .page-hero h1 {
    max-width: 330px;
    margin-top: 12px;
    font-size: 2.75rem;
    line-height: 0.98;
  }
  .section-head,
  .cta-inner {
    display: block;
  }
  .section-head p {
    margin-top: 20px;
  }
  .service-card {
    grid-column: span 12;
  }
  .feature-list,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom span {
    display: block;
    margin-top: 8px;
  }
  .mobile-call {
    position: fixed;
    z-index: 20;
    right: 50%;
    bottom: calc(16px + env(safe-area-inset-bottom));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 164px;
    min-height: 50px;
    padding: 13px 22px;
    transform: translateX(50%);
    border: 2px solid var(--ink);
    border-radius: 999px;
    background: var(--yellow);
    box-shadow: 0 8px 24px rgba(23, 23, 23, 0.22);
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .mobile-call i {
    font-size: 0.95rem;
  }
  .mobile-call:active {
    transform: translate(50%, 2px);
  }
}
