@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;450;500;550;600;650;700&family=Manrope:wght@400;500;600;650;700;750;800&display=swap");
:root {
  --ink: #101210;
  --gold: #e8bd68;
  --gold-light: #f5d69a;
  --paper: #f7f7f2;
  --muted: #6b6d64;
  --line: #dcded4;
  --font: "DM Sans", sans-serif;
  --display: "Manrope", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 6px;
}
::selection {
  background: var(--gold);
  color: var(--ink);
}
.container {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  background: var(--gold);
  padding: 12px;
  z-index: 100;
}
.skip-link:focus {
  top: 16px;
}
.header {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 56px;
  background: #080908;
  color: #fff;
  position: relative;
  z-index: 20;
  border-bottom: 1px solid #ffffff1a;
}
.brand {
  display: block;
  flex-shrink: 0;
}
.logo-crop {
  width: 146px;
  height: 77px;
  display: block;
  overflow: hidden;
  position: relative;
}
.logo-crop img {
  width: 160px;
  height: 160px;
  position: absolute;
  left: -7px;
  top: -42px;
  max-width: none;
}
.desktop-nav {
  display: flex;
  gap: 36px;
  margin-left: auto;
  margin-right: auto;
}
.desktop-nav a {
  font-size: 14px;
  color: #deded6;
  position: relative;
}
.desktop-nav a:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s;
}
.desktop-nav a:hover:after {
  width: 100%;
}
.header-cta {
  display: flex;
  gap: 30px;
  align-items: center;
  border: 1px solid #72715d;
  padding: 12px 20px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  transition:
    background 0.25s,
    color 0.25s;
}
.header-cta:hover {
  background: var(--gold);
  color: var(--ink);
}
.menu-toggle {
  display: none;
}
.mobile-nav {
  display: none;
}
.hero {
  min-height: 720px;
  height: calc(100svh - 100px);
  max-height: 980px;
  position: relative;
  isolation: isolate;
  background: #1b231f;
  color: #fff;
  overflow: hidden;
}
.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-photo {
  background: #25332c url("/assets/hero-van.jpg") center 83% / cover no-repeat;
  animation: hero-settle 1.8s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}
.hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(9, 16, 13, 0.91) 0%,
      rgba(9, 16, 13, 0.77) 34%,
      rgba(9, 16, 13, 0.17) 70%
    ),
    linear-gradient(0deg, rgba(8, 14, 11, 0.78), transparent 35%);
}
.hero-content {
  padding-top: clamp(74px, 9vh, 128px);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 12px;
  letter-spacing: 0.19em;
  font-weight: 650;
  margin: 0 0 30px;
}
.eyebrow > span {
  width: 30px;
  height: 1px;
  background: var(--gold);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-family: var(--display);
  font-size: clamp(52px, 5.4vw, 82px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.055em;
  margin-bottom: 25px;
}
h1 em {
  font-family: Georgia, serif;
  color: var(--gold-light);
  font-weight: 400;
  letter-spacing: -0.045em;
}
.hero-description {
  font-size: 18px;
  color: #e0e1d7;
  line-height: 1.65;
  margin-bottom: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 56px;
  padding: 16px 25px;
  border: 1px solid transparent;
  font-weight: 650;
  font-size: 14px;
  transition:
    background 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}
.button > span {
  font-size: 22px;
  line-height: 1;
  transition: transform 0.25s;
}
.button:hover > span {
  transform: translate(3px, -3px);
}
.button:hover {
  transform: translateY(-2px);
}
.button-gold {
  background: var(--gold);
  color: #181c16;
}
.button-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 28px #0002;
}
.hero-note {
  font-size: 12px;
  color: #c6c8be;
  margin-top: 16px;
}
.hero-bottom {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  border-top: 1px solid #ffffff30;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.hero-bottom a {
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 14px;
}
.hero-bottom a span {
  font-size: 22px;
  color: var(--gold);
}
@keyframes hero-settle {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1);
  }
}
@media (min-width: 1500px) {
  .header {
    padding-inline: max(56px, calc((100vw - 1280px) / 2));
  }
}
@media (max-width: 1000px) {
  .container {
    width: calc(100% - 64px);
  }
  .header {
    padding-inline: 32px;
  }
  .desktop-nav {
    gap: 20px;
  }
  .hero {
    min-height: 740px;
  }
  .hero-photo {
    background-position: 60% center;
  }
  h1 {
    font-size: 66px;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 82px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .header {
    height: 82px;
    padding-inline: 20px;
    gap: 16px;
  }
  .logo-crop {
    width: 105px;
    height: 62px;
  }
  .logo-crop img {
    width: 125px;
    height: 125px;
    top: -30px;
    left: -10px;
  }
  .desktop-nav {
    display: none;
  }
  .header-cta {
    margin-left: auto;
    padding: 9px 12px;
    gap: 15px;
    font-size: 12px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: 0;
    padding: 10px 0 10px 8px;
    width: 32px;
    height: 44px;
  }
  .menu-toggle span {
    height: 1px;
    width: 24px;
    background: #fff;
  }
  .mobile-nav:not([hidden]) {
    display: flex;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 24px;
    background: #101210;
    gap: 20px;
    border-bottom: 1px solid #ffffff30;
  }
  .hero {
    height: calc(100svh - 82px);
    min-height: 690px;
    max-height: 850px;
  }
  .hero-content {
    padding-top: 66px;
  }
  h1 {
    font-size: clamp(48px, 11.5vw, 68px);
  }
  .hero-description {
    font-size: 16px;
  }
  .hero-photo {
    background-position: 62% center;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #09100dea, #09100d70),
      linear-gradient(0deg, #09100dcc, transparent 50%);
  }
  .eyebrow {
    margin-bottom: 25px;
  }
  .hero-bottom {
    bottom: 24px;
  }
  .hero-bottom > span {
    display: none;
  }
  .hero-bottom a {
    width: 100%;
    justify-content: space-between;
  }
  .hero-note {
    max-width: 240px;
  }
  .button {
    gap: 22px;
    padding-inline: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}

/* Shared visual language */
.icon,
.service-icon,
.large-arrow {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.section {
  padding: 110px 0;
}
.dark-eyebrow {
  color: #686b5f;
}
.section h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(36px, 3.5vw, 54px);
  line-height: 1.17;
  letter-spacing: -0.055em;
  margin: 0 0 28px;
}
.section h2 em,
.closing h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.04em;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.section-heading > p {
  max-width: 370px;
  justify-self: end;
  color: var(--muted);
  margin-bottom: 4px;
  line-height: 1.8;
}
.hero-photo {
  left: 24%;
  background-position: center 83%;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-location {
  position: absolute;
  right: max(56px, calc((100vw - 1280px) / 2));
  bottom: 130px;
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid #ffffff40;
  background: #101b1470;
  backdrop-filter: blur(8px);
  padding: 17px 22px;
  font-size: 12px;
  letter-spacing: 0.12em;
}
.hero-location .icon {
  color: var(--gold);
}
.hero-location small {
  display: block;
  font-size: 12px;
  letter-spacing: 0;
  color: #dbdfd2;
  margin-top: 3px;
}
.hero .eyebrow {
  color: #e6e7de;
}
.hero .button .icon {
  width: 19px;
  height: 19px;
}
.service-strip {
  background: var(--gold);
  padding: 22px 0;
}
.service-strip > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.service-strip span:first-child {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.025em;
}
.service-strip span:last-child {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 11px;
  letter-spacing: 0.13em;
  font-weight: 650;
}
.service-strip .icon {
  width: 18px;
  height: 18px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-card {
  padding: 35px 34px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    background 0.35s,
    transform 0.35s;
}
.service-card:first-child {
  padding-left: 0;
  padding-right: 36px;
}
.service-card:last-child {
  padding-right: 0;
  padding-left: 36px;
}
.service-card + .service-card {
  border-left: 1px solid var(--line);
}
.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 38px;
}
.service-icon {
  width: 36px;
  height: 36px;
  stroke-width: 1.15;
}
.service-card-top > span {
  font-size: 12px;
  color: #76796b;
  font-family: var(--display);
}
.service-card h3 {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.045em;
  font-weight: 600;
  margin-bottom: 17px;
}
.service-card > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 22px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  margin-bottom: 36px;
}
.service-tags span {
  border: 1px solid #daddd0;
  padding: 4px 9px;
  font-size: 11px;
  color: #676c5d;
}
.text-link {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.text-link .icon {
  width: 18px;
  height: 18px;
  transition: transform 0.25s;
}
.text-link:hover .icon {
  transform: translate(3px, -3px);
}
.service-footnote {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding-top: 28px;
  font-size: 14px;
}
.service-footnote > span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #696d61;
}
.service-footnote > a {
  font-weight: 600;
  white-space: nowrap;
}
.service-footnote > a span {
  margin-left: 22px;
  font-size: 20px;
}
.about {
  padding-top: 22px;
  padding-bottom: 110px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-brand-panel {
  background: #050605;
  aspect-ratio: 1/1.12;
  position: relative;
  overflow: hidden;
  color: #ddbd78;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
}
.panel-caption {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #c9b786;
  position: relative;
  z-index: 1;
}
.about-logo {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-logo img {
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
}
.panel-bottom {
  position: relative;
  border-top: 1px solid #a5935540;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.panel-bottom > span {
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
.large-arrow {
  width: 38px;
  height: 38px;
  stroke-width: 1;
}
.about-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-copy .eyebrow {
  margin-bottom: 24px;
}
.about-copy h2 {
  margin-bottom: 25px;
}
.commitments {
  padding: 0;
  list-style: none;
  margin: 30px 0 0;
}
.commitments li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-top: 16px;
  font-size: 13px;
  color: var(--muted);
}
.commitments li .icon {
  width: 19px;
  height: 19px;
  color: #827037;
  margin-top: 2px;
}
.commitments strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 3px;
}
.coverage {
  background: #19221c;
  color: #f4f5ec;
  position: relative;
  overflow: hidden;
}
.coverage:after {
  content: "";
  width: 600px;
  height: 600px;
  border: 1px solid #d5dbbf08;
  border-radius: 50%;
  position: absolute;
  right: -400px;
  top: -200px;
  pointer-events: none;
  box-shadow:
    0 0 0 80px #d5dbbf04,
    0 0 0 160px #d5dbbf03;
}
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 100px;
  position: relative;
  z-index: 1;
  align-items: center;
}
.coverage .eyebrow {
  color: #bbc3ac;
}
.coverage h2 em {
  color: var(--gold-light);
}
.coverage-grid > div > p:not(.eyebrow) {
  max-width: 390px;
  color: #bfc8bb;
  line-height: 1.8;
}
.button-outline {
  border-color: #6c735e;
  color: #e9eddf;
  margin-top: 10px;
}
.button-outline:hover {
  background: #ffffff0c;
}
.cities {
  border: 1px solid #aeb89b40;
  padding: 34px 36px;
}
.cities-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.13em;
  padding-bottom: 20px;
}
.city-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
}
.city-grid > span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px 0;
  border-bottom: 1px solid #aeb89b2b;
  font-size: 17px;
  letter-spacing: -0.025em;
  gap: 12px;
}
.city-grid small {
  font-size: 10px;
  color: #8f9b85;
  letter-spacing: 0;
}
.cities > p {
  font-size: 12px;
  color: #aab4a0;
  margin: 22px 0 0;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 55px;
  counter-reset: step;
}
.step {
  border-top: 1px solid #babdad;
  padding-top: 26px;
}
.step-number {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  color: #868d70;
  letter-spacing: -0.05em;
  display: block;
  margin-bottom: 30px;
}
.step h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.035em;
  margin-bottom: 12px;
}
.step p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}
.quote {
  background: #eaede2;
  scroll-margin-top: 0;
}
.quote-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
}
.quote-copy > p:not(.eyebrow) {
  color: #676d5e;
  line-height: 1.8;
}
.quote-contact {
  border-top: 1px solid #cbd1bf;
  padding-top: 27px;
  margin-top: 42px;
}
.quote-contact > span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  color: #686e5e;
  display: block;
  margin-bottom: 9px;
}
.quote-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.03em;
  font-weight: 500;
  width: max-content;
}
.quote-contact a > span {
  margin-left: 20px;
}
.quote-copy .quote-small {
  font-size: 12px;
  margin-top: 24px;
}
.quote-form {
  background: #fff;
  padding: 34px 36px;
  border: 1px solid #d6ddcc;
  box-shadow: 0 12px 38px #23361705;
}
.form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
  font-weight: 600;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  min-width: 0;
  margin-bottom: 19px;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 7px;
}
.field label > span {
  color: #746341;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: #fafbf7;
  border: 1px solid #dbe0d1;
  border-radius: 0;
  padding: 12px 13px;
  color: #252a20;
  font-size: 13px;
  min-height: 46px;
  transition:
    border 0.2s,
    box-shadow 0.2s;
  outline: 0;
}
.field textarea {
  resize: vertical;
  min-height: 105px;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #73796a;
  opacity: 1;
}
.field select {
  padding-right: 24px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #897644;
  box-shadow: 0 0 0 3px #dfbf7b28;
}
.field input:user-invalid,
.field select:user-invalid,
.field textarea:user-invalid {
  border-color: #a04a36;
}
.button-dark {
  background: #19221c;
  color: white;
  width: 100%;
  gap: 12px;
  font-size: 14px;
  justify-content: center;
}
.button-dark:hover {
  background: #303e2f;
}
.button-dark .end-icon {
  margin-left: auto;
  width: 17px;
  height: 17px;
}
.form-note {
  font-size: 11px;
  line-height: 1.65;
  color: #727868;
  margin: 15px 0 0;
}
.form-status {
  font-size: 13px;
  background: #f4f6e9;
  padding: 15px;
  margin: 15px 0 0;
}
.form-status a {
  text-decoration: underline;
  font-weight: 600;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 95px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  padding: 23px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  list-style: none;
  font-size: 15px;
  font-weight: 550;
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  font-size: 23px;
  color: #80846f;
  font-weight: 400;
  transition: transform 0.25s;
}
details[open] summary span {
  transform: rotate(45deg);
}
details > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  max-width: 95%;
  padding-bottom: 22px;
  margin: 0;
}
.closing {
  padding: 76px 0;
  background: #19221c;
  color: white;
}
.closing > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.closing p {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #c6cbb7;
  margin-bottom: 20px;
}
.closing h2 {
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.045em;
  margin: 0;
}
.closing h2 em {
  color: var(--gold-light);
}
.closing .button {
  flex-shrink: 0;
}
.footer {
  background: #080908;
  color: #a6ac9d;
  padding-top: 40px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-bottom: 30px;
}
.footer-top > p {
  font-size: 13px;
  line-height: 1.8;
  margin: 0;
}
.footer-top > a:last-child {
  margin-left: auto;
  color: #e1e5d8;
  font-size: 15px;
}
.footer-top > a:last-child > span {
  color: var(--gold);
  margin-left: 25px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid #aeb89b25;
  padding-block: 22px;
  font-size: 11px;
}
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 25;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #a5b39765;
  background: #17251a;
  color: #eef3e6;
  box-shadow: 0 5px 22px #0003;
  padding: 14px 18px;
  border-radius: 32px;
  transition:
    background 0.25s,
    transform 0.25s;
}
.whatsapp-float > .icon {
  width: 23px;
  height: 23px;
  color: #d9e9bc;
}
.whatsapp-float > span {
  font-size: 12px;
}
.whatsapp-float:hover {
  background: #2a3d25;
  transform: translateY(-3px);
}
.will-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.75s cubic-bezier(0.2, 0.7, 0.3, 1),
    transform 0.75s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.will-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.service-card:nth-child(2),
