:root {
  --ink: #111418;
  --muted: #65707a;
  --paper: #f4f1ea;
  --cream: #fbf8f1;
  --white: #ffffff;
  --line: #ded8cb;
  --charcoal: #0b1014;
  --panel: #151b20;
  --blue: #0878ff;
  --blue-dark: #055fc8;
  --amber: #d7952f;
  --green: #1d7a59;
  --rose: #c84e55;
  --shadow: 0 18px 50px rgba(17, 20, 24, 0.1);
  --soft-shadow: 0 10px 28px rgba(17, 20, 24, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(16px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  color: var(--ink);
  background: rgba(251, 248, 241, 0.9);
  box-shadow: 0 12px 34px rgba(17, 20, 24, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 154px;
  min-height: 44px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #040506;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(10, 12, 14, 0.42);
  font-size: 0.86rem;
  font-weight: 800;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled .site-nav {
  border-color: rgba(17, 20, 24, 0.1);
  background: rgba(255, 255, 255, 0.74);
}

.site-nav a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border-radius: 6px;
  padding: 0 12px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible {
  background: rgba(17, 20, 24, 0.06);
}

.site-nav .nav-cta {
  background: var(--blue);
  color: var(--white);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--blue-dark);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  color: currentColor;
  background: rgba(10, 12, 14, 0.3);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.hero > img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero > img {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 9, 10, 0.94) 0%, rgba(7, 9, 10, 0.74) 42%, rgba(7, 9, 10, 0.18) 78%),
    linear-gradient(180deg, rgba(7, 9, 10, 0.18) 0%, rgba(7, 9, 10, 0.16) 48%, rgba(7, 9, 10, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 82px);
  padding: 132px 0 clamp(70px, 9vw, 108px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 13px;
  color: var(--amber);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(3.7rem, 8vw, 7.4rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.06rem, 1.55vw, 1.26rem);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 17px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--blue);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--blue-dark);
  outline: none;
}

.submit-button {
  position: relative;
  gap: 10px;
}

.button-loader {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 800ms linear infinite;
}

.submit-button.is-loading .button-loader {
  display: inline-block;
}

.submit-button.is-loading {
  cursor: wait;
  opacity: 0.86;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.15);
  outline: none;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.hero-proof span,
.contact-points span {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 6px 11px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
  font-weight: 800;
}

.signal-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 22px clamp(18px, 6vw, 82px);
  color: var(--cream);
  background: #07090b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.signal-strip p {
  max-width: 790px;
  margin: 0;
  color: rgba(251, 248, 241, 0.78);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
}

.signal-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.signal-strip span {
  border: 1px solid rgba(251, 248, 241, 0.18);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  padding: clamp(66px, 8vw, 116px) clamp(18px, 6vw, 82px);
}

.section > *,
.feature-band > *,
.cta > * {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.62fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: start;
  background: var(--cream);
}

.intro h2,
.feature-copy h2,
.cta h2 {
  max-width: 780px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.35rem, 4.4vw, 4.55rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.intro > p,
.feature-copy p,
.cta p {
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 0.72fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 800px;
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.35rem, 4.35vw, 4.5rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
}

.services {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(244, 241, 234, 0)),
    var(--paper);
}

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

.service-card {
  min-height: 346px;
  display: flex;
  position: relative;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 2.6vw, 30px);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--soft-shadow);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--blue);
}

.service-card:nth-child(2)::before {
  background: var(--amber);
}

.service-card:nth-child(3)::before {
  background: var(--green);
}

.service-number {
  width: fit-content;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 900;
}

.service-card:nth-child(2) .service-number {
  color: var(--amber);
}

.service-card:nth-child(3) .service-number {
  color: var(--green);
}

.service-card h3,
.rental-grid h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  line-height: 1.18;
}

.service-card p,
.rental-grid p,
.process-list p {
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 7px;
  margin: 16px 0 24px;
  padding: 0;
  list-style: none;
}

.service-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.service-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.service-card:nth-child(2) li::before {
  background: var(--amber);
}

.service-card:nth-child(3) li::before {
  background: var(--green);
}

.service-card a {
  width: fit-content;
  margin-top: auto;
  color: var(--blue-dark);
  font-weight: 900;
  text-decoration-color: var(--amber);
  text-underline-offset: 5px;
}

.work-showcase {
  position: relative;
  padding-top: clamp(58px, 7vw, 92px);
  padding-bottom: clamp(58px, 7vw, 92px);
  color: var(--cream);
  background: var(--charcoal);
  overflow: hidden;
}

