:root {
  --black: #080808;
  --charcoal: #151719;
  --ink: #111111;
  --muted: #6f747a;
  --line: #d9dde1;
  --blue: #35455a;
  --blue-light: #eef4fa;
  --accent: #d15242;
  --white: #ffffff;
  --shell: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --body: "Poppins", sans-serif;
  --display: "Krona One", "Poppins", sans-serif;
  --utility: "Montserrat", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

:focus-visible {
  outline: 3px solid #59a8d7;
  outline-offset: 4px;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: .75rem 1rem;
  background: var(--white);
  color: var(--black);
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

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

.section-pad { padding-block: 6.5rem; }
.eyebrow {
  margin-bottom: .8rem;
  color: rgba(255,255,255,.76);
  font-family: var(--utility);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow--dark { color: var(--accent); }
.prose { color: #45494e; }
.prose h2, .about-copy h2, .equipment__copy h2 {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -.045em;
}
.check-list { list-style: none; margin: 1.5rem 0 2rem; padding: 0; }
.check-list li { position: relative; padding-left: 1.6rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; font-weight: 700; }
.text-link { color: var(--ink); font-family: var(--utility); font-size: .8rem; font-weight: 700; text-decoration: none; text-transform: uppercase; }
.text-link span { margin-left: .35rem; }

.display-title {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -.035em;
}

.section-title {
  margin-bottom: 1.75rem;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4.1vw, 3.7rem);
  font-weight: 400;
  letter-spacing: -.045em;
}

.red-rule {
  width: 120px;
  height: 2px;
  margin: 1.7rem 0 2rem;
  border: 0;
  background: var(--accent);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .75rem 1.7rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--utility);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.button:hover { background: var(--ink); color: var(--white); transform: translateY(-1px); }
.button--dark { background: var(--black); color: var(--white); border-color: var(--black); }
.button--dark:hover { background: var(--blue); border-color: var(--blue); }
.button--light { border-color: var(--white); background: var(--white); color: var(--black); }
.button--light:hover { background: transparent; color: var(--white); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  width: 100%;
  color: var(--white);
  background: var(--black);
}
.home .site-header {
  position: fixed;
  inset: 0 0 auto;
  background: transparent;
}

body:not(.home) { padding-top: 122px; }
#section-about, #section-services, #section-drone { scroll-margin-top: 122px; }

.topline {
  height: 40px;
  border-bottom: 1px solid rgba(255,255,255,.16);
  background: rgba(16,18,20,.98);
  font-size: .78rem;
}
.topline__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topline__meta { display: flex; align-items: center; gap: 2.5rem; }
.topline a { color: #d9dcdf; text-decoration: none; }
.topline a:hover { color: var(--white); }

.mainnav {
  height: 82px;
  background: rgba(6,6,6,.92);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.home .mainnav { background: rgba(5,5,5,.44); }
.mainnav__inner {
  height: 100%;
  display: grid;
  grid-template-columns: 230px 1fr 180px;
  align-items: center;
  gap: 2rem;
}

.brand { display: inline-flex; align-items: center; width: 160px; }
.brand img { width: 100%; height: auto; }

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.nav a {
  position: relative;
  padding: .5rem 1.15rem;
  color: #f3f3f3;
  font-family: var(--utility);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  text-transform: uppercase;
}
.nav a + a::before {
  content: "/";
  position: absolute;
  left: -.1rem;
  color: rgba(255,255,255,.6);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--white); }
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  inset: auto 1.1rem .1rem;
  height: 1px;
  background: var(--white);
}

.mainnav__quote { justify-self: end; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Home hero */
.home-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-image: linear-gradient(90deg, rgba(0,0,0,.36), rgba(0,0,0,.08)), url("/assets/images/construction-hero.jpg");
  background-size: cover;
  background-position: center 57%;
}
.home-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 7rem;
}
.home-hero h1 {
  max-width: 880px;
  margin: 0 0 1.4rem;
  font-family: var(--body);
  font-size: clamp(3.3rem, 6vw, 5.25rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -.04em;
}
.home-hero__lede {
  max-width: 950px;
  margin-bottom: 1.8rem;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.5;
}
.hero-rail {
  position: absolute;
  top: 48%;
  z-index: 3;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .03em;
  writing-mode: vertical-rl;
}
.hero-rail--left { left: .7rem; transform: rotate(180deg) translateY(50%); }
.hero-rail--right { right: .7rem; transform: translateY(-50%); }
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  width: 13px;
  height: 13px;
  border: 2px solid var(--white);
  border-radius: 50%;
  transform: translateX(-50%);
  color: transparent;
  font-size: 0;
}

/* Homepage sections */
.photo-banner {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: flex-end;
  padding-block: 5rem;
  border-top: clamp(18px, 2vw, 28px) solid var(--white);
  color: var(--white);
  background-image: linear-gradient(90deg, rgba(0,0,0,.42), rgba(0,0,0,.05)), url("/assets/images/costco-hero.jpg");
  background-size: cover;
  background-position: center;
}
.photo-banner h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5.3vw, 4.7rem);
  font-weight: 400;
  letter-spacing: -.045em;
}

