:root {
  --red: #e95147;
  --red-dark: #c93e36;
  --ink: #1b2230;
  --ink-2: #30394a;
  --muted: #667080;
  --line: #dde1e6;
  --soft: #f4f5f7;
  --soft-red: #fff4f2;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(27, 34, 48, .10);
  --shadow-small: 0 12px 30px rgba(27, 34, 48, .08);
  --radius: 20px;
  --radius-small: 12px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }
h1, h2, h3 { margin: 0 0 .7em; line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(2.65rem, 5.7vw, 5.35rem); max-width: 13ch; }
h2 { font-size: clamp(2rem, 3.6vw, 3.35rem); }
h3 { font-size: 1.28rem; letter-spacing: -.02em; }
p { margin: 0 0 1.25em; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { max-width: 880px; }
.section { padding: 110px 0; }
.section-compact { padding: 72px 0; }
.section-soft { background: var(--soft); }
.section-dark { background: var(--ink); color: var(--white); }
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 1000;
  transform: translateY(-150%); padding: 10px 16px; background: var(--ink); color: white;
}
.skip-link:focus { transform: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.eyebrow {
  margin: 0 0 18px; color: var(--red-dark); font-weight: 750; font-size: .78rem;
  letter-spacing: .15em; text-transform: uppercase;
}
.eyebrow-light { color: #ffaaa4; }
.lead { font-size: clamp(1.12rem, 2vw, 1.35rem); color: var(--muted); max-width: 720px; }
.lead-small { font-size: 1.16rem; color: var(--muted); }
.section-dark .lead-small { color: #bec5cf; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(221,225,230,.82);
  backdrop-filter: blur(14px);
}
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: block; flex: 0 0 auto; }
.brand img { width: 245px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav > a:not(.button) {
  text-decoration: none; font-size: .93rem; font-weight: 650; color: var(--ink-2);
  padding: 31px 0 27px; border-bottom: 3px solid transparent;
}
.main-nav > a:not(.button):hover,
.main-nav > a[aria-current="page"] { color: var(--red-dark); border-bottom-color: var(--red); }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; }
.nav-toggle span:not(.sr-only) { display: block; width: 26px; height: 2px; background: var(--ink); margin: 5px 0; transition: .2s; }

/* Buttons */
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 54px;
  padding: 13px 24px; border: 1px solid var(--red); border-radius: 9px;
  background: var(--red); color: white; text-decoration: none; font-weight: 750;
  box-shadow: 0 9px 24px rgba(233,81,71,.22); transition: transform .2s, background .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); background: var(--red-dark); box-shadow: 0 13px 30px rgba(233,81,71,.30); }