.work-showcase .section-heading h2 {
  max-width: 700px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.work-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(251, 248, 241, 0.12);
  border-radius: 8px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.work-card:hover .work-image img,
.work-card:focus-visible .work-image img {
  transform: scale(1.04);
}

.work-card:focus-visible {
  outline: 3px solid rgba(8, 120, 255, 0.5);
  outline-offset: 4px;
}

.work-image {
  display: block;
  min-height: 150px;
  overflow: hidden;
  background: #24292e;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 260ms ease;
}

.work-meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
}

.work-meta strong,
.work-meta small {
  display: block;
}

.work-meta strong {
  font-size: 1.02rem;
  line-height: 1.2;
}

.work-meta small {
  margin-top: 5px;
  color: rgba(251, 248, 241, 0.62);
  font-size: 0.84rem;
  font-weight: 700;
}

.visit-label {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 7vw, 88px);
  align-items: center;
  padding: clamp(66px, 8vw, 112px) clamp(18px, 6vw, 82px);
  color: var(--ink);
  background: var(--cream);
}

.process-list {
  display: grid;
  gap: 10px;
}

.process-list div {
  padding: 21px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--amber);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
}

.process-list span {
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
}

.rentals {
  color: var(--cream);
  background: #111816;
}

.rentals .section-heading h2 {
  max-width: 840px;
}

.rental-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.rental-grid article {
  min-height: 180px;
  padding: 20px;
  border: 1px solid rgba(251, 248, 241, 0.12);
  border-top: 4px solid var(--green);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.rental-grid article:nth-child(2) {
  border-top-color: var(--amber);
}

.rental-grid article:nth-child(3) {
  border-top-color: var(--rose);
}

.rental-grid article:nth-child(4) {
  border-top-color: var(--blue);
}

.rental-grid p {
  color: rgba(251, 248, 241, 0.66);
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(30px, 7vw, 86px);
  padding: clamp(66px, 8vw, 112px) clamp(18px, 6vw, 82px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0)),
    var(--paper);
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.contact-points span {
  border-color: rgba(17, 20, 24, 0.12);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin-top: 24px;
}

.contact-links a {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  border-color: rgba(8, 120, 255, 0.42);
  background: var(--white);
  outline: none;
}

.social-icon {
  display: inline-grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
}

.contact-links a:nth-child(2) .social-icon {
  background: #25d366;
}

.contact-links a:nth-child(3) .social-icon {
  background: #e4405f;
}

.contact-links a:nth-child(4) .social-icon {
  background: #1877f2;
}

.social-icon svg,
.footer-socials svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: clamp(20px, 2.8vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  background: var(--cream);
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(8, 120, 255, 0.14);
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 6vw, 82px);
  color: var(--white);
  background: #050708;
}

.footer-logo {
  width: 154px;
  max-width: 52vw;
  padding: 7px 10px;
  border-radius: 8px;
  background: #050607;
}

.footer-links,
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-socials {
  gap: 8px;
}

.footer-socials a {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.footer-socials a:nth-child(1) {
  background: var(--blue);
}

.footer-socials a:nth-child(2) {
  background: #25d366;
}

.footer-socials a:nth-child(3) {
  background: #e4405f;
}

.footer-socials a:nth-child(4) {
  background: #1877f2;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  filter: brightness(1.08);
  outline: none;
}

@media (max-width: 960px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 18px;
    display: none;
    width: min(290px, calc(100vw - 36px));
    padding: 14px;
    border-color: rgba(17, 20, 24, 0.1);
    color: var(--ink);
    background: var(--cream);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .hero {
    min-height: 710px;
  }

  .hero-content {
    padding-bottom: 70px;
  }

  .signal-strip,
  .intro,
  .feature-band,
  .cta {
    grid-template-columns: 1fr;
  }

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

  .work-card {
    grid-template-columns: 1fr;
  }

  .work-image {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand {
    width: 134px;
    min-height: 40px;
  }

  .hero {
    min-height: 660px;
  }

  .hero > img {
    object-position: 58% center;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin-inline: 14px;
  }

  h1 {
    font-size: clamp(3.4rem, 17vw, 5rem);
  }

  .button {
    width: 100%;
  }

  .section-heading,
  .work-showcase .section-heading {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .work-grid,
  .rental-grid,
  .contact-links {
    grid-template-columns: 1fr;
  }

  .service-card,
  .rental-grid article {
    min-height: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
