/*
Theme Name: Grunt Consulting
Description: Structural landing-page scaffold for Grunt Consulting.
Version: 0.1.0
Text Domain: grunt-consulting
*/

:root {
  --ink: #071d21;
  --line: #aeb8b9;
  --paper: #f7f7f4;
  --muted: #667275;
  --accent: #9d3829;
  --max-width: 1280px;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; margin-top: 0 !important; }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--ink); font-family: Arial, Helvetica, sans-serif; }
#wpadminbar { display: none; }
.scroll-header { position: fixed; inset: 0 0 auto; z-index: 20; padding: 14px 0; background: rgba(247,247,244,.96); border-bottom: 1px solid var(--line); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .32s ease, transform .32s ease; }
.scroll-header.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-header__inner { width: min(calc(100% - 48px), var(--max-width)); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.scroll-header__brand { font-size: 18px; font-weight: 900; letter-spacing: -.055em; }
.scroll-header__phone { font-size: 16px; font-weight: 700; }
a { color: inherit; text-decoration: none; }
.header-inner, .container { width: min(calc(100% - 48px), var(--max-width)); margin: 0 auto; }
.section { padding: 112px 0; border-bottom: 1px solid var(--line); }
.section .container { width: min(calc(100% - 48px), 1540px); }
.section > .container > .eyebrow { display: none; }
.section.is-ready-to-reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.section.is-ready-to-reveal.is-revealed { opacity: 1; transform: translateY(0); }
.eyebrow { margin: 0 0 16px; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 900px; margin-bottom: 28px; font-size: clamp(48px, 8vw, 116px); line-height: .88; letter-spacing: -.075em; text-transform: uppercase; }
h2 { max-width: 900px; margin-bottom: 40px; font-size: clamp(34px, 5vw, 64px); line-height: .95; letter-spacing: -.065em; text-transform: uppercase; }
h3 { font-size: 24px; line-height: 1; letter-spacing: -.04em; text-transform: uppercase; }
.lead { max-width: 600px; margin-bottom: 36px; font-size: clamp(20px, 2.4vw, 32px); line-height: 1.25; }
.hero { min-height: 100svh; display: flex; align-items: end; padding: 96px 0; background: url('assets/Main.png') center center / cover no-repeat; animation: heroBackgroundIn 1.1s ease both; }
.hero-content { width: min(calc(100% - 48px), var(--max-width)); margin: 0 auto; }
.hero { align-items: flex-start; padding-top: clamp(96px, 14vh, 150px); }
.hero-content { padding-left: 0; }
.hero-branding { width: min(820px, 58vw); margin: 6% 0 0 50%; }
.hero-content > .eyebrow, .hero-content > h1, .hero-content > .lead, .hero-content > .button-row { display: none; }
.hero-title { margin: 0 0 44px; color: var(--ink); font-size: clamp(72px, 7.1vw, 145px); font-weight: 900; line-height: .92; letter-spacing: -.075em; white-space: nowrap; animation: heroTextIn .85s cubic-bezier(.2,.8,.2,1) .18s both; }
.hero-subtitle { margin: 0 0 42px; color: var(--ink); font-size: clamp(26px, 2.55vw, 52px); font-style: italic; font-weight: 400; line-height: 1.42; letter-spacing: -.055em; white-space: nowrap; animation: heroTextIn .85s cubic-bezier(.2,.8,.2,1) .42s both; }
.hero .button-row { animation: heroTextIn .75s cubic-bezier(.2,.8,.2,1) .66s both; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 0 24px; background: var(--ink); color: #fff; font-size: 13px; font-weight: 800; text-transform: uppercase; transition: transform .24s ease, box-shadow .24s ease, background-color .24s ease, color .24s ease; }
.button:hover, .button:focus-visible { transform: translateY(-4px); background: #12383e; box-shadow: 0 12px 24px rgba(7,29,33,.22); }
.button:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; }
.button--outline { border: 1px solid var(--ink); background: transparent; color: var(--ink); }
.button--outline:hover, .button--outline:focus-visible { background: #12383e; color: #fff; }
@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(34px); filter: blur(6px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes heroBackgroundIn {
  from { opacity: .25; background-position: 48% center; }
  to { opacity: 1; background-position: center center; }
}
@media (prefers-reduced-motion: reduce) { .hero, .hero-title, .hero-subtitle, .hero .button-row { animation: none; } .button, .section.is-ready-to-reveal { transition: none; } .button:hover, .button:focus-visible { transform: none; } .section.is-ready-to-reveal { opacity: 1; transform: none; } }
.grid { display: grid; gap: 16px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.placeholder { min-height: 170px; padding: 24px; border: 1px solid var(--line); background: #fff; display: flex; flex-direction: column; justify-content: space-between; }
.placeholder small, .placeholder p { color: var(--muted); }
#trust .grid { gap: 18px; }
#trust .placeholder { min-height: 220px; padding: 28px 28px 26px; justify-content: flex-start; background: transparent; transition: background-color .24s ease, transform .24s ease, border-color .24s ease; }
#trust .placeholder:hover { transform: translateY(-4px); background: #fff; border-color: var(--ink); }
.fact-card__label { display: block; margin-bottom: 28px; color: var(--muted); font-size: 12px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
#trust .placeholder strong { display: block; max-width: 280px; min-height: 92px; margin-bottom: 22px; color: var(--ink); font-size: clamp(34px, 3.2vw, 54px); font-weight: 900; line-height: .9; letter-spacing: -.07em; text-transform: uppercase; }
#trust .placeholder small { max-width: 280px; color: #3f5356; font-size: 16px; line-height: 1.4; }
#why-us .grid { gap: 18px; }
.benefit-card { position: relative; min-height: 260px; padding: 30px 28px; justify-content: flex-start; background: transparent; overflow: hidden; transition: background-color .24s ease, border-color .24s ease, transform .24s ease; }
.benefit-card:hover { transform: translateY(-4px); background: #fff; border-color: var(--ink); }
.benefit-card__number { display: block; margin-bottom: 48px; color: #c86f61; font-size: 14px; font-weight: 900; letter-spacing: .08em; }
.benefit-card::after { content: ''; position: absolute; top: 70px; right: 28px; left: 28px; height: 2px; background: var(--ink); transform-origin: left; transform: scaleX(.22); transition: transform .24s ease; }
.benefit-card:hover::after { transform: scaleX(1); }
.benefit-card strong { max-width: 340px; margin-bottom: 28px; font-size: clamp(22px, 2.1vw, 34px); line-height: 1; letter-spacing: -.055em; text-transform: uppercase; }
.benefit-card small { max-width: 430px; color: #3f5356; font-size: 16px; line-height: 1.45; }
#audiences h2 { max-width: 780px; }
.audience-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px 28px; }
.audience-item { position: relative; min-height: 128px; display: flex; align-items: center; gap: 24px; padding: 24px 0; border: 0; background: transparent; }
.audience-item__marker { position: relative; flex: 0 0 clamp(88px, 8vw, 150px); height: clamp(46px, 4.6vw, 72px); background: var(--ink); clip-path: polygon(0 0, 76% 0, 100% 50%, 76% 100%, 0 100%); }
.audience-item h3 { margin: 0; font-size: clamp(22px, 2.1vw, 34px); line-height: 1; letter-spacing: -.055em; }
.service-number { color: #c86f61; font-size: 14px; font-weight: 900; line-height: 1; letter-spacing: .08em; }
#services .grid { gap: 18px; }
#services .placeholder { min-height: 360px; padding: 30px 32px; background: transparent; transition: background-color .24s ease, border-color .24s ease, transform .24s ease; }
#services .placeholder:hover { transform: translateY(-4px); background: #fff; border-color: var(--ink); }
#services .service-card { position: relative; display: flex; flex-direction: column; }
#services .service-card::after { content: ''; position: absolute; top: 68px; right: 32px; left: 32px; height: 2px; background: var(--ink); transform-origin: left; transform: scaleX(.22); transition: transform .24s ease; }
#services .service-card:hover::after { transform: scaleX(1); }
#services .service-card .service-number { margin-bottom: 48px; }
#services .service-card h3 { max-width: 390px; min-height: 58px; margin: 0 0 24px; font-size: clamp(24px, 2.1vw, 34px); line-height: 1; letter-spacing: -.055em; }
#services .service-card .service-details { margin-top: 0; }
.service-details { font-size: 16px; line-height: 1.52; color: #3f5356 !important; }
.service-details { margin: 0; padding: 0; list-style: none; }
.service-details li { position: relative; padding-left: 14px; }
.service-details li::before { content: '•'; position: absolute; left: 0; color: var(--accent); }
.service-request-card { justify-content: flex-start; align-items: center; text-align: center; }
.service-request-card h3 { margin: 0 0 54px; padding-top: 18px; font-size: clamp(24px, 2.1vw, 34px); line-height: 1; letter-spacing: -.055em; }
.service-request-card p { max-width: 410px; margin: 0; font-size: 18px; line-height: 1.5; color: #3f5356; }
.service-request { margin-top: auto; }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.process-step { position: relative; display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto 1fr; column-gap: 16px; min-height: 260px; padding: 28px 24px; background: transparent; }
.process-step::after { content: ''; grid-column: 1 / -1; grid-row: 1; align-self: end; border-bottom: 4px solid var(--ink); pointer-events: none; }
.process-step__number { grid-column: 1; grid-row: 1; align-self: end; margin: 0; padding-bottom: 12px; color: #c86f61; font-size: 56px; font-weight: 900; line-height: .8; letter-spacing: -.08em; }
.process-step h3 { grid-column: 2; grid-row: 1; align-self: end; min-height: 0; margin: 0; padding-bottom: 12px; font-size: 20px; line-height: 1.05; }
.process-step small { grid-column: 1 / -1; grid-row: 2; display: block; margin-top: 16px; color: #294348; font-size: 16px; line-height: 1.55; }
.case { min-height: 310px; padding: 28px; background: #e2e7e5; display: flex; flex-direction: column; justify-content: flex-end; }
.cases-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; }
.cases-controls { display: flex; align-items: center; gap: 12px; margin-bottom: 40px; color: var(--muted); font-size: 13px; font-weight: 800; }
.cases-control { width: 42px; height: 42px; border: 1px solid var(--ink); background: transparent; color: var(--ink); font-size: 22px; cursor: pointer; transition: background-color .2s ease, color .2s ease; }
.cases-control:hover:not(:disabled) { background: var(--ink); color: #fff; }
.cases-control:disabled { opacity: .3; cursor: not-allowed; }
.cases-carousel { contain: layout paint; width: 100%; max-width: 100%; display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; }
.cases-carousel::-webkit-scrollbar { display: none; }
.case-card { flex: 0 0 100%; display: grid; grid-template-columns: minmax(260px, .8fr) minmax(0, 2fr); min-height: 580px; scroll-snap-align: start; background: #fff; border: 1px solid var(--line); }
.case-card__meta { display: flex; flex-direction: column; padding: 48px; background: #f1f3f1; border-right: 1px solid var(--line); }
.case-card__meta > span { margin-bottom: auto; color: var(--ink); font-size: clamp(20px, 2vw, 32px); font-weight: 900; line-height: 1; letter-spacing: -.04em; text-transform: uppercase; }
.case-card__meta p { margin-bottom: 8px; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.case-card__meta strong { font-size: 18px; line-height: 1.3; text-transform: uppercase; }
.case-card__body { display: flex; flex-direction: column; padding: 48px; }
.case-card__body h3 { max-width: 940px; margin-bottom: 28px; font-size: clamp(26px, 2.45vw, 42px); line-height: 1.12; letter-spacing: -.045em; text-transform: none; }
.case-card__body > p { max-width: 960px; margin-bottom: 36px; font-size: 17px; line-height: 1.55; }
.case-card__result { margin-top: auto; padding-top: 24px; border-top: 2px solid var(--ink); }
.case-card__result span { display: block; margin-bottom: 10px; font-size: 13px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.case-card__result p { max-width: 960px; margin: 0; font-size: 17px; line-height: 1.55; }
#contact .eyebrow { display: none; }
.cta { background: #c86f61; }
.cta .button { background: #fff; color: #9c4f44; }
.contact-cta { background: #e3e8e5; color: var(--ink); }
.contact-cta__content { display: flex; align-items: end; justify-content: space-between; gap: 48px; }
.contact-cta h2 { margin-bottom: 20px; }
.contact-cta .lead { margin-bottom: 0; }
.contact-cta .button { flex: 0 0 auto; }
.form-placeholder { min-height: 220px; padding: 24px; border: 1px dashed rgba(255,255,255,.75); }
.contact-form { display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 6px; font-size: 13px; font-weight: 700; }
.contact-form input:not([type="checkbox"]), .contact-form select, .contact-form textarea { width: 100%; padding: 11px 12px; border: 1px solid rgba(255,255,255,.75); border-radius: 0; background: rgba(255,255,255,.14); color: #fff; font: inherit; }
.contact-form input:not([type="checkbox"]):-webkit-autofill,
.contact-form input:not([type="checkbox"]):-webkit-autofill:hover,
.contact-form input:not([type="checkbox"]):-webkit-autofill:focus {
  -webkit-text-fill-color: #fff !important;
  -webkit-box-shadow: 0 0 0 1000px #c86f61 inset !important;
  box-shadow: 0 0 0 1000px #c86f61 inset !important;
  background-color: #c86f61 !important;
  caret-color: #fff !important;
  transition: background-color 9999s ease-out 0s;
}
.contact-form select option { color: var(--ink); }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: 2px solid #fff; outline-offset: 2px; }
.custom-select { position: relative; }
.custom-select__trigger { position: relative; width: 100%; padding: 11px 42px 11px 12px; border: 1px solid rgba(255,255,255,.75); background: rgba(255,255,255,.14); color: #fff; font: inherit; text-align: left; cursor: pointer; }
.custom-select__trigger::after { content: ''; position: absolute; top: 50%; right: 15px; width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: translateY(-70%) rotate(45deg); transition: transform .2s ease; }
.custom-select.is-open .custom-select__trigger::after { transform: translateY(-30%) rotate(225deg); }
.custom-select__trigger:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.custom-select__options { position: absolute; z-index: 3; top: calc(100% + 4px); right: 0; left: 0; display: none; padding: 6px; border: 1px solid rgba(255,255,255,.75); background: #fff; box-shadow: 0 12px 24px rgba(7,29,33,.2); }
.custom-select.is-open .custom-select__options { display: grid; }
.custom-select.is-invalid .custom-select__trigger { border-color: #b33f32; }
.custom-select__options button { padding: 10px 12px; border: 0; background: transparent; color: var(--ink); font: inherit; text-align: left; cursor: pointer; }
.custom-select__options button:hover, .custom-select__options button:focus-visible { background: #e9efed; outline: none; }
.contact-form__consent { grid-template-columns: auto 1fr; align-items: start; font-size: 11px !important; font-weight: 400 !important; }
.contact-form__consent input { width: 18px; height: 18px; margin: 1px 0 0; appearance: none; border: 1px solid rgba(255,255,255,.9); background: transparent; cursor: pointer; }
.contact-form__consent input:checked { border-color: var(--ink); background-color: var(--ink); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='m3 8 3 3 7-7' fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E"); background-size: 12px; background-position: center; background-repeat: no-repeat; }
.contact-form__consent input:focus, .contact-form__consent input:focus-visible { outline: none; }
.contact-form .button { justify-self: start; border: 0; cursor: pointer; }
.form-success { padding: 36px 0; font-size: 18px; }
.form-success strong { font-size: 28px; }
.form-success p { margin: 12px 0 0; }
.form-error { margin: 0; padding: 10px; border: 1px solid rgba(255,255,255,.8); font-size: 13px; }
.contact-modal { width: min(680px, calc(100% - 32px)); max-height: min(860px, calc(100vh - 32px)); margin: auto; padding: 0; border: 0; background: transparent; color: var(--ink); }
.contact-modal::backdrop { background: rgba(7,29,33,.68); backdrop-filter: blur(5px); }
.contact-modal__content { position: relative; overflow: auto; max-height: inherit; padding: clamp(32px, 5vw, 56px); background: var(--paper); box-shadow: 0 24px 70px rgba(0,0,0,.3); }
.contact-modal__heading { margin-bottom: 30px; }
.contact-modal__heading p { margin-bottom: 12px; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.contact-modal__heading h2 { margin-bottom: 0; font-size: clamp(36px, 5vw, 56px); }
.contact-modal__close { position: absolute; top: 16px; right: 18px; width: 40px; height: 40px; border: 0; background: transparent; color: var(--ink); font-size: 32px; line-height: 1; cursor: pointer; }
.contact-modal .form-placeholder { min-height: 0; padding: 0; border: 0; }
.contact-modal .contact-form label { color: var(--ink); }
.contact-modal .contact-form input:not([type="checkbox"]), .contact-modal .contact-form textarea { border-color: var(--line); background: #fff; color: var(--ink); }
.contact-modal .contact-form input:not([type="checkbox"]):-webkit-autofill, .contact-modal .contact-form input:not([type="checkbox"]):-webkit-autofill:hover, .contact-modal .contact-form input:not([type="checkbox"]):-webkit-autofill:focus { -webkit-text-fill-color: var(--ink) !important; -webkit-box-shadow: 0 0 0 1000px #fff inset !important; box-shadow: 0 0 0 1000px #fff inset !important; background-color: #fff !important; caret-color: var(--ink) !important; }
.contact-modal .custom-select__trigger { border-color: var(--line); background: #fff; color: var(--ink); }
.contact-modal .custom-select__options { border-color: var(--line); }
.contact-modal .contact-form__consent input { border-color: var(--ink); }
.contact-modal .form-error { border-color: var(--accent); color: #9c4f44; }
.footer { padding: 64px 0 22px; background: var(--ink); color: #fff; }
.footer .container { width: min(calc(100% - 48px), 1540px); }
.footer-grid { display: grid; grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr); gap: 72px; align-items: start; }
.footer strong { display: block; margin-bottom: 16px; font-size: 16px; letter-spacing: .02em; text-transform: uppercase; }
.footer-about strong { font-size: clamp(24px, 2vw, 34px); letter-spacing: -.055em; }
.footer p { margin: 0; font-size: 15px; line-height: 1.7; }
.footer-about p { max-width: 560px; color: #d1dddc; }
.footer-about p + p { margin-top: 10px; }
.footer a { transition: color .2s ease; }
.footer a:hover { color: #c86f61; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 54px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.2); color: #aebfbe; }
.footer-bottom small, .footer-bottom a { font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.footer-bottom a { color: #fff; }

@media (max-width: 800px) {
  .header-inner, .container, .section .container, .footer .container, .scroll-header__inner { width: min(calc(100% - 32px), 1540px); }
  .section { padding: 64px 0; }
  .grid--4, .grid--3, .grid--2, .footer-grid { grid-template-columns: 1fr; }
  #trust .placeholder { min-height: 0; padding: 24px; }
  .fact-card__label { margin-bottom: 18px; }
  #trust .placeholder strong { min-height: 0; margin-bottom: 18px; font-size: 38px; }
  #trust .placeholder small { max-width: 100%; font-size: 16px; }
  .audience-grid { grid-template-columns: 1fr; gap: 14px; }
  .audience-item { min-height: 104px; gap: 18px; padding: 20px; }
  .audience-item__marker { flex-basis: 84px; height: 44px; }
  .audience-item h3 { font-size: 24px; }
  #services .placeholder { min-height: 0; padding: 24px; }
  #services .service-card::after { top: 58px; right: 24px; left: 24px; }
  #services .service-card .service-number { margin-bottom: 38px; }
  #services .service-card h3 { min-height: 0; margin-bottom: 20px; font-size: 28px; }
  .service-request-card h3 { margin-bottom: 28px; padding-top: 0; }
  .service-request-card p { margin-bottom: 42px; }
  .benefit-card { min-height: 0; padding: 24px; }
  .benefit-card__number { margin-bottom: 36px; }
  .benefit-card::after { top: 58px; right: 24px; left: 24px; }
  .benefit-card strong { margin-bottom: 18px; font-size: 28px; }
  .benefit-card small { max-width: 100%; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-heading { align-items: flex-start; flex-direction: column; gap: 0; }
  .cases-controls { margin: -20px 0 28px; }
  .case-card { grid-template-columns: 1fr; min-height: 0; }
  .case-card__meta { gap: 14px; padding: 28px 24px; border-right: 0; border-bottom: 1px solid rgba(7,29,33,.2); }
  .case-card__meta > span { margin-bottom: 0; font-size: 52px; }
  .case-card__body { padding: 32px 24px; }
  .case-card__body h3 { font-size: clamp(26px, 7vw, 34px); }
  .case-card__body > p, .case-card__result p { font-size: 16px; }
  .contact-cta__content { align-items: flex-start; flex-direction: column; gap: 28px; }
  .contact-modal__content { padding: 34px 24px; }
  .contact-modal__heading h2 { font-size: clamp(34px, 10vw, 48px); }
  .contact-form input:not([type="checkbox"]), .contact-form textarea, .custom-select__trigger { font-size: 16px; }
  .footer { padding-top: 48px; }
  .footer-grid { gap: 36px; }
  .footer-bottom { margin-top: 40px; }
  .scroll-header__inner { gap: 12px; }
  .scroll-header__phone { font-size: 13px; }
  .scroll-header .button { min-height: 44px; padding: 0 16px; font-size: 11px; }
  .hero { min-height: 100svh; padding: 13vh 0 48px; background-position: 32% center; }
  .hero-branding { width: min(100%, 560px); margin: 0; }
  .hero-title { max-width: 100%; margin-bottom: 24px; font-size: clamp(48px, 15vw, 76px); line-height: .92; letter-spacing: -.065em; overflow-wrap: normal; }
  .hero-subtitle { max-width: 92%; margin-bottom: 30px; font-size: clamp(21px, 5.4vw, 28px); line-height: 1.34; letter-spacing: -.025em; word-spacing: .05em; }
  .hero .button-row { align-items: flex-start; flex-direction: column; }
  .hero-subtitle br { display: none; }
  .hero-title, .hero-subtitle { white-space: normal; }
}

@media (max-width: 560px) {
  .hero { padding-top: 12vh; background-position: 28% center; }
  .hero-title { font-size: clamp(43px, 13.8vw, 58px); letter-spacing: -.055em; }
  .hero-subtitle { max-width: 95%; font-size: clamp(20px, 5.25vw, 23px); line-height: 1.4; letter-spacing: -.015em; word-spacing: .08em; }
  .hero .button-row { gap: 14px; }
  .hero .button { width: min(100%, 320px); }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { min-height: 0; padding: 24px 0; }
  .process-step__number { font-size: 48px; }
  .process-step h3 { font-size: 19px; }
  .cases-controls { width: 100%; justify-content: space-between; }
  .case-card__meta strong { font-size: 16px; }
  .case-card__body { padding: 28px 20px; }
  .case-card__result { margin-top: 30px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
}
