:root {
  --ink: #090d12;
  --coal: #111820;
  --steel: #26323b;
  --mist: #f3f5f2;
  --paper: #fbfaf5;
  --line: #d7d9d3;
  --muted: #5c6870;
  --blue: #123e74;
  --electric: #d9ff43;
  --amber: #f5b43b;
  --rust: #b64b36;
  --green: #287b60;
  --max: 1360px;
  --shadow: 0 24px 80px rgba(9, 13, 18, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(9, 13, 18, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(9, 13, 18, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 56px 56px;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 22px;
  background: rgba(251, 250, 245, 0.93);
  border-bottom: 1px solid rgba(9, 13, 18, 0.12);
  backdrop-filter: blur(18px);
}

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

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

.brand strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.brand-logo {
  width: 48px;
  height: 48px;
  overflow: hidden;
  background: white;
  border: 2px solid var(--ink);
  border-radius: 4px;
  box-shadow: 6px 6px 0 var(--blue);
  flex: 0 0 auto;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  min-width: 82px;
  padding: 10px 12px;
  border-radius: 4px;
  color: #2b363e;
  font-weight: 800;
  text-align: center;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--ink);
  color: white;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: white;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  max-width: var(--max);
  margin: 0 auto;
  color: white;
  background: var(--ink);
}

.home-hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  gap: 42px;
  align-items: center;
  padding: 76px 24px 56px;
}

.page-hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding: 78px 24px 62px;
}

.no-photo-hero {
  background:
    linear-gradient(135deg, rgba(217, 255, 67, 0.12), transparent 34%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 18px),
    var(--ink);
}

.no-photo-hero::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--electric), var(--blue), var(--amber));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  min-width: 0;
}

.hero-content.compact {
  max-width: 900px;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: 5.15rem;
  line-height: 0.93;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.page-hero h1 {
  font-size: 4.45rem;
}

.hero-text,
.page-hero p {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.hero-text {
  margin: 24px 0 26px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--electric);
}

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

.cta-actions {
  gap: 18px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border: 0;
  border-radius: 4px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  background: var(--electric);
  color: var(--ink);
  box-shadow: 8px 8px 0 rgba(255, 255, 255, 0.16);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.button.secondary {
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
}

.button.dark {
  background: var(--ink);
  color: white;
  box-shadow: 8px 8px 0 var(--electric);
}

.hero-visual {
  z-index: 2;
  display: grid;
  gap: 18px;
  align-content: center;
}

.mascot-logo {
  width: min(100%, 390px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.hero-ticket {
  display: grid;
  gap: 10px;
  width: min(100%, 390px);
  padding: 18px;
  background: rgba(251, 250, 245, 0.94);
  border-top: 7px solid var(--electric);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-ticket strong {
  font-size: 1.15rem;
}

.hero-ticket span {
  padding-top: 9px;
  border-top: 1px solid var(--line);
  color: var(--steel);
  font-weight: 800;
}

.page-hero-badge {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 12px;
  width: 220px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.94);
  border-top: 7px solid var(--electric);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.page-hero-badge img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.page-hero-badge span {
  font-weight: 900;
  text-align: center;
}

.proof-strip,
.section,
.project-feature,
.service-band,
.cta-panel,
.process-panel,
.site-footer {
  max-width: var(--max);
  margin: 0 auto;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--ink);
  color: white;
}

.proof-strip div {
  min-height: 138px;
  padding: 22px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-strip span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--electric);
  font-weight: 900;
}

.proof-strip strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.1;
}

.proof-strip p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.section {
  padding: 82px 24px;
}

.intro-section {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 54px;
  align-items: start;
}

h2 {
  margin: 0;
  font-size: 3.8rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.1;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-copy p:first-child {
  margin-top: 0;
}

.project-feature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-photo {
  min-height: 560px;
}

.feature-photo img,
.process-image img,
.service-photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 20px;
  padding: 56px;
}

.feature-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 18px;
}

.photo-card {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  background: var(--coal);
  box-shadow: var(--shadow);
}

.photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card.tall {
  min-height: 560px;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(180deg, transparent, rgba(9, 13, 18, 0.86));
}

.photo-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  gap: 6px;
  padding: 22px;
  color: white;
}

.photo-card strong {
  font-size: 1.1rem;
}

.photo-card span {
  color: rgba(255, 255, 255, 0.78);
}

.service-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: 78px;
  background: var(--line);
  padding: 1px;
}

.service-band article {
  min-height: 260px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(217, 255, 67, 0.14), transparent 38%),
    white;
}

