@font-face {
    font-family: "Lato";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/public/assets/fonts/lato-400-latin.woff2") format("woff2");
}

@font-face {
    font-family: "Lato";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("/public/assets/fonts/lato-700-latin.woff2") format("woff2");
}

@font-face {
    font-family: "Figtree";
    font-style: normal;
    font-weight: 600 800;
    font-display: swap;
    src: url("/public/assets/fonts/figtree-latin.woff2") format("woff2");
}

:root {
    color-scheme: light;
    --ink: #171717;
    --ink-soft: #4d4d4d;
    --paper: #f7f7f5;
    --card: #ffffff;
    --line: #deded8;
    --yellow: #f6c400;
    --yellow-deep: #dca900;
    --yellow-soft: #fff3b8;
    --green: #20bf4b;
    --shadow: 0 18px 45px rgb(0 0 0 / 12%);
    --radius: 8px;
    --container: min(720px, calc(100% - 32px));
    --wide: min(1120px, calc(100% - 32px));
    --font: "Lato", ui-sans-serif, system-ui, sans-serif;
    --display: "Figtree", ui-sans-serif, system-ui, sans-serif;
    --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
    --motion-fast: 220ms;
    --motion-menu: 240ms;
    --motion-stagger: 420ms;
    --motion-reveal: 640ms;
    --motion-hero: 680ms;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font);
    font-size: 1.0625rem;
    line-height: 1.5;
}

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

svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

a {
    color: inherit;
}

.address-half {
    display: inline-block;
    font-size: 0.62em;
    font-weight: 700;
    line-height: 1;
    transform: translateY(-0.16em);
}

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

.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;
}

.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 30;
    padding: 0.75rem 1rem;
    transform: translateY(-160%);
    background: var(--ink);
    color: white;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgb(255 255 255 / 94%);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: var(--wide);
    min-height: 76px;
    margin: 0 auto;
}

.brand,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 48px;
    text-decoration: none;
}

.brand-mark {
    --logo-cutout: var(--card);
    display: block;
    flex: 0 0 auto;
    width: 2.8rem;
    height: 2.8rem;
    color: var(--yellow);
}

.brand-mark svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    fill: currentColor;
    stroke: none;
}

.brand-dot {
    fill: #626262;
}

.site-footer .brand-mark {
    --logo-cutout: #1d1d1d;
}

.brand-text {
    display: grid;
    gap: 0.12rem;
    line-height: 0.92;
    text-transform: uppercase;
}

.brand-text span {
    color: #38383d;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.brand-text strong {
    position: relative;
    font-family: var(--display);
    font-size: 1.16rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand-text strong::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 0.18rem;
    background: var(--yellow);
}

.site-footer .brand-text span,
.site-footer .brand-text strong {
    color: white;
}

.desktop-nav,
.header-action {
    display: none;
}

.desktop-nav {
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgb(255 255 255 / 72%);
    box-shadow: 0 8px 24px rgb(0 0 0 / 5%);
}

.desktop-nav a {
    min-height: 40px;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    color: var(--ink-soft);
    font-family: var(--display);
    font-size: 0.96rem;
    font-weight: 700;
}

.desktop-nav a:hover {
    background: var(--yellow-soft);
    color: var(--ink);
}

.desktop-nav a,
.header-action,
.mobile-menu-panel a,
.menu-whatsapp,
.button,
.service-tile,
.help-list a,
.contact-actions a,
.site-footer a {
    text-decoration: none;
}

.desktop-nav a,
.header-action,
.mobile-menu summary,
.mobile-menu-panel a,
.button,
.service-tile,
.help-list a,
.contact-actions a,
.study-links a,
.insurance-list li,
.preparation-list details,
.faq details {
    transition: background-color var(--motion-fast) var(--ease-out-quint), color var(--motion-fast) var(--ease-out-quint), border-color var(--motion-fast) var(--ease-out-quint), transform var(--motion-fast) var(--ease-out-quint), box-shadow var(--motion-fast) var(--ease-out-quint);
}

.header-action {
    align-items: center;
    gap: 0.45rem;
    min-height: 48px;
    padding: 0.65rem 1rem;
    border-radius: var(--radius);
    background: var(--green);
    color: white;
    font-family: var(--display);
    font-weight: 700;
}