.about-copy { padding: 6.5rem 0; }
.about-copy__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}
.about-copy__intro {
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  line-height: 1.55;
  font-weight: 500;
}
.feature-list { margin: 1.5rem 0 2rem; padding-left: 1.2rem; }
.feature-list li { margin-bottom: .45rem; }

.services { padding: 6.5rem 0; background: #fff; }
.services__heading,
.services__intro,
.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 4rem;
}
.services__heading p, .services__intro p, .section-heading > p { max-width: 520px; font-size: 1.1rem; }
.services__intro h2, .section-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 400;
  letter-spacing: -.05em;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.service-card {
  background: var(--white);
  box-shadow: 0 10px 35px rgba(0,0,0,.08);
}
.service-card > img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform .45s ease;
}
.service-card:nth-child(2) > img,
.service-card:nth-child(4) > img { object-position: center 45%; }
.service-card__image {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: #d9dde1;
}
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.service-card:hover .service-card__image img { transform: scale(1.035); }
.service-card__body { padding: 1.6rem 1.5rem 1.8rem; }
.service-card__body > span, .included-grid article > span { color: var(--accent); font-family: var(--utility); font-size: .72rem; font-weight: 700; }
.service-card h3 {
  min-height: 3.2rem;
  margin-bottom: 1rem;
  font-family: var(--utility);
  font-size: 1.15rem;
}
.service-card p { color: #45494e; font-size: .9rem; }

.equipment-title {
  padding: 2.3rem var(--gutter);
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
}
.equipment-title h2 { margin: 0; font-family: var(--utility); font-size: clamp(1.3rem, 2.3vw, 1.65rem); }
.equipment { padding: 2.2rem 0 5rem; }
.equipment__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: start;
}
.equipment__image img { width: 100%; aspect-ratio: 1.05; object-fit: cover; object-position: center; }
.equipment__copy { padding: .15rem 0; }
.equipment__copy p, .equipment__copy li { font-size: .98rem; }
.equipment__copy li { margin-bottom: .4rem; }

.cta {
  padding: 6.5rem 0;
  background: var(--blue);
  color: var(--white);
  text-align: center;
}
.cta h2 {
  max-width: 850px;
  margin: 0 auto 1.2rem;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
}
.cta p { max-width: 700px; margin: 0 auto .8rem; font-size: .72rem; }
.cta .button { margin-top: 1rem; }