.service-band span {
  display: inline-flex;
  margin-bottom: 26px;
  padding: 8px 10px;
  background: var(--ink);
  border-radius: 4px;
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-band p {
  color: var(--muted);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 64px;
  padding: 28px 32px;
  background: var(--blue);
  color: white;
  box-shadow: var(--shadow);
}

.cta-panel > div {
  display: grid;
  gap: 18px;
}

.cta-panel .cta-actions {
  margin-top: 10px;
  gap: 16px;
}


.cta-panel .eyebrow {
  color: var(--electric);
}

.cta-panel .cta-copy {
  margin: 18px 0 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.7;
}

.cta-panel .cta-actions {
  margin-top: 24px;
  gap: 16px;
}

.dark-panel {
  grid-template-columns: 1fr auto;
  background:
    linear-gradient(135deg, var(--ink), #142438 55%, #243313),
    var(--ink);
}

.service-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  padding-top: 1px;
  padding-bottom: 1px;
}

.service-row {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 30px;
  align-items: start;
  padding: 38px;
  background: white;
}

.service-row h2 {
  font-size: 2.5rem;
}

.service-row p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.service-number {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  background: var(--electric);
  color: var(--ink);
  font-weight: 900;
}

.process-panel {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  margin-top: 70px;
  margin-bottom: 20px;
  background: var(--ink);
  color: white;
}

.process-image {
  min-height: 560px;
}

.process-content {
  display: grid;
  align-content: center;
  gap: 26px;
  padding: 54px;
}

.process-steps {
  display: grid;
  gap: 16px;
}

.process-steps div {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.process-steps strong {
  display: block;
  color: var(--electric);
}

.process-steps p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.service-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-photo-strip img {
  height: 360px;
  box-shadow: var(--shadow);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 24px;
  align-items: start;
}

.contact-card,
.quote-form {
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-card {
  display: grid;
  gap: 22px;
  padding: 22px;
}

.card-image {
  width: 100%;
  border: 1px solid var(--line);
}

.contact-methods {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.contact-methods a {
  display: grid;
  gap: 4px;
  padding: 18px;
  background: var(--mist);
}

.contact-methods span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-methods strong {
  overflow-wrap: anywhere;
  font-size: 1.16rem;
}

.contact-note {
  padding: 18px;
  background: var(--ink);
  border-left: 6px solid var(--electric);
  color: white;
}

.contact-note p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: 30px;
}

.quote-form h2 {
  margin-bottom: 10px;
  font-size: 3.1rem;
}

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

label {
  display: grid;
  gap: 8px;
  color: #222d34;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid #c8cec8;
  border-radius: 4px;
  background: #fbfbf7;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(217, 255, 67, 0.7);
  border-color: var(--ink);
}

.hidden-field {
  display: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 24px 40px;
  border-top: 1px solid var(--line);
}

.site-footer div:first-child {
  display: grid;
  gap: 2px;
}

.site-footer span,
.footer-links {
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.footer-links a:hover {
  color: var(--ink);
}

@media (max-width: 980px) {
  .hero h1,
  .page-hero h1 {
    font-size: 4.1rem;
  }

  h2,
  .cta-panel h2,
  .quote-form h2 {
    font-size: 2.85rem;
  }

  .intro-section,
  .home-hero,
  .page-hero,
  .project-feature,
  .process-panel,
  .contact-layout,
  .cta-panel,
  .dark-panel {
    grid-template-columns: 1fr;
  }

  .photo-grid,
  .service-band,
  .service-photo-strip,
  .proof-strip {
    grid-template-columns: 1fr;
  }

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

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

  .hero-visual {
    max-width: 420px;
  }

  .page-hero-badge {
    width: 190px;
  }

  .feature-photo,
  .process-image {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  body {
    background-size: 38px 38px;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    overflow: hidden;
    padding: 12px 16px;
  }

  .brand {
    max-width: 100%;
  }

  .brand strong {
    max-width: 190px;
    overflow: hidden;
    font-size: 0.88rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
    box-shadow: 4px 4px 0 var(--blue);
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    width: 100%;
    min-width: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 4px;
    box-shadow: none;
  }

  .site-nav a {
    min-width: 0;
    padding: 9px 6px;
    background: white;
    border: 1px solid var(--line);
    font-size: 0.9rem;
    text-align: center;
  }

  .home-hero {
    padding: 54px 16px 42px;
  }

  .page-hero {
    padding: 54px 16px 42px;
  }

  .hero-content,
  .hero h1,
  .page-hero h1,
  .hero-text,
  .page-hero p {
    width: 100%;
    max-width: 100%;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.28rem;
    line-height: 1;
  }

  h2,
  .cta-panel h2,
  .quote-form h2 {
    font-size: 2.25rem;
  }

  .hero-text,
  .page-hero p,
  .intro-copy {
    font-size: 1rem;
  }

  .hero-text,
  .page-hero p {
    width: auto;
    max-width: 32ch;
  }

  .hero-ticket {
    width: 100%;
  }

  .mascot-logo {
    width: min(100%, 320px);
  }

  .page-hero-badge {
    width: 160px;
    justify-self: start;
  }

  .proof-strip div,
  .section,
  .feature-copy,
  .process-content,
  .service-row,
  .quote-form,
  .contact-card,
  .cta-panel {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .feature-photo,
  .process-image,
  .photo-card,
  .photo-card.tall {
    min-height: 340px;
  }

  .service-photo-strip img {
    height: 300px;
  }

  .button {
    width: 100%;
  }

  .cta-actions {
    width: 100%;
    gap: 14px;
  }

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

  .site-footer {
    display: grid;
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
