:root {
  --ink: #1f2426;
  --muted: #667074;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --line: #dfe4e2;
  --teal: #007c7a;
  --teal-dark: #005c5a;
  --coral: #e8694f;
  --hot-pink: #ec168c;
  --wood: #b77945;
  --shadow: 0 18px 55px rgba(31, 36, 38, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #fff;
  background: rgba(20, 24, 25, 0.72);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: clamp(118px, 16vw, 176px);
  height: 54px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}

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

.site-nav a {
  padding: 10px 12px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav .nav-cta {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 128px clamp(20px, 6vw, 84px) 72px;
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 22, 23, 0.92) 0%, rgba(18, 22, 23, 0.58) 42%, rgba(18, 22, 23, 0.08) 100%),
    linear-gradient(0deg, rgba(18, 22, 23, 0.55), transparent 44%);
}

.hero-content {
  position: relative;
  max-width: 660px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--hot-pink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 8vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.hero p {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 7px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--hot-pink);
}

.button.primary:hover {
  background: #c90f76;
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.band,
.section {
  padding: 76px clamp(20px, 6vw, 84px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: start;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.intro p:last-child,
.section-heading {
  max-width: 780px;
}

.section-heading {
  margin-bottom: 34px;
}

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

.service-card {
  min-height: 238px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 30px rgba(31, 36, 38, 0.06);
}

.service-card span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--teal);
  font-weight: 800;
}

.service-card.upcoming {
  color: #fff;
  background: linear-gradient(135deg, var(--hot-pink), #263331);
  border-color: transparent;
}

.service-card.upcoming span,
.service-card.upcoming p {
  color: rgba(255, 255, 255, 0.78);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1.15fr);
  gap: 46px;
  align-items: center;
  background: #edf4f1;
}

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

.work-board div {
  min-height: 112px;
  display: grid;
  align-items: end;
  padding: 18px;
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  background: var(--ink);
}

.work-board div:nth-child(2),
.work-board div:nth-child(5) {
  background: var(--teal);
}

.work-board div:nth-child(3),
.work-board div:nth-child(6) {
  background: var(--hot-pink);
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 40px;
  align-items: start;
}

.story-copy {
  max-width: 760px;
}

.testimonial {
  padding: 28px;
  border-left: 5px solid var(--hot-pink);
  background: #fff;
  box-shadow: var(--shadow);
}

.testimonial p {
  font-size: 1.05rem;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 42px;
  background: #263331;
  color: #fff;
}

.quote-copy p,
.quote-copy li {
  color: rgba(255, 255, 255, 0.78);
}

.contact-list {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.contact-list li + li {
  margin-top: 14px;
}

.contact-list strong {
  display: block;
  color: #fff;
  line-height: 1.2;
}

.contact-list a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration-color: rgba(236, 22, 140, 0.75);
  text-underline-offset: 4px;
}

.contact-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--hot-pink);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-icon svg path:first-child:last-child {
  fill: currentColor;
  stroke: none;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
}

.quote-form label {
  display: grid;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #cfd7d4;
  border-radius: 6px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.quote-form textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}


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

.map-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1.28fr);
  gap: 34px;
  align-items: stretch;
  padding: 76px clamp(20px, 6vw, 84px);
  background: #fff;
}

.map-copy {
  align-self: center;
}

.map-copy p {
  color: var(--muted);
}

.map-frame {
  min-height: 340px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(31, 36, 38, 0.08);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(20px, 6vw, 84px);
  color: rgba(255, 255, 255, 0.72);
  background: #171b1c;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 16px;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border-radius: 8px;
    background: rgba(20, 24, 25, 0.96);
  }

  .site-nav.open {
    display: flex;
  }

  .intro,
  .split,
  .story,
  .quote-section {
    grid-template-columns: 1fr;
  }

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

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

  .brand small {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-inline: 20px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(18, 22, 23, 0.9), rgba(18, 22, 23, 0.58));
  }

  .service-grid,
  .work-board,
  .quote-form {
    grid-template-columns: 1fr;
  }

  
.site-footer {
    flex-direction: column;
  }
}

.hero-reassurance {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 700;
}

.section-heading p {
  color: var(--muted);
}

.compact-grid .service-card {
  min-height: 180px;
}

.work-board div {
  align-content: end;
  gap: 6px;
}

.work-board strong,
.work-board span {
  display: block;
}

.work-board span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 500;
}

.why-section,
.faq-section {
  background: #fff;
}

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

.faq-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.quote-form input[type="file"] {
  padding: 10px;
}
.turnstile-field {
  min-height: 65px;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.form-note[data-type="success"] {
  color: #0f766e;
}

.form-note[data-type="error"] {
  color: #b42318;
}