.header-action svg,
.button svg {
    width: 1.2em;
    height: 1.2em;
}

.header-action svg,
.menu-whatsapp svg {
    --wa-phone: var(--green);
}

.mobile-menu {
    position: relative;
    user-select: none;
    -webkit-user-select: none;
}

.mobile-menu summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-width: 82px;
    height: 48px;
    padding: 0 0.8rem;
    border: 1px solid rgb(0 0 0 / 8%);
    border-radius: 999px;
    background: var(--yellow);
    cursor: pointer;
    font-family: var(--display);
    font-weight: 700;
    list-style: none;
    box-shadow: 0 10px 22px rgb(246 196 0 / 24%);
}

.mobile-menu summary::-webkit-details-marker {
    display: none;
}

.menu-icon {
    display: grid;
    gap: 0.24rem;
    width: 1rem;
}

.menu-icon span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
}

.menu-word {
    font-size: 0.94rem;
}

.mobile-menu[open] summary {
    background: var(--ink);
    color: white;
    box-shadow: 0 10px 22px rgb(0 0 0 / 16%);
}

.mobile-menu[open] .menu-icon span {
    background: white;
}

.mobile-menu-panel {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    display: grid;
    gap: 0.25rem;
    width: min(360px, calc(100vw - 24px));
    padding: 0.55rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: white;
    box-shadow: 0 16px 36px rgb(0 0 0 / 14%);
    transform-origin: top right;
    animation: menu-pop var(--motion-menu) var(--ease-out-quint) both;
}

.mobile-menu-panel a {
    display: grid;
    gap: 0.1rem;
    min-height: 60px;
    padding: 0.75rem 0.85rem;
    border-radius: 8px;
}

.mobile-menu-panel a:hover {
    background: var(--yellow-soft);
}

