:root {
  --red: #c5211e;
  --red-dark: #a31b18;
  --black: #111111;
  --text: #2a2a2a;
  --muted: #5e5e5e;
  --cream: #f9f7f2;
  --cream-2: #f5f2ee;
  --beige: #efebe4;
  --line: #e4dfd7;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(40, 28, 20, 0.1);
  --header-h: 84px;
  --radius: 14px;
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

em {
  font-style: normal;
  color: var(--red);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--black);
  color: var(--white);
  padding: 8px 16px;
  z-index: 1000;
}

.skip-link:focus {
  left: 8px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249, 247, 242, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(40, 28, 20, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 0.92rem;
  color: var(--black);
}

.logo-mark {
  width: 34px;
  height: 34px;
}

.site-nav {
  display: flex;
  gap: 28px;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  padding: 8px 0;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 18px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--red);
}

.site-nav a.active::after,
.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: var(--black);
  transition: 0.2s;
}

.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 16px 26px;
  transition: background 0.2s, transform 0.15s;
}

.btn-red {
  background: var(--red);
  color: var(--white);
}

.btn-red:hover {
  background: var(--red-dark);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  width: 100%;
  justify-content: center;
}

.btn-dark:hover {
  background: #2a2a2a;
}

.btn-dark .arrow {
  color: var(--red);
  font-size: 1.1rem;
}

.btn:active {
  transform: translateY(1px);
}

/* Hero */
.hero {
  padding: 48px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.3rem, 4.4vw, 3.7rem);
  line-height: 1.12;
  color: var(--black);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-copy p {
  max-width: 34rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.hero .btn {
  margin: 18px 0 10px;
}

.script {
  font-family: "Caveat", cursive;
  font-size: 1.7rem;
  color: var(--black);
  font-weight: 500;
}

.hero-visual img {
  width: 100%;
  height: min(540px, 58vw);
  object-fit: cover;
  object-position: center;
}

/* Section titles */
.section-title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.35rem;
  color: var(--black);
  margin-bottom: 48px;
}

.section-title span {
  position: relative;
}

.section-title span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -16px;
  width: 42px;
  height: 1px;
  background: var(--black);
  transform: translateX(-50%);
}

.section-title.lined {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.section-title.lined::before,
.section-title.lined::after {
  content: "";
  height: 1px;
  background: var(--line);
}

.section-title.lined span::before {
  display: none;
}

.eyebrow {
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 12px;
}

.eyebrow::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: var(--red);
  margin-top: 8px;
}

.process .eyebrow,
.process .eyebrow::after,
.process .lead,
.process h2 {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.process .eyebrow::after {
  margin-inline: auto;
}

.lead {
  max-width: 46rem;
  color: var(--muted);
  margin-bottom: 48px;
}

/* Recognize */
.recognize {
  padding: 40px 0 80px;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.icon-card {
  text-align: center;
}

.icon-card svg,
.cards-4 svg,
.help-grid svg,
.values svg {
  width: 48px;
  height: 48px;
  color: var(--black);
  margin-bottom: 16px;
}

.icon-card h3,
.cards-4 h3,
.values h3,
.help-grid h3,
.service-col h3 {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 10px;
}

.icon-card h3 span,
.help-grid h3 span,
.service-col h3 span {
  color: var(--red);
  margin-right: 6px;
}

.card-lead {
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.icon-card p,
.cards-4 p,
.values p,
.help-grid p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Quote */
.quote-strip {
  background: var(--cream-2);
  padding: 56px 0;
  text-align: center;
}

.quote-strip p {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
  max-width: 40rem;
  margin: 0 auto;
}

/* Direction */
.direction {
  padding: 88px 0;
}

.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.cards-4 article {
  padding: 8px 28px;
  text-align: left;
  border-right: 1px solid var(--line);
}

.cards-4 article:first-child {
  padding-left: 0;
}

.cards-4 article:last-child {
  border-right: 0;
  padding-right: 0;
}

/* Help */
.help {
  padding: 24px 0 88px;
}

.help h2,
.services h2,
.process h2,
.about h2,
.contact h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  color: var(--black);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 56px;
}

.help-grid article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
}

.help-grid svg {
  margin: 0;
}

/* CTA bands */
.cta-band {
  background: var(--cream-2);
  padding: 72px 0;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  text-transform: none;
  margin-bottom: 12px;
  color: var(--black);
}

.cta-band p {
  max-width: 36rem;
  margin: 0 auto 28px;
  color: var(--muted);
}

.cta-band.inner {
  margin-top: 64px;
}

.accent-title {
  color: var(--red) !important;
  font-size: 1.35rem !important;
  text-transform: none !important;
}

/* Services */
.services {
  padding: 96px 0 0;
}

.services > .container > h2 {
  max-width: 18ch;
}

.services > .container > h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--black);
  margin: 16px 0 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-col {
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

.service-col:last-child {
  border-right: 0;
  padding-right: 0;
}

.scribble {
  width: 88px;
  height: 48px;
  color: var(--black);
  margin-bottom: 18px;
}

.service-col .accent {
  color: var(--red);
  font-weight: 600;
  margin-bottom: 14px;
}

.service-col p {
  color: var(--muted);
  font-size: 0.95rem;
}

.price {
  color: var(--red) !important;
  font-weight: 700;
  font-size: 1.15rem !important;
  margin: 22px 0 12px;
}

.note {
  font-size: 0.78rem !important;
  color: var(--muted);
}

/* Process */
.process {
  padding: 96px 0;
}

.process h2 {
  text-align: center;
}

.timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  margin: 16px 0 64px;
  padding-top: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--line);
}

