:root {
  color-scheme: dark;
  --ink: #071012;
  --ink-soft: #0d191b;
  --forest: #123b38;
  --teal: #1a8178;
  --brass: #d4a85f;
  --paper: #f0f3ef;
  --muted: #a8b3af;
  --line: rgba(240, 243, 239, 0.16);
  --dark-line: rgba(7, 16, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

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

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 76px;
  padding: 12px 4.5%;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 16, 18, 0.88);
  backdrop-filter: blur(18px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.wordmark-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(212, 168, 95, 0.7);
  border-radius: 50%;
  color: var(--brass);
}

.site-header nav {
  display: flex;
  gap: 34px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.site-header nav a,
.text-action,
footer a {
  transition: color 180ms ease;
}

.site-header nav a:hover,
.text-action:hover,
footer a:hover {
  color: var(--brass);
}

.header-cta {
  justify-self: end;
  padding: 10px 16px;
  border: 1px solid rgba(212, 168, 95, 0.72);
  border-radius: 4px;
  color: var(--brass);
  font-size: 14px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.header-cta:hover {
  color: var(--ink);
  background: var(--brass);
}

.page {
  position: relative;
  min-height: 100svh;
  scroll-snap-align: start;
  scroll-margin-top: 76px;
}

.hero-page {
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 7% 72px;
  background: var(--ink);
}

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

.hero-media {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background: rgba(4, 12, 15, 0.56);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(700px, 76%);
}

.kicker {
  margin: 0 0 18px;
  color: var(--brass);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Manrope", Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 72px;
  line-height: 0.98;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 34px;
  color: #d8dfdc;
  font-size: 19px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 4px;
  color: var(--ink);
  background: var(--brass);
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.primary-action:hover {
  transform: translateY(-2px);
  background: #e1bd80;
}

.text-action {
  padding: 10px 0;
  border-bottom: 1px solid rgba(240, 243, 239, 0.6);
  font-size: 14px;
  font-weight: 700;
}

.scroll-cue {
  position: absolute;
  z-index: 1;
  right: 4.5%;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.scroll-cue i {
  display: block;
  width: 38px;
  height: 1px;
  background: var(--brass);
}

.services-page {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(440px, 1.22fr);
  gap: 7%;
  align-items: center;
  padding: 120px 7% 72px;
  color: var(--ink);
  background: var(--paper);
}

.section-heading h2,
.process-intro h2,
.quote-heading h2,
.contact-page h2 {
  margin-bottom: 24px;
  font-size: 50px;
  line-height: 1.08;
}

.section-heading > p:last-child,
.process-intro > p,
.quote-heading > p:last-child {
  max-width: 510px;
  color: #53605d;
  font-size: 17px;
  line-height: 1.65;
}

.service-list {
  border-top: 1px solid var(--dark-line);
}

.service-list article {
  display: grid;
  grid-template-columns: 48px 1fr 40px;
  gap: 20px;
  align-items: center;
  min-height: 126px;
  padding: 18px 0;
  border-bottom: 1px solid var(--dark-line);
  transition: padding 180ms ease, background 180ms ease;
}

.service-list article:hover {
  padding-right: 14px;
  padding-left: 14px;
  background: rgba(18, 59, 56, 0.06);
}

.service-number {
  align-self: start;
  padding-top: 8px;
  color: #798581;
  font-size: 13px;
  font-weight: 700;
}

.service-list h3 {
  margin: 0 0 6px;
  font-size: 26px;
}

.service-list p {
  margin: 0;
  color: #62706c;
  font-size: 16px;
  line-height: 1.5;
}

.service-list article > a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--dark-line);
  border-radius: 50%;
  color: var(--forest);
  font-size: 19px;
}

.process-page {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 9%;
  align-items: center;
  padding: 120px 7% 72px;
  background: var(--forest);
}

.process-intro > p {
  margin-bottom: 34px;
  color: #b7c7c3;
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-steps li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  min-height: 150px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.process-steps li > span {
  color: var(--brass);
  font-size: 13px;
  font-weight: 800;
}

.process-steps h3 {
  margin-bottom: 8px;
  font-size: 25px;
}

.process-steps p {
  max-width: 520px;
  margin-bottom: 0;
  color: #b7c7c3;
  font-size: 16px;
  line-height: 1.55;
}

.quote-page {
  padding: 112px 5% 64px;
  color: var(--ink);
  background: #e7ebe7;
}

.quote-heading {
  max-width: 1120px;
  margin: 0 auto 34px;
}

.quote-heading h2 {
  margin-bottom: 10px;
}

.quote-heading > p:last-child {
  margin-bottom: 0;
}

.quote-workspace {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(420px, 1.35fr) minmax(260px, 0.75fr);
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: start;
}

.quote-visual,
.quote-form,
.result-panel {
  border: 1px solid var(--dark-line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.76);
}

.quote-visual,
.quote-form,
.result-panel {
  padding: 18px;
}

.preview-frame {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  background: #dbe2dd;
  cursor: pointer;
  transition: outline-color 180ms ease, background 180ms ease;
}

.preview-frame:hover {
  background: #d2ddd6;
  outline: 2px solid rgba(26, 129, 120, 0.3);
  outline-offset: -2px;
}

.preview-frame:focus-within {
  outline: 3px solid rgba(26, 129, 120, 0.35);
  outline-offset: -3px;
}

.preview-frame img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-frame.has-image img {
  display: block;
}

.preview-frame.has-image::after {
  position: absolute;
  right: 12px;
  bottom: 12px;
  content: "Tap to change photos";
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(10, 18, 24, 0.72);
  color: #f7f1e6;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.preview-frame.has-image .preview-empty {
  display: none;
}

.preview-empty {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 22px;
  text-align: center;
}

.preview-empty p {
  margin: 0;
  color: #66736f;
  font-size: 15px;
  line-height: 1.5;
}

.upload-glyph {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(18, 59, 56, 0.35);
  border-radius: 50%;
  color: var(--forest);
  font-size: 22px;
}

.privacy-note {
  display: flex;
  gap: 9px;
  margin-top: 14px;
  color: #697571;
  font-size: 13px;
  line-height: 1.45;
}

.privacy-note span {
  color: var(--teal);
  font-size: 7px;
}

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

.form-section {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--dark-line);
}

.form-step {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.form-step span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}

.form-step h3 {
  margin: 0;
  font-size: 18px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
}

.quote-visual .preview-frame {
  gap: 0;
  margin-bottom: 0;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(7, 16, 18, 0.22);
  border-radius: 4px;
  padding: 10px 11px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  font-size: 16px;
}

textarea {
  min-height: 94px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(26, 129, 120, 0.25);
  border-color: var(--teal);
}

.upload-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px dashed rgba(18, 59, 56, 0.5);
  border-radius: 4px;
  color: var(--forest);
  background: rgba(18, 59, 56, 0.04);
  cursor: pointer;
}

.upload-box input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.upload-title {
  font-size: 15px;
  font-weight: 800;
}

.upload-meta {
  overflow: hidden;
  max-width: 46%;
  color: #6d7975;
  font-size: 13px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.submit-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 50px;
  padding: 0 18px;
  border: 0;
  border-radius: 4px;
  color: white;
  background: var(--forest);
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease;
}

.submit-button:hover {
  background: var(--teal);
}

.result-panel .kicker {
  margin-bottom: 12px;
}

.quote-result {
  display: grid;
  gap: 12px;
  min-height: 230px;
  align-content: start;
}

.quote-result.empty {
  place-items: center;
  align-content: center;
  color: #6c7874;
  text-align: center;
}

.price {
  color: var(--forest);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 29px;
  font-weight: 800;
}

.quote-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--dark-line);
  font-size: 14px;
}

