:root {
  --ink: #111111;
  --paper: #ffffff;
  --surface: #f8f6f1;
  --muted: #6e6674;
  --label: #3d3a35;
  --line: rgba(40, 39, 36, 0.15);
  --gold: #c7a15a;
  --green: #1f7a4d;
  --red: #a93535;
  --focus: #2f6fed;
  --shadow-card: 0 22px 80px rgba(17, 17, 17, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
}

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

a {
  color: inherit;
}

.site-header {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 48px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.call-link {
  flex: 0 0 auto;
  border: 1px solid var(--ink);
  border-radius: 6px;
  padding: 10px 14px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: clamp(56px, 9vw, 112px) clamp(18px, 4vw, 48px) 0;
  min-height: 640px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(10, 9, 8, 0.78) 0%, rgba(10, 9, 8, 0.55) 42%, rgba(10, 9, 8, 0.15) 68%),
    linear-gradient(0deg, rgba(10, 9, 8, 0.35), rgba(10, 9, 8, 0.1) 40%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  padding-bottom: clamp(40px, 6vw, 72px);
}

.hero-content {
  padding-top: 8px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 13px;
}

.eyebrow--light {
  color: #d9b978;
}

h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(38px, 6.4vw, 68px);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero-sub {
  margin: 20px 0 0;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  padding: 13px 20px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: var(--gold);
  color: #111111;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

/* ---------- Quote card ---------- */

.quote-card {
  background: var(--paper);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 32px);
  box-shadow: var(--shadow-card);
  color: var(--ink);
}

.quote-card .eyebrow {
  color: var(--gold);
}

.quote-card h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.6vw, 27px);
  font-weight: 600;
}

.card-sub {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

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

label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: var(--label);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 14px;
  letter-spacing: 0;
}

textarea {
  resize: vertical;
  line-height: 1.45;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(47, 111, 237, 0.18);
  border-color: var(--focus);
}

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

/* ---------- Photo dropzone ---------- */

.dropzone {
  border: 1px dashed var(--line);
  border-radius: 6px;
  padding: 16px;
  background: rgba(199, 161, 90, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  cursor: pointer;
}

.dropzone-label {
  display: grid;
  gap: 3px;
}

.dropzone-title {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.dropzone-hint {
  color: var(--muted);
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.dropzone-optional {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dropzone input[type="file"] {
  display: none;
}

.photo-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.photo-previews:empty {
  display: none;
}

.photo-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 9px;
  font-size: 12px;
  background: #fff;
  color: var(--label);
}

.photo-chip button {
  border: 0;
  background: none;
  color: var(--red);
  font-weight: 700;
  cursor: pointer;
  font-size: 13px;
  line-height: 1;
  padding: 0;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.check-row input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 1px;
}

.primary-button {
  width: 100%;
  border: 0;
  border-radius: 6px;
  padding: 14px 16px;
  background: var(--ink);
  color: #fff;
  font: inherit;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}

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

.form-status {
  display: none;
  margin-bottom: 16px;
  border-radius: 6px;
  padding: 12px 13px;
  font-weight: 600;
  line-height: 1.4;
  font-size: 14px;
}

.form-status.success {
  display: block;
  color: var(--green);
  background: #effaf4;
  border: 1px solid #bde3cd;
}

.form-status.error {
  display: block;
  color: var(--red);
  background: #fff1f1;
  border: 1px solid #edc8c8;
}

.fine-print {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

/* ---------- Content sections ---------- */

.section {
  padding: clamp(48px, 7vw, 88px) clamp(18px, 4vw, 48px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-white {
  background: var(--paper);
}

.section-head {
  max-width: 640px;
  margin: 0 0 40px;
}

.section-head h2 {
  margin: 10px 0 14px;
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 600;
  line-height: 1.15;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

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

.step-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--surface);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 14px;
}

.step-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 600;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.detail-figure {
  margin-top: 40px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.detail-figure img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

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

.service-chip {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px 12px;
  background: #fff;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}

.seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seo-links a {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  background: #fff;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 20px clamp(18px, 4vw, 48px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
  background: var(--paper);
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 820px) {
  .site-header,
  footer {
    align-items: flex-start;
  }

  h1 {
    max-width: 14ch;
  }
}

@media (max-width: 620px) {
  .site-header {
    flex-direction: column;
  }

  .call-link {
    width: 100%;
    text-align: center;
  }

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

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