:root {
  --ink: #132212;
  --muted: #5f675b;
  --sage: #6e7d68;
  --sage-dark: #53604e;
  --paper: #f4f4f0;
  --soft: #deded8;
  --line: #c7c8bf;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(19, 34, 18, 0.12);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

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

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

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 clamp(20px, 4vw, 56px);
  background: rgba(244, 244, 240, 0.92);
  border-bottom: 1px solid rgba(19, 34, 18, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  padding: 12px 0;
}

.site-nav a:hover {
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 78px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #11130f;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, #11130f 0%, rgba(17, 19, 15, 0.96) 32%, rgba(17, 19, 15, 0.58) 62%, rgba(17, 19, 15, 0.16) 100%),
    url("https://cdn.myportfolio.com/db9844a9-b52b-4993-9873-5a4ccbb2667a/de569a01-cdc8-46ab-9afe-c3109a5a103e_rw_600.jpg?h=d1c13321509d5c2b06d95a2089003fca");
  background-position: center, right center;
  background-repeat: no-repeat;
  background-size: cover, auto 100%;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 clamp(32px, 6vw, 70px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.4rem, 10vw, 8.3rem);
  line-height: 0.92;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  line-height: 1;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.hero-subtitle {
  width: min(620px, 100%);
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  font-weight: 700;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  font-weight: 800;
  text-transform: uppercase;
}

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

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

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

.button-secondary:hover {
  border-color: var(--white);
}

.section-pad {
  padding: clamp(68px, 9vw, 120px) clamp(20px, 4vw, 56px);
}

.section-heading {
  width: min(var(--max), 100%);
  margin: 0 auto 34px;
}

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

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: clamp(32px, 6vw, 80px);
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.intro .section-heading,
.intro-copy {
  margin: 0;
}

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

.services {
  background: var(--soft);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.72fr) minmax(0, 1fr);
  gap: 24px;
  min-height: 430px;
  padding: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card > div {
  align-self: center;
  padding: 18px 12px 18px 0;
}

.service-kicker {
  margin-bottom: 8px;
  color: var(--sage);
  font-weight: 800;
  text-transform: uppercase;
}

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

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding-left: 18px;
  border-left: 3px solid var(--sage);
  color: var(--ink);
  font-weight: 700;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.gallery img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: var(--soft);
}

.process {
  color: var(--white);
  background: #182216;
}

.process .eyebrow {
  color: #aeb9a6;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(var(--max), 100%);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.2);
}

.steps article {
  padding: clamp(26px, 4vw, 42px);
  background: #182216;
}

.steps span {
  display: block;
  margin-bottom: 30px;
  color: #aeb9a6;
  font-weight: 800;
}

.steps p {
  color: rgba(255, 255, 255, 0.72);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(var(--max), 100%);
  margin: 0 auto 18px;
}

.proof-button {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 20px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: left;
  text-transform: uppercase;
}

.proof-button:hover,
.proof-button:focus-visible,
.proof-button.is-active {
  color: var(--white);
  background: var(--sage);
  border-color: var(--sage);
  outline: none;
}

.proof-button:focus-visible {
  box-shadow: 0 0 0 4px rgba(110, 125, 104, 0.22);
}

.proof-preview {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 46px);
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: clamp(20px, 3vw, 34px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.proof-label {
  margin-bottom: 12px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-preview h3 {
  max-width: 520px;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  text-transform: uppercase;
}

.proof-preview p:not(.proof-label) {
  color: var(--muted);
  font-size: 1.03rem;
}

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

.proof-images img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  background: var(--soft);
}

.quote {
  background: linear-gradient(180deg, var(--soft), var(--paper));
}

.quote-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 82px);
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.quote-panel > div > p {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: var(--ink);
  font-weight: 700;
}

.contact-list a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #a8aaa0;
  border-radius: 0;
  padding: 15px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(110, 125, 104, 0.22);
  border-color: var(--sage-dark);
}

.contact-form .button {
  width: fit-content;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 4vw, 56px);
  color: var(--paper);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

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

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 980px) {
  .service-grid,
  .quote-panel,
  .intro {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

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

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

  .proof-preview {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 70px;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 22px;
    background: var(--paper);
    border-bottom: 1px solid rgba(19, 34, 18, 0.12);
  }

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

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(19, 34, 18, 0.08);
  }

  .hero {
    min-height: 640px;
  }

  .hero-image {
    background-image:
      linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.26) 44%, rgba(0, 0, 0, 0.82) 100%),
      url("https://cdn.myportfolio.com/db9844a9-b52b-4993-9873-5a4ccbb2667a/de569a01-cdc8-46ab-9afe-c3109a5a103e_rw_600.jpg?h=d1c13321509d5c2b06d95a2089003fca");
    background-position: center 32%;
    background-size: cover;
  }

  .hero-copy {
    width: calc(100% - 32px);
  }

  .button {
    width: 100%;
  }

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

  .service-card img {
    height: 330px;
  }

  .service-card > div {
    padding: 0;
  }

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

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

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

  .proof-button {
    min-height: 68px;
  }

  .proof-images img {
    height: 280px;
  }

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

@media (max-width: 430px) {
  .brand {
    font-size: 1.05rem;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2rem;
  }
}
