:root {
  --ink: #1e211d;
  --muted: #62665f;
  --paper: #f5f1e8;
  --panel: #ffffff;
  --line: #ded4c3;
  --brand: #8f3f1f;
  --brand-dark: #622712;
  --accent: #d59a3a;
  --steel: #334147;
  --shadow: 0 18px 60px rgba(24, 32, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #ffffff;
  background: linear-gradient(180deg, rgba(13, 19, 17, 0.82), rgba(13, 19, 17, 0.18));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 8px;
  background: #ffffff;
  padding: 4px;
}

.nav-links {
  justify-self: center;
  display: flex;
  gap: clamp(14px, 2.2vw, 30px);
  font-size: 0.94rem;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
}

.site-header .header-cta {
  display: none !important;
  padding: 0 18px;
  color: var(--ink);
  background: #ffffff;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

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

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 18, 16, 0.92) 0%, rgba(12, 18, 16, 0.68) 42%, rgba(12, 18, 16, 0.12) 100%),
    linear-gradient(180deg, rgba(12, 18, 16, 0.25), rgba(12, 18, 16, 0.4));
}

.hero-content {
  position: relative;
  width: min(690px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 68px;
  color: #ffffff;
}

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

.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(3rem, 7vw, 6.4rem);
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  border: 0;
  padding: 0 22px;
  cursor: pointer;
  font: inherit;
}

.button.primary {
  color: #ffffff;
  background: var(--brand);
}

.button.primary:hover {
  background: var(--brand-dark);
}

.button.secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  padding: 24px clamp(18px, 4vw, 56px);
  background: #ffffff;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  font-size: 1.04rem;
}

.proof-strip span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: clamp(66px, 9vw, 124px) clamp(18px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.section h2 {
  max-width: 780px;
  font-size: clamp(2.2rem, 4.5vw, 4.25rem);
}

.section p {
  color: var(--muted);
  font-size: 1.05rem;
}

.split > div > p:last-child,
.pricing-copy p,
.contact-section > div > p {
  max-width: 590px;
}

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

.service-grid {
  align-content: start;
}

.service-grid article {
  position: relative;
  min-height: 178px;
  padding: 26px;
  overflow: hidden;
}

.service-grid article::after {
  position: absolute;
  right: 20px;
  bottom: 16px;
  width: 58px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
  opacity: 0.8;
}


.feature-grid article,
.steps article,
.project-gallery article,
.price-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 1px 0 rgba(24, 32, 29, 0.04);
}

.feature-grid article {
  min-height: 190px;
  padding: 24px;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.feature-grid p,
.steps p,
.price-card p {
  margin: 0;
}

.workbench {
  background: #e7ece8;
}

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

.section-heading .eyebrow {
  flex: 0 0 auto;
}

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

.project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.project-gallery article {
  overflow: hidden;
}

.project-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.project-card:hover,
.project-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  outline: none;
}

.project-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.project-gallery div {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
}

.project-gallery p {
  margin: 0;
}

.photo-count {
  display: inline-flex;
  margin-top: auto;
  padding: 6px 10px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--brand);
  font-size: 0.82rem;
  font-weight: 900;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(10, 14, 13, 0.86);
}

.lightbox-panel {
  position: relative;
  width: min(1100px, 100%);
  max-height: calc(100vh - 44px);
  overflow: auto;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  min-height: 40px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  color: #ffffff;
  background: rgba(24, 32, 29, 0.82);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.lightbox-media {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 22px;
  background: #101716;
}

.lightbox-media img {
  width: 100%;
  max-height: 68vh;
  object-fit: contain;
  border-radius: 8px;
  background: #000000;
}

.lightbox-control {
  min-width: 58px;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.lightbox-caption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
}

.lightbox-caption h2 {
  margin: 0 0 4px;
  font-size: 1.35rem;
}

.lightbox-caption p {
  margin: 0;
  color: var(--muted);
}

.lightbox-caption span {
  flex: 0 0 auto;
  color: var(--brand);
  font-weight: 900;
}

.lightbox-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 22px 22px;
}

.lightbox-thumbs button {
  flex: 0 0 84px;
  border: 3px solid transparent;
  border-radius: 8px;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.lightbox-thumbs button[aria-current="true"] {
  border-color: var(--brand);
}

.lightbox-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 5px;
}

.steps article {
  padding: 28px;
}

.steps span {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--brand);
  font-weight: 900;
}

.pricing-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  background: #2f3b3f;
  color: #ffffff;
}

.pricing-band p {
  color: rgba(255, 255, 255, 0.75);
}

.price-card {
  padding: 30px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.price-card .plan-name {
  color: var(--brand);
  font-weight: 900;
  margin-bottom: 20px;
}

.price {
  margin: 10px 0;
  font-size: 4.6rem;
  font-weight: 900;
  line-height: 1;
}

.price span {
  font-size: 2rem;
  vertical-align: super;
}

.price small {
  margin-left: 6px;
  color: var(--muted);
  font-size: 1rem;
}

.setup {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
}

.price-card li::before {
  position: absolute;
  left: 0;
  color: var(--brand);
  content: "✓";
  font-weight: 900;
}

.full {
  width: 100%;
}

.audience {
  background: #ffffff;
}

.trade-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trade-list span {
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--steel);
  background: var(--paper);
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 520px);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  color: var(--brand);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-size: 0.9rem;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfaf7;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(13, 107, 87, 0.18);
  border-color: var(--brand);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #101716;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #ffffff;
  font-weight: 800;
}

@media (max-width: 840px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(12, 18, 16, 0.86), rgba(12, 18, 16, 0.62));
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }

  .proof-strip,
  .split,
  .steps,
  .project-gallery,
  .pricing-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .lightbox {
    padding: 10px;
  }

  .lightbox-panel {
    max-height: calc(100vh - 20px);
  }

  .lightbox-media {
    grid-template-columns: 1fr 1fr;
    padding: 12px;
  }

  .lightbox-media img {
    grid-column: 1 / -1;
    grid-row: 1;
    max-height: 58vh;
  }

  .lightbox-control {
    grid-row: 2;
  }

  .lightbox-caption {
    display: grid;
  }

  .section-heading {
    display: block;
  }
}

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

  .brand {
    gap: 8px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand span:last-child {
    font-size: 0.94rem;
    white-space: nowrap;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 13px;
  }

  .hero-actions,
  .site-footer {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .feature-grid article,
  .steps article,
  .price-card,
  .contact-form {
    padding: 20px;
  }
}

.form-status {
  display: none;
  border-radius: 8px;
  padding: 12px 14px;
  font-weight: 800;
}

.form-status.is-info,
.form-status.is-success,
.form-status.is-error {
  display: block;
}

.form-status.is-info {
  color: var(--steel);
  background: #eef3f1;
}

.form-status.is-success {
  color: #174739;
  background: #dff2ea;
}

.form-status.is-error {
  color: #6f231b;
  background: #f8ded9;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

@media (max-width: 540px) and (hover: none) and (pointer: coarse) {
  .site-header .header-cta {
    display: inline-flex !important;
  }
}
