:root {
  --ink: #221c1a;
  --plum: #2e1827;
  --bone: #fff8ef;
  --cream: #f6efe4;
  --gold: #e6b54a;
  --pink: #f2d3ca;
  --sky: #cfe1ec;
  --sage: #d8e5d2;
  --line: rgba(46, 24, 39, .18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--plum);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}

a { color: inherit; }

.page-shell {
  width: min(1680px, calc(100% - 28px));
  margin: 14px auto;
  overflow: hidden;
  background: var(--cream);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(12, 4, 10, .28);
}

.site-header {
  min-height: 126px;
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr auto;
  align-items: center;
  gap: clamp(20px, 4vw, 68px);
  padding: 20px clamp(24px, 5vw, 78px);
  background: var(--plum);
  color: var(--bone);
}

.brand { display: block; width: 100%; max-width: 330px; }
.brand img { display: block; width: 100%; height: auto; }

.positioning {
  margin: 0;
  padding-left: clamp(18px, 3vw, 38px);
  border-left: 3px solid var(--gold);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 600;
  line-height: 1.12;
}

.header-contact,
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.header-contact {
  padding: 0 26px;
  background: var(--gold);
  color: var(--plum);
}

.header-contact:hover,
.button:hover { transform: translateY(-2px); }

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
  padding: clamp(68px, 8vw, 128px) clamp(24px, 7vw, 112px);
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -160px;
  top: -180px;
  border: 64px solid rgba(230, 181, 74, .28);
  border-radius: 50%;
  pointer-events: none;
}

.hero-copy { position: relative; z-index: 1; max-width: 900px; }

.eyebrow {
  margin: 0 0 24px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

h1, h2, .service-card strong, .handled-stamp {
  font-family: "Space Grotesk", Inter, sans-serif;
}

h1 {
  margin: 0;
  font-size: clamp(5rem, 10vw, 10.5rem);
  line-height: .77;
  letter-spacing: -.085em;
  max-width: 8ch;
}

h1 span { display: block; }

.highlight {
  position: relative;
  z-index: 0;
  width: max-content;
}

.highlight::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -.035em;
  right: -.08em;
  bottom: .02em;
  height: .29em;
  background: var(--gold);
  transform: rotate(-1.5deg);
}

.intro {
  max-width: 650px;
  margin: 42px 0 28px;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.55;
}

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

.button { padding: 0 24px; border: 2px solid var(--plum); }
.button-primary { background: var(--plum); color: var(--bone); }
.button-secondary { background: transparent; color: var(--plum); }

.place-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 28px 0 0;
  font-size: .9rem;
  font-weight: 700;
}

.place-line span::before { content: "●"; color: var(--gold); margin-right: 9px; }

.service-stack {
  position: relative;
  min-height: 570px;
  isolation: isolate;
}

.service-card {
  position: absolute;
  width: min(88%, 510px);
  min-height: 190px;
  padding: 28px 32px;
  border: 2px solid var(--plum);
  box-shadow: 12px 12px 0 var(--plum);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 22px;
  align-items: start;
}

.service-card span { grid-row: 1 / 3; font-weight: 800; }
.service-card strong { font-size: clamp(1.75rem, 3vw, 3rem); line-height: .95; letter-spacing: -.055em; }
.service-card small { margin-top: 12px; font-size: .88rem; line-height: 1.4; max-width: 30ch; }
.service-card-pink { background: var(--pink); top: 0; left: 0; transform: rotate(-2.2deg); }
.service-card-sky { background: var(--sky); top: 154px; right: 0; transform: rotate(1.8deg); }
.service-card-sage { background: var(--sage); top: 330px; left: 4%; transform: rotate(-1deg); }

.handled-stamp {
  position: absolute;
  right: -18px;
  bottom: -6px;
  z-index: 4;
  width: 176px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--plum);
  color: var(--bone);
  box-shadow: 0 0 0 12px var(--cream), 0 0 0 14px var(--gold);
  display: grid;
  place-content: center;
  text-align: center;
  transform: rotate(8deg);
}

.handled-stamp span { font-size: 1rem; }
.handled-stamp strong { color: var(--gold); font-size: 1.7rem; letter-spacing: -.06em; }

.reassurance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--gold);
  color: var(--plum);
  border-block: 2px solid var(--plum);
}

.reassurance span {
  padding: 20px 28px;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.reassurance span + span { border-left: 2px solid var(--plum); }

.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(40px, 8vw, 130px);
  align-items: end;
  padding: clamp(70px, 9vw, 140px) clamp(24px, 7vw, 112px);
  background: var(--pink);
}

.contact-panel h2 {
  max-width: 8ch;
  margin: 0 0 26px;
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: .84;
  letter-spacing: -.075em;
}

.contact-panel p:last-child { max-width: 580px; line-height: 1.55; }

.contact-links { display: grid; border-top: 2px solid var(--plum); }

.contact-links a {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 24px 8px;
  border-bottom: 2px solid var(--plum);
  text-decoration: none;
}

.contact-links span { color: rgba(46, 24, 39, .68); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.contact-links strong { overflow-wrap: anywhere; }

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  padding: 26px clamp(24px, 5vw, 78px);
  background: var(--plum);
  color: var(--bone);
  font-size: .84rem;
}

footer p { margin: 0; }
footer p:first-child { color: var(--gold); font-weight: 800; }
footer p:last-child { text-align: right; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: minmax(190px, 280px) 1fr auto; gap: 22px; }
  .hero { grid-template-columns: 1fr; }
  .service-stack { width: min(680px, 100%); margin-inline: auto; }
  .contact-panel { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .page-shell { width: 100%; margin: 0; border-radius: 0; }
  .site-header { min-height: 104px; grid-template-columns: minmax(150px, 220px) auto; padding: 16px 20px; }
  .positioning { grid-column: 1 / -1; grid-row: 2; padding: 10px 0 0; border-left: 0; border-top: 2px solid var(--gold); font-size: .88rem; }
  .positioning br { display: none; }
  .header-contact { min-height: 44px; padding: 0 18px; }
  .hero { padding: 58px 20px 76px; min-height: auto; gap: 64px; }
  h1 { font-size: clamp(4.5rem, 22vw, 7.2rem); }
  .intro { margin-top: 34px; }
  .actions { display: grid; }
  .button { width: 100%; }
  .service-stack { min-height: auto; display: grid; gap: 16px; }
  .service-card { position: relative; inset: auto; width: calc(100% - 12px); min-height: 160px; transform: none; }
  .service-card:nth-child(even) { margin-left: 12px; }
  .handled-stamp { position: relative; right: auto; bottom: auto; margin: 26px auto 0; }
  .reassurance { grid-template-columns: 1fr; }
  .reassurance span + span { border-left: 0; border-top: 2px solid var(--plum); }
  .contact-panel { padding: 72px 20px; }
  .contact-links a { grid-template-columns: 1fr; gap: 7px; }
  footer { grid-template-columns: 1fr; text-align: left; }
  footer p:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