.step:nth-child(2) {
  transition-delay: 0.08s;
}
.service-card:nth-child(3),
.step:nth-child(3) {
  transition-delay: 0.16s;
}
@media (min-width: 701px) {
  .hero-content > .eyebrow {
    animation: enter 0.8s 0.1s both;
  }
  .hero h1 {
    animation: enter 0.9s 0.2s both;
  }
  .hero-description {
    animation: enter 0.9s 0.35s both;
  }
  .hero .button {
    animation: enter 0.9s 0.45s both;
  }
  .hero-note {
    animation: enter 0.9s 0.55s both;
  }
}
@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1100px) {
  .section {
    padding-block: 82px;
  }
  .section-heading {
    gap: 45px;
  }
  .about-grid {
    gap: 55px;
  }
  .about {
    padding-top: 10px;
  }
  .about-brand-panel {
    aspect-ratio: 1/1.35;
  }
  .coverage-grid,
  .quote-grid {
    gap: 50px;
  }
  .cities {
    padding: 25px;
  }
  .city-grid {
    column-gap: 20px;
  }
  .city-grid > span {
    font-size: 15px;
  }
  .quote-form {
    padding: 28px;
  }
  .quote-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }
  .faq-grid {
    gap: 50px;
  }
  .service-card {
    padding-inline: 23px;
  }
  .service-card:first-child {
    padding-right: 23px;
  }
  .service-card:last-child {
    padding-left: 23px;
  }
  .service-card h3 {
    font-size: 21px;
  }
  .service-tags span {
    font-size: 10px;
  }
  .hero-location {
    right: 32px;
    bottom: 115px;
  }
  .service-strip span:first-child {
    font-size: 15px;
  }
  .service-strip span:last-child {
    font-size: 10px;
  }
}
@media (max-width: 800px) {
  .desktop-nav {
    gap: 16px;
  }
  .desktop-nav a {
    font-size: 12px;
  }
  .header-cta {
    gap: 14px;
    padding-inline: 14px;
  }
  .header {
    gap: 20px;
  }
  .about-grid {
    gap: 35px;
  }
  .coverage-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
  }
  .quote-grid {
    grid-template-columns: 1fr;
  }
  .quote-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
  }
  .quote-copy > .eyebrow,
  .quote-copy > h2 {
    grid-column: 1;
  }
  .quote-copy > .quote-contact {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0;
    align-self: center;
  }
  .quote-copy > .quote-small {
    grid-column: 2;
    grid-row: 3;
    margin-top: 0;
  }
  .quote-copy > p:not(.eyebrow):not(.quote-small) {
    grid-column: 1;
  }
  .section-heading {
    gap: 30px;
  }
  .steps {
    gap: 28px;
  }
  .hero-location {
    display: none;
  }
  .service-card h3 {
    font-size: 19px;
  }
  .service-card > p {
    font-size: 14px;
  }
  .service-card {
    padding-inline: 18px;
  }
  .service-card:first-child {
    padding-right: 18px;
  }
  .service-card:last-child {
    padding-left: 18px;
  }
  .text-link {
    font-size: 12px;
    gap: 8px;
  }
}
@media (max-width: 700px) {
  .section {
    padding-block: 68px;
  }
  .section h2 {
    font-size: 38px;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.13em;
  }
  .hero .eyebrow {
    font-size: 10px;
  }
  .hero-photo {
    left: 0;
    background-position: center 84%;
    opacity: 0.75;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #09100dee 2%, #09100daa 48%, #09100d33),
      linear-gradient(0deg, #09100ddd, transparent 60%);
  }
  .hero h1 {
    font-size: clamp(44px, 11.7vw, 66px);
  }
  .hero-content {
    padding-top: 54px;
  }
  .hero .button {
    font-size: 14px;
  }
  .hero-description {
    font-size: 16px;
    max-width: 320px;
  }
  .service-strip {
    padding-block: 20px;
  }
  .service-strip > .container {
    justify-content: center;
    text-align: center;
  }
  .service-strip span:first-child {
    font-size: 14px;
  }
  .service-strip span:last-child {
    display: none;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 38px;
  }
  .section-heading > p {
    justify-self: start;
    max-width: 100%;
    font-size: 15px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }
  .service-card,
  .service-card:first-child,
  .service-card:last-child {
    padding: 30px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
  .service-card-top {
    margin-bottom: 24px;
  }
  .service-card h3 {
    font-size: 24px;
  }
  .service-card > p {
    font-size: 16px;
    max-width: 500px;
  }
  .service-tags {
    margin-bottom: 24px;
  }
  .service-tags span {
    font-size: 12px;
  }
  .text-link {
    font-size: 14px;
  }
  .service-footnote {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    font-size: 13px;
  }
  .service-footnote > span {
    align-items: flex-start;
  }
  .about {
    padding-top: 0;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-brand-panel {
    aspect-ratio: 1.13/1;
    padding: 25px;
  }
  .about-logo img {
    width: 85%;
    height: auto;
  }
  .about-copy h2 br:first-of-type {
    display: none;
  }
  .about-copy h2 br:first-of-type:after {
    content: " ";
  }
  .about-copy h2 {
    max-width: 330px;
  }
  .commitments li {
    font-size: 14px;
  }
  .commitments strong {
    font-size: 15px;
  }
  .coverage-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .coverage h2 {
    font-size: 44px;
  }
  .coverage-grid > div > p:not(.eyebrow) {
    max-width: none;
    font-size: 16px;
  }
  .cities {
    padding: 24px;
  }
  .city-grid {
    gap: 0 20px;
  }
  .city-grid > span {
    font-size: 15px;
    gap: 8px;
  }
  .city-grid small {
    font-size: 10px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .step {
    position: relative;
    padding: 26px 0 0 63px;
  }
  .step-number {
    font-size: 32px;
    position: absolute;
    left: 0;
    top: 29px;
  }
  .step h3 {
    font-size: 20px;
  }
  .step p {
    font-size: 16px;
  }
  .quote-grid {
    gap: 32px;
  }
  .quote-copy {
    display: block;
  }
  .quote-copy > .quote-contact {
    margin-top: 25px;
  }
  .quote-copy > .quote-small {
    margin-top: 20px;
  }
  .quote-form {
    padding: 25px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
  }
  .field label {
    font-size: 14px;
  }
  .form-header {
    font-size: 10px;
  }
  .button-dark {
    font-size: 13px;
    gap: 10px;
    padding-inline: 15px;
  }
  .button-dark .icon {
    width: 20px;
    height: 20px;
  }
  .button-dark .end-icon {
    width: 16px;
    height: 16px;
  }
  .form-note {
    font-size: 12px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .faq-grid h2 {
    margin-bottom: 0;
  }
  .faq-list summary {
    font-size: 15px;
    padding-block: 21px;
    gap: 20px;
  }
  .faq-list details > p {
    font-size: 15px;
  }
  .closing {
    padding-block: 60px;
  }
  .closing > .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .closing h2 {
    font-size: 34px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 18px 25px;
    padding-bottom: 26px;
  }
  .footer-top > p {
    font-size: 12px;
    flex: 1;
    min-width: 160px;
  }
  .footer-top > a:last-child {
    margin-left: 0;
    margin-top: 4px;
    font-size: 15px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 7px;
    padding-bottom: 96px;
    font-size: 10px;
  }
  .whatsapp-float {
    width: 54px;
    height: 54px;
    padding: 0;
    justify-content: center;
    right: 18px;
    bottom: 18px;
  }
  .whatsapp-float span {
    display: none;
  }
  .whatsapp-float > .icon {
    width: 25px;
    height: 25px;
  }
  .will-reveal {
    transform: translateY(14px);
  }
}
@media (max-width: 360px) {
  .container {
    width: calc(100% - 32px);
  }
  .header {
    padding-inline: 16px;
    gap: 12px;
  }
  .header-cta {
    font-size: 11px;
    padding-inline: 10px;
    gap: 9px;
  }
  .hero h1 {
    font-size: 43px;
  }
  .hero .eyebrow {
    font-size: 9px;
  }
  .city-grid {
    grid-template-columns: 1fr;
  }
  .button-dark {
    font-size: 12px;
    padding-inline: 12px;
  }
  .section h2 {
    font-size: 34px;
  }
  .quote-contact a {
    font-size: 21px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .will-reveal {
    opacity: 1;
    transform: none;
  }
  .hero-photo {
    transform: none;
  }
}
@media print {
  .header,
  .whatsapp-float,
  .quote-form,
  .closing,
  .footer {
    display: none;
  }
  .hero {
    height: auto;
    min-height: 0;
    padding: 30px 0;
    background: white;
    color: black;
  }
  .hero-photo,
  .hero-shade,
  .hero-bottom {
    display: none;
  }
  .hero-content {
    padding-top: 0;
  }
  .hero h1 {
    font-size: 40px;
  }
  .section {
    padding-block: 30px;
  }
  .will-reveal {
    opacity: 1;
    transform: none;
  }
}
/* Final readability and image integration */
.logo-crop {
  height: 82px;
}
.logo-crop img {
  top: -40px;
  mix-blend-mode: screen;
}
.hero-shade {
  background:
    linear-gradient(
      90deg,
      #0c130e 0%,
      #0c130efc 22%,
      #0c130ed9 39%,
      #0c130e30 76%,
      #0c130e20
    ),
    linear-gradient(0deg, #08100bdb, transparent 40%);
}
.hero-location {
  top: 60px;
  bottom: auto;
}
.service-card > p,
.step p {
  font-size: 16px;
}
.service-tags span {
  font-size: 12px;
}
.field label {
  font-size: 14px;
}
.field input,
.field select,
.field textarea {
  font-size: 14px;
}
.form-note,
.footer-bottom,
.cities > p,
.quote-small {
  font-size: 12px;
}
.panel-caption,
.panel-bottom > span,
.cities-heading,
.closing p,
.quote-contact > span {
  font-size: 12px;
}
.form-header {
  font-size: 12px;
}
.service-strip span:last-child {
  font-size: 12px;
}
.commitments li {
  font-size: 14px;
}
.about-copy h2 br:first-of-type {
  display: initial;
}
@media (max-width: 700px) {
  .logo-crop {
    height: 62px;
  }
  .logo-crop img {
    top: -29px;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #09100de8 2%, #09100d99 48%, #09100d22),
      linear-gradient(0deg, #09100ddd, transparent 65%);
  }
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
  }
  .form-header {
    font-size: 11px;
  }
  .footer-top {
    padding-right: 0;
  }
  .footer-bottom {
    font-size: 12px;
  }
}
@media (max-width: 700px) {
  .logo-crop {
    height: 66px;
  }
  .logo-crop img {
    top: -32px;
  }
}
noscript .no-script-note {
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
}
.hero-bottom {
  padding-right: 190px;
}
@media (max-width: 700px) {
  .hero-bottom {
    padding-right: 65px;
  }
}
