:root {
  --paper: #fffaf5;
  --cream: #f4eadc;
  --ink: #2b2523;
  --muted: #756963;
  --rose: #9d3f4c;
  --rose-dark: #742b35;
  --sage: #6d8170;
  --gold: #b88a52;
  --line: rgba(43, 37, 35, 0.14);
  --shadow: 0 24px 80px rgba(43, 37, 35, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 58px);
  color: #fff;
  background: linear-gradient(rgba(43, 37, 35, 0.58), rgba(43, 37, 35, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  font-weight: 800;
  font-size: 13px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  font-size: 14px;
}

nav a {
  color: rgba(255, 255, 255, 0.88);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #3c302c;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(27, 22, 20, 0.74) 0%, rgba(27, 22, 20, 0.36) 44%, rgba(255, 250, 245, 0.2) 100%),
    linear-gradient(0deg, rgba(27, 22, 20, 0.54) 0%, rgba(27, 22, 20, 0) 36%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 clamp(18px, 6vw, 78px) 8svh;
  color: #fff;
}

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

.hero .eyebrow {
  color: #f0cc9a;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.96;
  font-weight: 500;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.04;
  font-weight: 500;
}

h3 {
  margin: 14px 0 10px;
  font-size: 23px;
  line-height: 1.15;
}

.hero-content > p {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button span {
  font-size: 19px;
  line-height: 1;
}

.primary {
  color: #fff;
  background: var(--rose);
  box-shadow: 0 14px 36px rgba(116, 43, 53, 0.28);
}

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

.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(12px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin: 36px 0 0;
}

.hero-stats div {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-stats dt {
  font-size: 28px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.trust-band p {
  margin: 0;
  padding: 20px clamp(14px, 3vw, 30px);
  background: #ffffff;
  color: var(--rose-dark);
  font-weight: 800;
  text-align: center;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 108px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.85fr);
  gap: clamp(30px, 7vw, 86px);
  align-items: start;
}

.intro > p,
.lead-copy > p,
.steps span,
.creations p {
  color: var(--muted);
  font-size: 17px;
}

.creations {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.creations article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(43, 37, 35, 0.08);
}

.creations span {
  color: var(--sage);
  font-weight: 900;
}

.process {
  background: #eef2ec;
}

.process-copy {
  padding-bottom: 34px;
}

.steps {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 clamp(58px, 8vw, 108px);
  list-style: none;
  counter-reset: step;
}

.steps li {
  display: grid;
  grid-template-columns: 56px minmax(180px, 0.35fr) minmax(240px, 1fr);
  gap: 22px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(43, 37, 35, 0.16);
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--sage);
  font-weight: 900;
}

.steps strong {
  font-size: 22px;
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 7vw, 84px);
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 112px) 0;
  align-items: start;
}

.lead-copy {
  position: sticky;
  top: 100px;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-strip a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--rose-dark);
  background: #fff;
  font-weight: 800;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.wide {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(43, 37, 35, 0.2);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fffaf7;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(157, 63, 76, 0.18);
  border-color: var(--rose);
}

.lead-form .button {
  border: 0;
  font: inherit;
}

.form-note {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 58px);
  color: #fff;
  background: var(--ink);
}

footer span {
  color: rgba(255, 255, 255, 0.72);
}

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

  nav {
    display: none;
  }

  .hero {
    min-height: 92svh;
  }

  .hero img {
    object-position: 38% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(27, 22, 20, 0.82), rgba(27, 22, 20, 0.4)),
      linear-gradient(0deg, rgba(27, 22, 20, 0.64), rgba(27, 22, 20, 0));
  }

  .hero-content {
    margin-bottom: 5svh;
  }

  .hero-stats,
  .trust-band,
  .intro,
  .creations,
  .lead-section {
    grid-template-columns: 1fr;
  }

  .trust-band p {
    text-align: left;
  }

  .lead-copy {
    position: static;
  }

  .steps li {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
  }

  .steps span {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: clamp(36px, 11vw, 46px);
    line-height: 1;
  }

  .hero-actions,
  .contact-strip,
  footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-content {
    margin-bottom: 4svh;
  }

  .hero-content > p {
    margin-top: 16px;
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
  }

  .hero-stats div {
    padding: 11px 10px;
  }

  .hero-stats dt {
    font-size: 22px;
  }

  .hero-stats dd {
    font-size: 11px;
  }

  .lead-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}