.button-small { min-height: 43px; padding: 9px 17px; font-size: .88rem; }
.button-secondary { color: var(--ink); background: transparent; border-color: var(--line); box-shadow: none; }
.button-secondary:hover { background: var(--soft); color: var(--ink); border-color: #c9ced5; box-shadow: none; }
.button-light { background: white; color: var(--ink); border-color: white; box-shadow: none; }
.button-light:hover { background: #f4f5f7; color: var(--ink); box-shadow: none; }
.button-row { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button-row.centered { justify-content: center; }

/* Hero */
.hero { position: relative; overflow: hidden; background: linear-gradient(135deg, #fff 30%, #f6f7f8 100%); }
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none; opacity: .42;
  background-image: linear-gradient(rgba(27,34,48,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(27,34,48,.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right, transparent, #000 50%, #000);
}
.hero-grid { min-height: 760px; padding: 82px 0; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 85px; position: relative; }
.hero-copy h1 span { color: var(--red); }
.hero-copy .lead { max-width: 670px; }
.trust-list {
  list-style: none; padding: 0; margin: 58px 0 0; display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: 640px; border-top: 1px solid var(--line);
}
.trust-list li { padding: 24px 18px 0 0; display: flex; flex-direction: column; }
.trust-list strong { font-size: 1.42rem; color: var(--ink); }
.trust-list span { font-size: .86rem; color: var(--muted); }
.hero-visual { position: relative; max-width: 510px; margin-left: auto; }
.portrait-card {
  position: relative; overflow: hidden; border-radius: 26px; background: #dfe3e8;
  box-shadow: var(--shadow); transform: rotate(1.2deg);
}
.portrait-card img { width: 100%; aspect-ratio: .79; object-fit: cover; object-position: center top; }
.portrait-caption {
  position: absolute; left: 18px; right: 18px; bottom: 18px; padding: 16px 18px;
  display: flex; flex-direction: column; background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.8); border-radius: 12px; backdrop-filter: blur(12px);
}
.portrait-caption strong { font-size: 1.05rem; }
.portrait-caption span { color: var(--muted); font-size: .84rem; }
.floating-card {
  position: absolute; display: flex; align-items: center; gap: 9px; z-index: 3;
  padding: 12px 15px; background: white; border: 1px solid var(--line); border-radius: 11px;
  box-shadow: var(--shadow-small); font-size: .82rem; font-weight: 700;
}
.floating-card-top { top: 10%; left: -64px; }
.floating-card-bottom { right: -42px; bottom: 22%; }
.status-dot { width: 9px; height: 9px; background: #36a46c; border-radius: 50%; box-shadow: 0 0 0 5px rgba(54,164,108,.14); }
.icon-chip { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 7px; color: white; background: var(--red); }

/* Statements and headings */
.statement { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.statement-grid { display: grid; grid-template-columns: .55fr 1.25fr .75fr; gap: 48px; align-items: start; }
.statement-grid h2 { font-size: clamp(1.75rem, 3vw, 2.65rem); }
.statement-grid > p:last-child { color: var(--muted); }
.section-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 70px; align-items: end; margin-bottom: 48px; }
.section-heading > p { color: var(--muted); }

/* Service cards */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
  position: relative; min-height: 370px; padding: 29px; border: 1px solid var(--line);
  border-radius: var(--radius); background: white; transition: transform .25s, box-shadow .25s, border-color .25s;
}
.service-card:hover { transform: translateY(-6px); border-color: #cdd2d9; box-shadow: var(--shadow-small); }
.service-number { position: absolute; top: 24px; right: 24px; color: #a1a8b3; font-size: .78rem; font-weight: 700; }
.service-icon {
  width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 38px;
  border-radius: 13px; background: var(--soft-red); color: var(--red-dark); font-weight: 850; letter-spacing: -.04em;
}
.service-icon.large { width: 72px; height: 72px; border-radius: 18px; font-size: 1.25rem; }
.service-card p { color: var(--muted); font-size: .95rem; }
.text-link { display: inline-flex; gap: 8px; align-items: center; margin-top: 10px; color: var(--ink); text-decoration: none; font-size: .92rem; font-weight: 750; }
.text-link span { color: var(--red); transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }

/* Process */
.split-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.process-list { list-style: none; padding: 0; margin: 0; }
.process-list li { display: grid; grid-template-columns: 65px 1fr; gap: 22px; padding: 27px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.process-list li:first-child { padding-top: 0; }
.process-list span { color: #ffaaa4; font-size: .76rem; font-weight: 800; }
.process-list h3 { margin-bottom: 5px; }
.process-list p { color: #b9c0ca; margin: 0; }

/* Experience */
.experience-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.experience-grid article {
  grid-column: span 2; padding: 28px; border-top: 3px solid var(--red); background: var(--soft); border-radius: 0 0 var(--radius-small) var(--radius-small);
}
.experience-grid article:nth-child(4), .experience-grid article:nth-child(5) { grid-column: span 3; }
.experience-grid span { color: var(--red-dark); text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; font-weight: 800; }
.experience-grid h3 { margin-top: 18px; }
.experience-grid p { margin: 0; color: var(--muted); font-size: .92rem; }

/* About teaser */
.about-teaser { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.about-image { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-small); }
.about-image img { aspect-ratio: 1 / 1.02; object-fit: cover; object-position: center top; }
blockquote { margin: 25px 0; padding-left: 24px; border-left: 4px solid var(--red); font-size: 1.28rem; line-height: 1.45; font-weight: 580; }

/* CTA */
.cta-section { padding-top: 40px; }
.cta-card {
  padding: 54px 58px; display: flex; justify-content: space-between; align-items: center; gap: 50px;
  color: white; background:
  radial-gradient(circle at 85% 10%, rgba(255,255,255,.15) 0 2px, transparent 3px) 0 0/22px 22px,
  linear-gradient(135deg, var(--red-dark), var(--red));
  border-radius: 24px; box-shadow: 0 25px 55px rgba(201,62,54,.22);
}
.cta-card h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); margin-bottom: 10px; }
.cta-card p { margin: 0; max-width: 660px; color: #ffe8e5; }

/* Page hero */
.page-hero { padding: 105px 0 92px; background: linear-gradient(135deg, #fff, #f3f4f6); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 15ch; }
.page-hero .lead { max-width: 780px; }
.contact-hero { padding-bottom: 72px; }

/* Details */
.service-detail { scroll-margin-top: 95px; }
.detail-grid { display: grid; grid-template-columns: 180px 1fr; gap: 60px; align-items: start; }
.detail-side { display: flex; align-items: flex-start; gap: 18px; }
.detail-index { color: #9aa2ae; font-size: .78rem; font-weight: 800; }
.feature-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 35px; margin: 35px 0; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding: 10px 0 10px 30px; border-bottom: 1px solid var(--line); }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 900;
}
.note { margin: 30px 0 0; padding: 20px 22px; background: var(--soft-red); border-left: 3px solid var(--red); color: var(--ink-2); }

/* About page */
.about-main { display: grid; grid-template-columns: .86fr 1.14fr; gap: 85px; align-items: center; }
.about-main-image { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-main-image img { aspect-ratio: .82; object-fit: cover; object-position: center top; }
.value-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.value-grid article { padding: 28px; background: white; border: 1px solid var(--line); border-radius: var(--radius-small); }
.value-grid strong { color: var(--red); font-size: 2.1rem; letter-spacing: -.05em; }
.value-grid h3 { margin-top: 22px; }
.value-grid p { color: var(--muted); font-size: .93rem; margin: 0; }
.principles { display: grid; grid-template-columns: .8fr 1.2fr; gap: 95px; }
.principle-list article { display: grid; grid-template-columns: 55px 1fr; gap: 20px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.principle-list article:first-child { padding-top: 0; }
.principle-list span { color: var(--red); font-size: .78rem; font-weight: 800; }
.principle-list h3 { margin-bottom: 7px; }
.principle-list p { color: var(--muted); margin: 0; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 75px; align-items: start; }
.contact-info { position: sticky; top: 125px; }
.contact-card { padding: 27px; margin-top: 28px; background: var(--soft); border-radius: var(--radius-small); border-left: 4px solid var(--red); }
.contact-card h3 { margin-bottom: 15px; }
.contact-card p { margin-bottom: 15px; }
.contact-card a { color: var(--red-dark); font-weight: 700; }
.privacy-note { color: var(--muted); font-size: .82rem; }
.form-panel { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-small); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { margin-bottom: 19px; }
.field label { display: block; margin-bottom: 7px; font-size: .88rem; font-weight: 750; }
input, select, textarea {
  width: 100%; padding: 13px 14px; border: 1px solid #cbd1d9; border-radius: 8px;
  background: white; color: var(--ink); font: inherit; font-size: .95rem;
}
textarea { resize: vertical; min-height: 170px; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(233,81,71,.14); border-color: var(--red); }
.checkbox-field { display: grid; grid-template-columns: 20px 1fr; gap: 11px; align-items: start; margin: 5px 0 22px; font-size: .85rem; color: var(--muted); }
.checkbox-field input { width: 18px; height: 18px; margin-top: 4px; accent-color: var(--red); }
.submit-button { border: 0; cursor: pointer; font: inherit; }
.form-required { color: var(--muted); font-size: .78rem; margin: 12px 0 0; }
.form-honeypot { position: absolute !important; left: -9999px !important; }
.form-alert { padding: 17px 20px; margin-bottom: 25px; background: #fff1f0; border: 1px solid #f0b5b0; border-radius: 9px; color: #8d2f29; }
.form-alert ul { margin-bottom: 0; }

/* Legal and status */
.legal-content h2 { margin-top: 1.8em; font-size: 1.55rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--ink-2); }
.legal-note { margin-top: 45px; padding: 20px; background: var(--soft); border-radius: 10px; font-size: .86rem; color: var(--muted) !important; }
.thank-you { min-height: 620px; display: grid; place-items: center; text-align: center; }
.thank-you h1 { margin-inline: auto; }
.thank-you .lead { margin-inline: auto; }
.success-icon { width: 68px; height: 68px; display: grid; place-items: center; margin: 0 auto 25px; border-radius: 50%; background: #e9f7ef; color: #218b55; font-size: 2rem; font-weight: 900; }
.error-code { color: var(--red); font-size: 5rem; font-weight: 900; line-height: 1; }

/* Footer */
.site-footer { margin-top: 110px; padding: 65px 0 22px; background: #171e2a; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 45px; }
.footer-grid h2 { font-size: .78rem; text-transform: uppercase; letter-spacing: .13em; color: #ffaaa4; }
.footer-grid p, .footer-grid address { font-style: normal; color: #b9c0ca; font-size: .88rem; }
.footer-grid a:hover { color: white; }
.footer-logo { display: inline-block; padding: 8px 10px; background: white; border-radius: 7px; }
.footer-logo img { width: 220px; }
.footer-brand p { max-width: 380px; margin-top: 20px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; margin-top: 45px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13); color: #8993a2; font-size: .76rem; }

/* Responsive */
@media (max-width: 1050px) {
  .main-nav { gap: 19px; }
  .hero-grid { gap: 45px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 330px; }
  .value-grid { grid-template-columns: repeat(2,1fr); }
  .floating-card-top { left: -25px; }
  .floating-card-bottom { right: -10px; }
}
@media (max-width: 820px) {
  body { font-size: 16px; }
  .section { padding: 80px 0; }
  .header-inner { min-height: 74px; }
  .brand img { width: 205px; }
  .nav-toggle { display: block; z-index: 2; }
  .main-nav {
    position: absolute; top: 74px; left: 0; right: 0; padding: 18px 20px 25px;
    display: none; align-items: stretch; flex-direction: column; gap: 0;
    background: white; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-small);
  }
  .main-nav.is-open { display: flex; }
  .main-nav > a:not(.button) { padding: 13px 4px; border: 0; }
  .main-nav .button { margin-top: 10px; }
  .hero-grid { min-height: auto; padding: 65px 0 82px; grid-template-columns: 1fr; }
  .hero-visual { margin: 0 auto; width: min(100%, 520px); }
  .trust-list { margin-top: 40px; }
  .statement-grid, .section-heading, .split-layout, .about-teaser, .about-main, .principles, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .statement-grid h2 { margin-bottom: 0; }
  .section-heading { align-items: start; }
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-grid article, .experience-grid article:nth-child(4), .experience-grid article:nth-child(5) { grid-column: span 1; }
  .detail-grid { grid-template-columns: 1fr; gap: 30px; }
  .detail-side { align-items: center; }
  .contact-info { position: static; }
  .cta-card { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  h1 { font-size: clamp(2.45rem, 13vw, 3.7rem); }
  h2 { font-size: 2rem; }
  .hero-grid { padding-top: 48px; }
  .hero-copy .button-row, .hero-copy .button { width: 100%; }
  .trust-list { grid-template-columns: 1fr; }
  .trust-list li { padding: 16px 0; border-bottom: 1px solid var(--line); }
  .floating-card { display: none; }
  .service-grid, .experience-grid, .value-grid, .feature-columns, .form-row { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .cta-card { padding: 38px 27px; }
  .form-panel { padding: 24px 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .page-hero { padding: 72px 0 65px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
