:root {
  --ink: #1f2520;
  --moss: #3f5a3f;
  --pine: #173626;
  --clay: #b46243;
  --gold: #d9af58;
  --paper: #f8efd9;
  --mist: #efe4ca;
  --white: #ffffff;
  --shadow: 0 22px 50px rgba(31, 37, 32, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 14px clamp(18px, 4vw, 60px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(12, 65, 45, 0.92), rgba(12, 65, 45, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  font-size: 0.85rem;
  font-weight: 750;
  text-transform: uppercase;
}

.nav a {
  opacity: 0.88;
}

.nav a:hover {
  opacity: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.button.dark {
  border-color: var(--pine);
  background: var(--pine);
  color: var(--white);
}

.button.light {
  border-color: rgba(31, 37, 32, 0.16);
  background: var(--white);
  color: var(--pine);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
  gap: clamp(28px, 4vw, 56px);
  align-items: end;
}

.hero-mark {
  justify-self: end;
  width: min(100%, 260px);
  border-radius: 999px;
  filter: drop-shadow(0 24px 46px rgba(0, 0, 0, 0.28));
}

.hero-mark img {
  width: 100%;
  border-radius: 999px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(12, 45, 31, 0.88), rgba(12, 45, 31, 0.45) 54%, rgba(12, 45, 31, 0.72)),
    url("images/gallery-1.jpg");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  z-index: -1;
  background: linear-gradient(180deg, rgba(246, 241, 232, 0), var(--paper));
}

.hero-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 124px 0 78px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--gold);
}

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-family: Montserrat, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(3.1rem, 6.6vw, 6.4rem);
  line-height: 0.93;
  font-weight: 700;
  text-wrap: balance;
}

.hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 650px) auto;
  align-items: end;
  gap: 30px;
}

.hero-copy p {
  margin-bottom: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

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

.intro {
  width: min(1160px, calc(100% - 36px));
  margin: -46px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--white);
  box-shadow: var(--shadow);
}

.intro-text {
  padding: clamp(28px, 5vw, 54px);
}

.intro-text h2,
.section-heading h2 {
  margin-bottom: 18px;
  color: var(--pine);
  font-family: Montserrat, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
}

.intro-text h2 {
  max-width: 980px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  text-wrap: balance;
}

.intro-text p,
.section-heading p,
.service p,
.process-step p,
.contact p {
  color: #526056;
}

.intro-panel {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(28px, 5vw, 54px);
  background: var(--pine);
  color: var(--white);
}

.stat {
  display: grid;
  gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.stat strong {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.stat span {
  color: rgba(255, 255, 255, 0.82);
}

section {
  padding: clamp(70px, 10vw, 120px) 0;
}

.wrap {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  gap: 18px;
  align-items: start;
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 760px;
}

.kicker {
  margin-bottom: 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(31, 37, 32, 0.14);
}

.pricing {
  padding-top: 0;
}

.pricing-board {
  display: grid;
  gap: 34px;
}

.pricing-category {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-areas:
    "title options options options"
    "note note note note";
  gap: 1px;
  align-items: stretch;
  background: rgba(31, 37, 32, 0.14);
}

.pricing-title {
  grid-area: title;
  min-height: 230px;
  padding: clamp(24px, 3vw, 30px);
  background: var(--pine);
  color: var(--white);
  overflow: hidden;
}

.pricing-title h3 {
  margin-bottom: 12px;
  font-family: Montserrat, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.45rem, 2.6vw, 2.7rem);
  line-height: 1.02;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.pricing-title p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.pricing-body {
  display: contents;
}

.price-card {
  display: grid;
  align-content: start;
  min-height: 230px;
  padding: 28px;
  background: var(--white);
}

.price-card.featured {
  background: #fff9eb;
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.tier {
  margin-bottom: 24px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-card h4 {
  margin: 0 0 10px;
  color: var(--pine);
  font-size: 1.7rem;
}

.price-card p {
  margin-bottom: 0;
  color: #526056;
}

.pricing-note {
  grid-area: note;
  margin: 0;
  padding: 14px 28px;
  background: var(--white);
  color: #526056;
  font-size: clamp(0.78rem, 0.95vw, 0.9rem);
  font-style: italic;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service {
  min-height: 300px;
  padding: 32px;
  background: var(--paper);
}

.service-number {
  display: block;
  margin-bottom: 46px;
  color: var(--clay);
  font-weight: 900;
}

.service h3 {
  margin-bottom: 14px;
  color: var(--pine);
  font-size: 1.32rem;
}

.work-band {
  background: var(--mist);
}

.work-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: stretch;
}

.feature-work {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  color: var(--white);
}

.feature-work img,
.work-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.feature-work::after,
.work-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(23, 54, 38, 0.08), rgba(23, 54, 38, 0.8));
}

.work-caption {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.work-caption h3 {
  margin-bottom: 10px;
  font-family: Montserrat, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.96;
}

.work-caption p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.work-stack {
  display: grid;
  gap: 22px;
}

.work-tile {
  position: relative;
  min-height: 269px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: var(--white);
}

.work-tile h3 {
  margin-bottom: 0;
  font-size: 1.25rem;
}

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

.process-step {
  border-top: 2px solid var(--pine);
  padding-top: 20px;
}

.process-step strong {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--clay);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-step h3 {
  color: var(--pine);
  font-size: 1.18rem;
}

.contact {
  background: var(--pine);
  color: var(--white);
}

.contact .wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
  gap: 42px;
  align-items: center;
}

.contact h2 {
  margin-bottom: 22px;
  font-family: Montserrat, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  line-height: 0.92;
}

.contact p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.contact-box {
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-box a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.contact-box a:last-child {
  border-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 60px);
  background: #101915;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-copy,
  .hero-layout,
  .intro,
  .section-heading,
  .work-grid,
  .contact .wrap {
    grid-template-columns: 1fr;
  }

  .pricing-category {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "options"
      "note";
  }

  .pricing-title {
    min-height: auto;
  }

  .pricing-note {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .hero-mark {
    justify-self: start;
    width: min(240px, 70vw);
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .services-grid,
  .pricing-options,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 901px) and (max-height: 850px) {
  .site-header {
    min-height: 70px;
    padding-block: 10px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .hero-inner {
    padding: 104px 0 56px;
  }

  h1 {
    max-width: 780px;
    font-size: clamp(3rem, 5.8vw, 5.65rem);
    line-height: 0.94;
  }

  .hero-copy {
    grid-template-columns: minmax(0, 560px) auto;
    gap: 20px;
  }

  .hero-mark {
    width: min(100%, 220px);
  }
}

@media (max-width: 620px) {
  .brand span {
    max-width: 160px;
  }

  .site-header {
    min-height: 74px;
    padding-inline: 16px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .button {
    min-height: 42px;
    padding-inline: 15px;
    font-size: 0.72rem;
  }

  .hero-inner {
    width: min(100% - 32px, 1160px);
    padding: 116px 0 96px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 5.8rem);
  }

  .intro {
    width: calc(100% - 24px);
    margin-top: -34px;
  }

  .services-grid,
  .pricing-options,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .pricing-title h3 {
    font-size: clamp(2rem, 11vw, 3.1rem);
  }

  .service {
    min-height: auto;
  }

  .feature-work {
    min-height: 440px;
  }

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