/* Shared footer */
.site-footer { padding: 5.5rem 0 2rem; color: var(--white); background: var(--black); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .75fr 1fr; gap: 4rem; }
.footer-brand img { width: 190px; margin-bottom: 1.5rem; }
.footer-brand p { max-width: 390px; color: #b9bbbd; }
.site-footer h2, .site-footer h3 { font-family: var(--utility); font-size: 1rem; text-transform: uppercase; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .35rem; color: #d3d4d5; }
.site-footer a { display: block; margin-bottom: .45rem; color: #d3d4d5; text-decoration: none; }
.site-footer p { color: #b9bbbd; }
.site-footer a:hover { text-decoration: underline; }
.footer-credentials li::before { content: "✓ "; color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.16);
  color: #a9abad;
  font-size: .8rem;
}

/* Pricing */
.page-hero {
  min-height: 375px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem var(--gutter);
  color: var(--white);
  background: var(--blue);
  text-align: center;
}
.page-hero h1 { margin-bottom: 1.2rem; font-size: clamp(2.6rem, 4.4vw, 3.5rem); }
.page-hero p { max-width: 700px; margin: 0 auto; font-size: 1.2rem; line-height: 1.55; }
.pricing-intro { padding: 4rem 0 3rem; background: var(--blue-light); text-align: center; }
.pricing-intro h2 { margin-bottom: .8rem; font-size: clamp(2rem, 3.6vw, 2.7rem); color: var(--blue); }
.pricing-intro p { margin: 0; color: #7b838c; font-size: 1.05rem; }
.pricing-section { padding: 4rem 0 6rem; }
.pricing-section--alt, .pricing-section--blue { background: var(--blue-light); }
.pricing-section h2 { margin-bottom: .6rem; font-size: clamp(2rem, 3vw, 2.7rem); color: var(--blue); }
.pricing-section > .shell > p { color: #69717a; }
.table-wrap { margin-top: 2.4rem; overflow-x: auto; border: 1px solid #cad2da; background: #fff; }
.rate { width: 100%; border-collapse: collapse; }
.rate caption {
  padding: 1rem 1.2rem;
  color: #6e7680;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-align: left;
  text-transform: uppercase;
}
.rate th, .rate td { padding: 1rem 1.2rem; border-bottom: 1px solid #dce1e6; text-align: left; vertical-align: middle; }
.rate thead th { background: var(--blue); color: #fff; font-family: var(--utility); font-size: .85rem; text-transform: uppercase; }
.rate thead small, .rate tbody small { display: block; margin-top: .2rem; font-weight: 400; text-transform: none; }
.rate tbody th { width: 34%; }
.rate .num { font-weight: 700; }
.rate .save { display: inline-block; margin-left: .5rem; color: #23734a; font-size: .74rem; }
.rate .row--quote td { text-align: center; font-weight: 600; }
.included-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.5rem; }
.included-grid article,
.included-card { padding: 1.7rem; border: 1px solid #d5dce3; background: #fff; }
.included-grid article h3 { color: var(--blue); font-size: 1.1rem; }
.included-grid article ul { margin: 1rem 0 0; padding-left: 1.1rem; color: #4f565e; font-size: .9rem; }
.included-grid article li { margin-bottom: .45rem; }
.included-card h3 { color: var(--blue); font-size: 1.1rem; }
.included-card ul { margin: 0; padding-left: 1.1rem; font-size: .9rem; }
.pricing-note { margin-top: 1.7rem; padding: 1.2rem 1.4rem; background: var(--blue-light); }

/* Contact */
.contact-main { padding: clamp(6rem, 13vw, 12rem) 0 7rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(4rem, 8vw, 8rem); align-items: start; }
.contact-copy h1,
.contact-intro h1 {
  margin-bottom: 1.3rem;
  font-family: var(--display);
  font-size: clamp(2.6rem, 4vw, 3.7rem);
  font-weight: 400;
  letter-spacing: -.045em;
}
.contact-copy__lede, .contact-intro > p:not(.eyebrow) { font-size: clamp(1.1rem, 1.7vw, 1.3rem); font-weight: 500; }
.contact-intro address { margin: 2.5rem 0 1rem; font-style: normal; }
.contact-intro > a { display: block; margin-bottom: .35rem; color: var(--ink); text-decoration: none; }
.contact-details { margin-top: 2.7rem; color: #464a4e; }
.contact-details a { text-decoration: none; }
.contact-details a:hover { text-decoration: underline; }
.contact-form { display: grid; gap: 1.1rem; }
.field label { display: block; margin-bottom: .35rem; font-size: .9rem; }
.field input, .field textarea {
  width: 100%;
  border: 1px solid #d0d4d8;
  border-radius: 0;
  background: #fff;
  padding: .9rem 1rem;
  color: var(--ink);
}
.field textarea { min-height: 150px; resize: vertical; }
.required { color: #a93f32; }
.honeypot, .hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-note { margin: -.45rem 0 0; color: #777d83; font-size: .8rem; }
.form-status { min-height: 1.6rem; margin: 0; font-size: .9rem; color: #316244; }

@media (max-width: 1050px) {
  .mainnav__inner { grid-template-columns: 180px 1fr 150px; gap: 1rem; }
  .nav a { padding-inline: .75rem; font-size: .71rem; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .topline { display: none; }
  .site-header, .home .site-header { position: fixed; inset: 0 0 auto; background: transparent; }
  .site-header.site-header--solid { position: fixed; inset: 0 0 auto; background: var(--black); }
  body:not(.home) { padding-top: 64px; }
  #section-about, #section-services, #section-drone { scroll-margin-top: 64px; }
  .mainnav { height: 64px; background: rgba(9,9,9,.3); }
  .site-header--solid .mainnav { background: var(--black); }
  .mainnav__inner { display: flex; justify-content: space-between; gap: 1rem; }
  .brand { width: min(235px, 68vw); }
  .mainnav__quote { display: none; }
  .nav-toggle { display: block; flex: none; }
  .nav {
    position: fixed;
    inset: 64px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem var(--gutter) 1.5rem;
    background: rgba(5,5,5,.98);
    border-top: 1px solid rgba(255,255,255,.15);
  }
  .nav[data-open="true"] { display: flex; }
  .nav a { padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.15); font-size: .85rem; }
  .nav a + a::before, .nav a[aria-current="page"]::after { display: none; }

  .home-hero { min-height: 100svh; background-position: 50% center; }
  .home-hero__content { padding-top: 13rem; align-self: flex-start; }
  .home-hero h1 { max-width: 330px; font-size: clamp(2rem, 9vw, 2.55rem); line-height: 1.18; }
  .home-hero__lede { max-width: 320px; font-size: 1.05rem; line-height: 1.55; }
  .hero-rail, .hero-scroll { display: none; }

  .photo-banner { min-height: 610px; padding-block: 3rem; background-position: 58% center; }
  .photo-banner h2 { max-width: 520px; font-size: clamp(2.35rem, 10vw, 3.4rem); }
  .about-copy__grid, .services__heading, .services__intro, .section-heading, .equipment__grid, .contact-grid { grid-template-columns: 1fr; }
  .about-copy__grid, .services__heading, .services__intro, .section-heading, .contact-grid { gap: 2.5rem; }
  .about-copy, .services { padding-block: 4rem; }
  .services__heading { margin-bottom: 2.5rem; }
  .equipment__image img { max-height: 560px; }
  .footer-grid, .included-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .contact-main { padding-top: 7rem; }

  .rate, .rate tbody, .rate tr, .rate td, .rate th { display: block; width: 100%; }
  .rate thead { display: none; }
  .rate tbody tr { border-bottom: 8px solid var(--blue-light); }
  .rate tbody th { width: 100%; background: #edf1f5; }
  .rate tbody td { display: flex; justify-content: space-between; gap: 1rem; }
  .rate tbody td::before { content: attr(data-label); color: #6c747d; font-size: .78rem; font-weight: 600; text-transform: uppercase; }
  .rate tbody td.na-hide { display: none; }
  .rate .row--quote td { justify-content: center; }
  .rate .row--quote td::before { display: none; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card__image { height: 390px; }
  .page-hero { min-height: 330px; padding-top: 7rem; }
  .pricing-intro { padding-block: 3.2rem; }
  .contact-copy__lede { font-size: 1.15rem; }
}