.mobile-menu-panel a span,
.menu-label {
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.mobile-menu-panel .address-half {
    font-size: 0.62em;
}

.menu-label {
    margin: 0;
    padding: 0.3rem 0.5rem 0.25rem;
    font-weight: 700;
}

.menu-whatsapp {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem !important;
    min-height: 52px;
    margin-top: 0.25rem;
    background: var(--green);
    color: white;
    font-weight: 700;
}

.menu-whatsapp:hover,
.header-action:hover {
    background: #18a83f;
}

.menu-whatsapp svg {
    width: 1.2rem;
    height: 1.2rem;
}

main > section {
    width: var(--container);
    margin: 0 auto;
    padding: 2.3rem 0;
}

main [id] {
    scroll-margin-top: 92px;
}

.hero {
    position: relative;
    width: 100%;
    min-height: 520px;
    padding: 0;
    color: white;
    background: #26221c;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgb(0 0 0 / 42%), rgb(0 0 0 / 80%));
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: end;
    gap: 1rem;
    width: var(--container);
    min-height: 520px;
    margin: 0 auto;
    padding: 6rem 0 8.5rem;
}

.hero-content > * {
    animation: hero-rise var(--motion-hero) var(--ease-out-quint, cubic-bezier(0.22, 1, 0.36, 1)) both;
}

.hero-content > :nth-child(2) {
    animation-delay: 70ms;
}

.hero-content > :nth-child(3) {
    animation-delay: 120ms;
}

.hero-content > :nth-child(4) {
    animation-delay: 160ms;
}

.hero-content > :nth-child(5) {
    animation-delay: 210ms;
}

.badge {
    width: max-content;
    max-width: 100%;
    margin: 0;
    padding: 0.45rem 0.7rem;
    border-radius: 6px;
    background: var(--yellow);
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 700;
}

h1,
h2,
h3,
p,
figure {
    margin: 0;
}

h1,
h2,
h3 {
    font-family: var(--display);
    font-weight: 800;
    line-height: 1.08;
    text-wrap: balance;
}

h1 {
    max-width: 15ch;
    overflow-wrap: break-word;
    font-size: clamp(2.05rem, 8vw, 4.9rem);
}

h2 {
    max-width: 13ch;
    font-size: clamp(1.85rem, 7vw, 3.2rem);
}

.hero-lead {
    max-width: 37rem;
    color: white;
    font-size: clamp(1.08rem, 2.5vw, 1.35rem);
    font-weight: 600;
    line-height: 1.35;
}

.hero-facts {
    display: grid;
    gap: 0.6rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-facts li {
    display: grid;
    gap: 0.1rem;
    padding: 0.7rem 0.8rem;
    border: 1px solid rgb(255 255 255 / 22%);
    border-radius: var(--radius);
    background: rgb(0 0 0 / 26%);
}

.hero-facts strong {
    font-family: var(--display);
}

.hero-facts span {
    color: rgb(255 255 255 / 86%);
    font-size: 0.96rem;
}

.hero-cta {
    display: grid;
    gap: 0.75rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 56px;
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
    font-family: var(--display);
    font-weight: 700;
}

.primary {
    background: var(--yellow);
    color: var(--ink);
}

.primary:hover {
    background: #ffd633;
    transform: translateY(-1px);
}

.ghost {
    border: 1px solid rgb(255 255 255 / 70%);
    color: white;
}

.outline {
    border: 1px solid var(--ink);
    background: white;
    color: var(--ink);
}

.outline:hover {
    background: var(--ink);
    color: white;
    transform: translateY(-1px);
}

.service-board {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin-top: -5.8rem;
    padding: 1rem;
    border-radius: 14px;
    background: var(--line);
    box-shadow: var(--shadow);
    animation: board-rise var(--motion-reveal) var(--ease-out-quint) 240ms both;
    margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

.service-tile {
    display: grid;
    place-items: center;
    gap: 0.65rem;
    min-height: 120px;
    padding: 0.85rem 0.65rem;
    background: white;
    text-align: center;
    font-size: 0.88rem;
}

.service-tile strong {
    max-width: 11ch;
    overflow-wrap: anywhere;
}

.service-tile svg {
    width: 2.2rem;
    height: 2.2rem;
    color: var(--yellow-deep);
}

.service-tile:hover,
.help-list a:hover,
.contact-actions a:hover {
    background: var(--yellow-soft);
    transform: translateY(-2px);
}

.review-card,
.insurance {
    display: grid;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: white;
    box-shadow: 0 10px 32px rgb(0 0 0 / 7%);
}

.review-card {
    margin-top: clamp(0.75rem, 2vw, 1.5rem);
}

.section-kicker {
    color: var(--ink-soft);
    font-size: 0.95rem;
    font-weight: 700;
}

.stars {
    color: var(--yellow);
    font-size: 1.45rem;
    white-space: nowrap;
}

.rating-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
}

.rating-line strong {
    font-size: 2.4rem;
    line-height: 1;
}

.rating-line span:last-child {
    color: var(--ink-soft);
}

.review-themes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.review-themes span {
    padding: 0.45rem 0.65rem;
    border: 1px solid rgb(220 169 0 / 35%);
    border-radius: 999px;
    background: var(--yellow-soft);
    font-size: 0.92rem;
    font-weight: 700;
}

.review-list {
    display: grid;
    gap: 0.75rem;
}

.review-list figure {
    display: grid;
    gap: 0.5rem;
    margin: 0;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
}

.review-list blockquote {
    margin: 0;
}

.quote-stars {
    color: var(--yellow-deep);
    font-size: 1.05rem;
    letter-spacing: 0;
}

.review-list figcaption {
    color: var(--ink-soft);
    font-size: 0.92rem;
}

blockquote {
    margin: 0;
}

blockquote footer {
    margin-top: 0.65rem;
    color: var(--ink-soft);
    font-size: 0.94rem;
}

.section-heading {
    display: grid;
    gap: 0.55rem;
    margin-bottom: 1rem;
}

.section-heading p,
.split-section p,
.legacy-page p,
.faq p,
.contact p {
    max-width: 42rem;
    color: var(--ink-soft);
}

.help-list {
    display: grid;
    gap: 0.75rem;
}

.help-list a {
    display: grid;
    grid-template-columns: 2.8rem minmax(0, 1fr);
    align-items: center;
    gap: 0.8rem;
    min-height: 82px;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
}

.help-list svg,
.contact-actions svg {
    width: 2rem;
    height: 2rem;
    color: var(--yellow-deep);
}

.primary svg,
.service-tile svg,
.help-list svg,
.contact-actions svg {
    --wa-phone: white;
}

.help-list small {
    display: block;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.study-grid,
.contact-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.study-grid article,
.contact-actions a {
    display: grid;
    place-items: center;
    gap: 0.25rem;
    min-height: 84px;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    text-align: center;
    font-weight: 700;
}

.study-grid article span {
    color: var(--ink-soft);
    font-size: 0.88rem;
    font-weight: 400;
}

.study-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.study-links a {
    min-height: 44px;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: white;
    color: var(--ink);
    font-weight: 700;
    text-decoration: none;
}

.study-links a:hover {
    background: var(--yellow-soft);
}

.studies,
.preparation-list {
    display: grid;
    gap: 0.75rem;
}

.studies {
    gap: 1.6rem;
}

.quick-logistics {
    display: grid;
    gap: clamp(2.5rem, 6vw, 4.5rem);
    padding-block: clamp(2.25rem, 4vw, 3.75rem);
}

.preparation-list details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
}

.preparation-list details[open],
.faq details[open] {
    border-color: rgb(220 169 0 / 36%);
    box-shadow: 0 8px 20px rgb(0 0 0 / 5%);
}

.preparation-list summary {
    min-height: 56px;
    padding: 1rem;
    cursor: pointer;
    font-weight: 700;
}

.preparation-list summary::marker,
.faq summary::marker {
    color: var(--yellow-deep);
}

.preparation-list div {
    display: grid;
    gap: 0.65rem;
    padding: 0 1rem 1rem;
    color: var(--ink-soft);
}

.preparation-list a {
    font-weight: 700;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.trust-grid div {
    display: grid;
    gap: 0.15rem;
    min-height: 92px;
    padding: 0.85rem;
    border-radius: var(--radius);
    background: var(--yellow-soft);
}

.trust-grid strong {
    font-size: 1.15rem;
}

.trust-grid span {
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.split-section {
    display: grid;
    gap: clamp(1.25rem, 5vw, 4rem);
}

.split-section div {
    display: grid;
    gap: 0.85rem;
    align-content: center;
}

.split-section h2 {
    max-width: 15ch;
}

.split-section picture,
.split-section img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
}

.split-section picture {
    display: block;
    overflow: hidden;
}

.split-section img {
    height: 100%;
    object-fit: cover;
}

.insurance-search {
    display: grid;
    gap: 0.45rem;
    font-weight: 700;
}

.insurance-search input {
    width: 100%;
    min-height: 56px;
    padding: 0.85rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    font: inherit;
    transition: border-color 180ms var(--ease-out-quint), box-shadow 180ms var(--ease-out-quint);
}

.insurance-search input:focus {
    border-color: var(--yellow-deep);
    box-shadow: 0 0 0 4px rgb(246 196 0 / 20%);
    outline: none;
}

.insurance-search input::placeholder {
    color: #666;
}

.insurance-count,
.insurance-note {
    color: var(--ink-soft);
}

.insurance-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    gap: 0.55rem;
    margin: 0;
    padding: 0.25rem;
    list-style: none;
}

.insurance-list li {
    padding: 0.65rem 0.8rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    font-weight: 700;
}

.insurance-list li:hover {
    border-color: rgb(220 169 0 / 40%);
    background: var(--yellow-soft);
}

.insurance-list li[hidden] {
    display: none;
}

.insurance-toggle {
    justify-self: start;
    border: 1px solid var(--ink);
    background: transparent;
    color: var(--ink);
    cursor: pointer;
}

.insurance-toggle:hover {
    background: var(--yellow-soft);
    border-color: rgb(220 169 0 / 55%);
}

.insurance-toggle[hidden] {
    display: none;
}

.faq {
    display: grid;
    gap: 0;
}

.faq details {
    border-top: 1px solid var(--line);
    padding: 1rem 0;
}

.faq details:last-child {
    border-bottom: 1px solid var(--line);
}

.faq summary {
    min-height: 48px;
    cursor: pointer;
    font-weight: 700;
}

.motion-ready [data-reveal] {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity var(--motion-reveal) var(--ease-out-quint), transform var(--motion-reveal) var(--ease-out-quint);
}

.motion-ready [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.motion-ready [data-stagger-item] {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity var(--motion-stagger) var(--ease-out-quint), transform var(--motion-stagger) var(--ease-out-quint), background-color var(--motion-fast) var(--ease-out-quint), border-color var(--motion-fast) var(--ease-out-quint);
    transition-delay: calc(var(--i, 0) * 32ms);
}

.motion-ready .is-visible [data-stagger-item],
.motion-ready .service-board [data-stagger-item] {
    opacity: 1;
    transform: translateY(0);
}

.faq p {
    margin-top: 0.6rem;
}

.legacy-page {
    min-height: 100vh;
    background: var(--paper);
}

.legacy-page .header-action {
    display: inline-flex;
}

.legacy-main {
    display: grid;
    gap: 1.25rem;
    width: var(--container);
    margin: 0 auto;
    padding: 3rem 0;
}

.legacy-main h1 {
    max-width: 13ch;
}

.legacy-main img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    object-fit: cover;
}

.legacy-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.legacy-list {
    display: grid;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.legacy-list li {
    padding: 0.8rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    font-weight: 700;
}

.contact {
    display: grid;
    gap: 1rem;
}

.site-footer {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
    padding: 2rem max(1rem, calc((100% - 1120px) / 2));
    background:
        radial-gradient(circle at 92% 24%, rgb(246 196 0 / 18%), transparent 16rem),
        #1d1d1d;
    color: white;
}

.site-footer p {
    max-width: 30rem;
    color: rgb(255 255 255 / 78%);
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (min-width: 760px) {
    body {
        font-size: 1.125rem;
    }

    .desktop-nav,
    .header-action {
        display: inline-flex;
    }

    .mobile-menu {
        display: none;
    }

    .hero,
    .hero-content {
        min-height: 610px;
    }

    .hero-cta {
        display: flex;
        flex-wrap: wrap;
    }

    h1 {
        max-width: 13ch;
        font-size: clamp(3.4rem, 6vw, 4.9rem);
    }

    .hero-facts {
        grid-template-columns: repeat(2, minmax(0, 15rem));
    }

    .service-board {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        max-width: 980px;
    }

    .service-tile {
        min-height: 122px;
    }

    .split-section {
        grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
        align-items: center;
    }

    .quick-logistics {
        width: var(--wide);
    }

    .split-section > div {
        max-width: 28rem;
    }

    .split-section picture {
        justify-self: stretch;
    }

    .contact {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .review-list {
        grid-template-columns: 1fr 1fr;
    }

    .featured-review {
        grid-row: span 2;
        align-content: center;
    }

    .reverse picture {
        order: -1;
    }

    .study-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .contact-actions {
        grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr));
    }

    .trust-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .site-footer {
        grid-template-columns: minmax(0, 1fr) auto;
        padding-bottom: 2rem;
    }
}

@media (max-width: 759px) {
    .service-board .service-tile:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

    .review-list figure:nth-child(n + 3) {
        display: none;
    }
}

@media (min-width: 1100px) {
    .contact {
        width: var(--wide);
        grid-template-columns: minmax(0, 0.85fr) minmax(34rem, 1fr);
        gap: 2rem;
        align-items: center;
    }

    .contact-actions {
        grid-template-columns: repeat(5, minmax(6.75rem, 1fr));
    }
}

@media (max-width: 420px) {
    html {
        scroll-padding-top: 84px;
    }

    .header-inner {
        min-height: 68px;
    }

    main [id] {
        scroll-margin-top: 84px;
    }

    .brand-mark {
        width: 2.45rem;
        height: 2.45rem;
    }

    .brand-text span {
        font-size: 0.58rem;
    }

    .brand-text strong {
        font-size: 0.92rem;
    }

    .service-board {
        width: min(360px, calc(100% - 28px));
    }
}

@keyframes hero-rise {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes board-rise {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes menu-pop {
    from {
        opacity: 0;
        transform: translateY(-4px) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .motion-ready [data-reveal],
    .motion-ready [data-stagger-item] {
        opacity: 1 !important;
        transform: none !important;
    }
}