.quote-row span,
.note {
  color: #687470;
}

.quote-row strong {
  text-align: right;
}

.note {
  font-size: 14px;
  line-height: 1.5;
}

.contact-page {
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 150px 7% 36px;
  background: #9d7043;
}

.contact-page > div {
  align-self: center;
  max-width: 980px;
}

.contact-page .kicker {
  color: #1a2626;
}

.contact-page h2 {
  max-width: 900px;
  margin-bottom: 38px;
  color: white;
  font-size: 62px;
}

.light-action {
  color: var(--paper);
  background: var(--ink);
}

.light-action:hover {
  color: var(--ink);
  background: var(--paper);
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  color: white;
  font-size: 14px;
}

footer p {
  margin: 0;
}

footer > a:last-child {
  justify-self: end;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-content,
  .section-heading,
  .process-intro,
  .quote-heading {
    animation: rise-in 650ms ease both;
  }

  @keyframes rise-in {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

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

  .site-header nav {
    display: none;
  }

  h1 {
    font-size: 58px;
  }

  .services-page,
  .process-page {
    grid-template-columns: 1fr;
    gap: 42px;
    align-content: center;
  }

  .quote-workspace {
    grid-template-columns: minmax(220px, 0.8fr) minmax(420px, 1.4fr);
  }

  .result-panel {
    grid-column: 1 / -1;
  }

  .quote-result {
    min-height: 150px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 66px;
    padding: 10px 18px;
  }

  .header-cta {
    padding: 9px 11px;
  }

  .wordmark {
    font-size: 14px;
  }

  .wordmark-mark {
    width: 30px;
    height: 30px;
  }

  .hero-page,
  .services-page,
  .process-page,
  .quote-page,
  .contact-page {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero-page {
    padding-top: 98px;
    padding-bottom: 52px;
  }

  .hero-media {
    object-position: 62% center;
  }

  .hero-shade {
    background: rgba(4, 12, 15, 0.7);
  }

  .hero-content {
    width: 100%;
  }

  h1 {
    font-size: 43px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .scroll-cue {
    display: none;
  }

  .services-page,
  .process-page {
    padding-top: 100px;
    padding-bottom: 46px;
  }

  .section-heading h2,
  .process-intro h2,
  .quote-heading h2,
  .contact-page h2 {
    font-size: 35px;
  }

  .service-list article {
    grid-template-columns: 36px 1fr 34px;
    gap: 10px;
    min-height: 108px;
  }

  .service-list h3,
  .process-steps h3 {
    font-size: 21px;
  }

  .service-list p {
    font-size: 15px;
  }

  .process-steps li {
    min-height: 126px;
  }

  .quote-page {
    padding-top: 92px;
    padding-bottom: 42px;
  }

  .quote-workspace,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .preview-frame {
    aspect-ratio: 16 / 9;
  }

  .result-panel {
    grid-column: auto;
  }

  .contact-page {
    padding-top: 110px;
    padding-bottom: 24px;
  }

  .contact-page h2 {
    font-size: 42px;
  }

  footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  footer > a:last-child {
    justify-self: start;
  }
}