.timeline li {
  position: relative;
}

.step-num {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f3ebe3;
  color: var(--red);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.timeline h3 {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.88rem;
  margin-bottom: 10px;
  color: var(--black);
}

.timeline h3::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--red);
  margin: 10px 0 0;
}

.timeline p {
  color: var(--muted);
  font-size: 0.92rem;
}

.human-banner {
  display: flex;
  gap: 24px;
  align-items: center;
  background: var(--beige);
  padding: 28px 32px;
}

.people-icon {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f8f4ee;
  display: grid;
  place-items: center;
  color: var(--black);
}

.people-icon svg {
  width: 42px;
  height: 42px;
}

.human-banner h3 {
  font-size: 1.05rem;
  color: var(--black);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 6px;
}

.human-banner p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* About */
.about {
  padding: 48px 0 96px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}

.about-copy h2 {
  text-transform: none;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
}

.about-copy p {
  color: var(--muted);
  margin-bottom: 14px;
  max-width: 34rem;
}

.signature {
  font-family: "Caveat", cursive !important;
  font-size: 2.2rem !important;
  color: var(--black) !important;
  margin-top: 20px !important;
  margin-bottom: 0 !important;
}

.brand-small {
  font-size: 0.72rem !important;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--black) !important;
}

.about-photo {
  position: relative;
}

.about-photo img {
  width: 100%;
  height: min(620px, 70vw);
  object-fit: cover;
  object-position: center top;
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--cream) 0%, transparent 14%),
    linear-gradient(0deg, var(--cream) 0%, transparent 12%);
  pointer-events: none;
}

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.values h3 {
  font-size: 0.82rem;
}

/* Contact */
.contact {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
}

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

.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  filter: grayscale(8%);
}

.contact-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(249, 247, 242, 0.88) 0%, rgba(249, 247, 242, 0.78) 42%, rgba(249, 247, 242, 0.94) 70%);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-copy p {
  color: var(--muted);
  max-width: 32rem;
  margin-bottom: 14px;
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
}

.email-link svg {
  width: 22px;
  height: 22px;
}

.email-link:hover {
  text-decoration: underline;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}

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

.form-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--beige);
  display: grid;
  place-items: center;
  color: var(--muted);
}

.form-icon svg {
  width: 22px;
  height: 22px;
}

.form-head h3 {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  color: var(--black);
}

.form-head p {
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  border: 1px solid #ddd7cf;
  background: var(--white);
  font: inherit;
  padding: 12px 14px;
  color: var(--black);
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(197, 33, 30, 0.25);
  border-color: var(--red);
}

.contact-form .check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.8rem;
}

.contact-form .check input {
  width: auto;
  margin-top: 3px;
}

.contact-form .check a {
  color: var(--black);
}

.form-status {
  margin-top: 12px;
  font-size: 0.9rem;
  min-height: 1.2em;
}

.form-status.ok {
  color: #1f7a3a;
}

.form-status.err {
  color: var(--red);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--cream-2);
  padding: 22px 0;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--muted);
}

.footer-row span + span::before,
.footer-row a::before {
  content: "|";
  margin: 0 12px;
  color: #c9c2b8;
}

.footer-row a {
  color: var(--muted);
}

.footer-row a:hover {
  color: var(--red);
}

/* Privacy */
.legal {
  padding: 64px 0 96px;
  max-width: 760px;
}

.legal h1 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: var(--black);
}

.legal h2 {
  font-size: 1.1rem;
  margin: 28px 0 10px;
  color: var(--black);
}

.legal p,
.legal li {
  color: var(--muted);
  margin-bottom: 10px;
}

.legal ul {
  padding-left: 18px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.7s ease forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .cards-3,
  .cards-4,
  .service-grid,
  .values,
  .timeline,
  .help-grid {
    grid-template-columns: 1fr 1fr;
  }

  .timeline::before {
    display: none;
  }

  .cards-4 article,
  .service-col {
    border-right: 0;
    padding: 0 0 24px;
  }

  .section-title.lined {
    grid-template-columns: 1fr;
  }

  .section-title.lined::before,
  .section-title.lined::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 24px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .cards-3,
  .cards-4,
  .service-grid,
  .values,
  .timeline,
  .help-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-visual img,
  .about-photo img {
    height: 320px;
  }

  .human-banner {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
  }

  .footer-row {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }

  .footer-row span + span::before,
  .footer-row a::before {
    display: none;
  }

  .contact-form {
    padding: 22px;
  }
}
