/* İlayda Evden Eve Nakliyat — public theme */
:root {
    --brand: #c9232d;
    --brand-rgb: 201, 35, 45;
    --brand-dark: #92131c;
    --brand-soft: #f8e7e6;
    --brand-focus: rgba(201, 35, 45, .42);
    --ink: #201c1b;
    --ink-2: #3e3734;
    --muted: #6e6561;
    --stone: #eee8e2;
    --paper: #fbf8f4;
    --white: #ffffff;
    --green: #147a55;
    --line: rgba(32, 28, 27, .13);
    --shadow-sm: 0 12px 34px rgba(38, 27, 24, .08);
    --shadow-lg: 0 32px 80px rgba(38, 27, 24, .17);
    --font-display: 'Sora', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --container: 1240px;
    --section-space: 60px;
    --section-space-mobile: 40px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.is-locked {
    overflow: hidden;
}

::selection {
    color: #fff;
    background: var(--brand);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    color: inherit;
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
}

svg {
    display: block;
}

p,
h1,
h2,
h3,
ul {
    margin-top: 0;
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 10000;
    padding: 10px 16px;
    transform: translateY(-140%);
    color: #fff;
    background: var(--ink);
    border-radius: 6px;
    transition: transform .2s ease;
}

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

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

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

.section {
    padding-block: var(--section-space);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--brand);
    font-size: .73rem;
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow>i {
    width: 30px;
    height: 2px;
    background: currentColor;
}

.eyebrow--light {
    color: #fff;
}

.section-heading {
    margin-bottom: clamp(28px, 4vw, 44px);
}

.section-heading h2,
.local-section h2,
.about-section h2,
.nationwide-section h2,
.faq-section h2,
.page-content h2 {
    margin-bottom: 18px;
    font-family: var(--font-display);
    /* CSS clamp() requires the minimum value to be below the maximum. */
    font-size: clamp(1.85rem, 3.5vw, 2.25rem);
    line-height: 1.08;
    letter-spacing: -.045em;
}

.section-heading p,
.local-section__content>p,
.about-section__lead,
.nationwide-section p,
.faq-section__intro>p {
    color: var(--muted);
    font-size: clamp(1rem, 1.25vw, 1.1rem);
    line-height: 1.8;
}

.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .75fr);
    align-items: end;
    gap: clamp(40px, 8vw, 110px);
}

.section-heading--split h2 {
    max-width: 760px;
    margin-bottom: 0;
}

.section-heading--split>div:last-child {
    padding-bottom: 6px;
}

.section-heading--split p {
    margin-bottom: 16px;
}

.section-heading--center {
    max-width: 800px;
    margin-inline: auto;
    text-align: center;
}

.section-heading--center .eyebrow {
    justify-content: center;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 7px;
    font-size: .86rem;
    font-weight: 800;
    letter-spacing: -.01em;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, color .25s ease, background .25s ease, border-color .25s ease;
}

.button svg,
.text-link svg,
.service-card__link svg,
.announcement-bar__action svg {
    width: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .25s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button:hover svg,
.text-link:hover svg,
.service-card__link:hover svg,
.announcement-bar__action:hover svg {
    transform: translateX(4px);
}

.button--primary {
    color: #fff;
    background: var(--brand);
    box-shadow: 0 12px 26px rgba(var(--brand-rgb), .23);
}

.button--primary:hover {
    background: var(--brand-dark);
    box-shadow: 0 17px 35px rgba(150, 19, 28, .3);
}

.button--ghost {
    color: var(--ink);
    background: rgba(255, 255, 255, .62);
    border-color: var(--line);
}

.button--ghost:hover {
    color: var(--brand);
    border-color: rgba(var(--brand-rgb), .42);
    background: #fff;
}

.button--light {
    color: var(--brand-dark);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.button--light:hover {
    background: var(--paper);
}

.button--outline-light {
    color: #fff;
    border-color: rgba(255, 255, 255, .55);
    background: transparent;
}

.button--outline-light:hover {
    color: var(--ink);
    background: #fff;
    border-color: #fff;
}

.button--large {
    min-height: 56px;
    padding: 15px 24px;
}

.button--wide {
    width: 100%;
}

.text-link,
.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0;
    color: var(--brand);
    background: transparent;
    border: 0;
    font-size: .85rem;
    font-weight: 800;
    cursor: pointer;
}

/* Announcement and header */
.announcement-bar {
    position: relative;
    z-index: 1002;
    color: #fff;
    background: var(--ink);
}

.announcement-bar__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

.announcement-bar p {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .035em;
}

.announcement-bar__pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff5c64;
    box-shadow: 0 0 0 5px rgba(255, 92, 100, .12);
}

.announcement-bar__action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    color: #fff;
    background: none;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .42);
    font-size: .69rem;
    font-weight: 800;
    cursor: pointer;
}

.announcement-bar__action svg {
    width: 14px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: rgba(251, 248, 244, .92);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    transition: box-shadow .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
    border-color: var(--line);
    box-shadow: 0 10px 36px rgba(32, 28, 27, .08);
}

.header-container {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.header-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex: 0 0 auto;
}

.header-logo img {
    width: auto;
    max-width: 190px;
    max-height: 58px;
    object-fit: contain;
}

.brand-mark {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    flex: 0 0 43px;
    color: #fff;
    background: var(--brand);
    border-radius: 8px 8px 8px 2px;
    transform: rotate(-2deg);
}

.brand-mark svg {
    width: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-copy strong {
    color: var(--brand);
    font-family: var(--font-display);
    font-size: 1.28rem;
    letter-spacing: -.05em;
}

.brand-copy small {
    margin-top: 5px;
    color: var(--ink);
    font-size: .55rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2vw, 28px);
}

.nav-item {
    position: relative;
}

.nav-link {
    min-height: 82px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    position: relative;
    color: var(--ink-2);
    font-size: .76rem;
    font-weight: 800;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    right: 50%;
    bottom: 17px;
    left: 50%;
    height: 2px;
    background: var(--brand);
    transition: left .22s ease, right .22s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--brand);
}

.nav-link:hover::after,
.nav-link.is-active::after {
    right: 0;
    left: 0;
}

.nav-chevron {
    width: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    transition: transform .2s ease;
}

.nav-item:hover .nav-chevron,
.nav-item:focus-within .nav-chevron {
    transform: rotate(180deg);
}

.nav-submenu {
    min-width: 230px;
    position: absolute;
    top: calc(100% - 8px);
    left: -20px;
    padding: 12px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.nav-item:hover .nav-submenu,
.nav-item:focus-within .nav-submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.nav-submenu a {
    display: block;
    padding: 10px 12px;
    border-radius: 5px;
    font-size: .78rem;
    font-weight: 700;
}

.nav-submenu a:hover {
    color: var(--brand);
    background: var(--brand-soft);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 9px;
}

.header-phone__icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: var(--brand);
    background: var(--brand-soft);
    border-radius: 50%;
}

.header-phone__icon svg {
    width: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.header-phone>span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.header-phone small {
    color: var(--muted);
    font-size: .6rem;
    font-weight: 700;
}

.header-phone strong {
    margin-top: 4px;
    font-size: .75rem;
}

.header-quote {
    min-height: 44px;
    padding-inline: 17px;
    font-size: .75rem;
}

.mobile-menu-btn {
    width: 46px;
    height: 46px;
    display: none;
    place-content: center;
    gap: 5px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 7px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 21px;
    height: 2px;
    display: block;
    background: var(--ink);
}

/* Mobile navigation */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 5000;
    visibility: hidden;
    pointer-events: none;
}

.mobile-menu.is-open {
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    border: 0;
    opacity: 0;
    background: rgba(18, 14, 13, .64);
    backdrop-filter: blur(5px);
    transition: opacity .32s ease;
}

.mobile-menu.is-open .mobile-menu__backdrop {
    opacity: 1;
}

.mobile-menu__panel {
    width: min(100%, 520px);
    height: 100dvh;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    overflow: auto;
    padding: 25px;
    transform: translateX(104%);
    color: var(--ink);
    background: var(--paper);
    box-shadow: -30px 0 90px rgba(0, 0, 0, .2);
    transition: transform .42s cubic-bezier(.22, 1, .36, 1);
}

.mobile-menu.is-open .mobile-menu__panel {
    transform: translateX(0);
}

.mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

.mobile-menu__close,
.quote-modal__close {
    width: 44px;
    height: 44px;
    position: relative;
    flex: 0 0 44px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
}

.mobile-menu__close span,
.quote-modal__close span {
    width: 18px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    background: currentColor;
}

.mobile-menu__close span:first-child,
.quote-modal__close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu__close span:last-child,
.quote-modal__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding-block: 26px;
}

.mobile-nav__item {
    border-bottom: 1px solid var(--line);
}

.mobile-nav__row {
    display: flex;
    align-items: stretch;
}

.mobile-nav__row>a {
    flex: 1;
    padding: 15px 0;
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 5vw, 1.35rem);
    font-weight: 700;
    letter-spacing: -.03em;
}

.mobile-nav__toggle {
    width: 52px;
    display: grid;
    place-items: center;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.mobile-nav__toggle svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform .2s;
}

.mobile-nav__toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.mobile-nav__children {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.mobile-nav__item.is-expanded .mobile-nav__children {
    max-height: 380px;
}

.mobile-nav__children a {
    display: block;
    padding: 9px 0 9px 18px;
    color: var(--muted);
    font-size: .9rem;
    font-weight: 700;
}

.mobile-menu__actions {
    margin-top: auto;
    padding-top: 26px;
}

.mobile-menu__actions>.button {
    width: 100%;
}

.mobile-menu__action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.mobile-menu__action-grid a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 7px;
    font-size: .8rem;
    font-weight: 800;
}

/* Home hero */
.home-hero {
    min-height: calc(100dvh - 120px);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding: clamp(48px, 6vw, 85px) 0 30px;
    background: linear-gradient(120deg, #fbf8f4 0%, #f7f1eb 48%, #eee6df 100%);
}

.home-hero::before {
    content: '';
    width: 620px;
    height: 620px;
    position: absolute;
    top: -330px;
    left: 42%;
    border: 1px solid rgba(var(--brand-rgb), .13);
    border-radius: 50%;
    box-shadow: 0 0 0 84px rgba(var(--brand-rgb), .025), 0 0 0 168px rgba(var(--brand-rgb), .02);
}

.home-hero::after {
    content: '';
    height: 72px;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .72));
    pointer-events: none;
}

.home-hero__route {
    position: absolute;
    right: 0;
    bottom: 4%;
    left: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: .55;
    transform: rotate(-3.5deg);
    color: var(--brand);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .15em;
    pointer-events: none;
}

.home-hero__route i {
    height: 1px;
    flex: 1;
    background: repeating-linear-gradient(90deg, var(--brand) 0 12px, transparent 12px 22px);
}

.home-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
    align-items: center;
    gap: clamp(30px, 5vw, 76px);
    position: relative;
    z-index: 2;
}

.home-hero__content {
    padding-bottom: 58px;
}

.home-hero h1 {
    max-width: 700px;
    margin-bottom: 18px;
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 3.8vw, 4rem);
    line-height: .96;
    letter-spacing: -.07em;
}

.home-hero h1 strong {
    display: block;
    color: var(--brand);
    font-weight: inherit;
}

.home-hero__content>p:not(.home-hero__micro) {
    max-width: 600px;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: clamp(.94rem, 1.15vw, 1.06rem);
    line-height: 1.7;
}

.home-hero__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.home-hero__micro {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: .75rem;
    font-weight: 700;
}

.home-hero__micro svg {
    width: 18px;
    flex: 0 0 18px;
    fill: none;
    stroke: var(--green);
    stroke-width: 2.4;
}

.home-hero__visual {
    min-width: 0;
    position: relative;
}

.home-hero__media {
    overflow: hidden;
    position: relative;
    border-radius: 12px 12px 12px 2px;
    box-shadow: var(--shadow-lg);
    transform: rotate(1.2deg);
}

.home-hero__media::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: inherit;
    pointer-events: none;
}

.home-hero__media img,
.home-hero__media video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
}

.home-hero__stamp {
    width: 118px;
    height: 118px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: absolute;
    top: -34px;
    right: -22px;
    transform: rotate(8deg);
    color: #fff;
    background: var(--brand);
    border: 6px solid var(--paper);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    z-index: 3;
}

.home-hero__stamp span {
    font-family: var(--font-display);
    font-size: 2.05rem;
    font-weight: 800;
    letter-spacing: -.07em;
}

.home-hero__stamp small {
    font-size: .51rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: .08em;
}

.home-hero__floating-card {
    max-width: 320px;
    display: flex;
    gap: 13px;
    position: absolute;
    right: -16px;
    bottom: -32px;
    padding: 14px 18px;
    transform: rotate(-1deg);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 4;
}

.home-hero__floating-icon {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    flex: 0 0 39px;
    color: #fff;
    background: var(--ink);
    border-radius: 7px;
}

.home-hero__floating-card strong {
    display: block;
    margin-bottom: 3px;
    font-family: var(--font-display);
    font-size: .83rem;
}

.home-hero__floating-card p {
    margin: 0;
    color: var(--muted);
    font-size: .67rem;
    line-height: 1.45;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 3;
    margin-top: 65px;
    background: rgba(255, 255, 255, .74);
    border: 1px solid rgba(32, 28, 27, .1);
    border-radius: 9px;
    box-shadow: 0 18px 50px rgba(32, 28, 27, .06);
    backdrop-filter: blur(14px);
}

.trust-strip__item {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px 20px;
}

.trust-strip__item+.trust-strip__item {
    border-left: 1px solid var(--line);
}

.trust-strip__item>span {
    color: rgba(var(--brand-rgb), .27);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
}

.trust-strip__item div {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.trust-strip__item strong {
    overflow: hidden;
    font-family: var(--font-display);
    font-size: .83rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.trust-strip__item small {
    overflow: hidden;
    margin-top: 2px;
    color: var(--muted);
    font-size: .62rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Services */
.services-section {
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 9px;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--brand-rgb), .28);
    box-shadow: var(--shadow-lg);
}

.service-card__media {
    display: block;
    overflow: hidden;
    position: relative;
    background: var(--stone);
}

.service-card__media img,
.service-card__placeholder {
    width: 100%;
    aspect-ratio: 1.22 / 1;
}

.service-card__media img {
    object-fit: cover;
    transition: transform .55s cubic-bezier(.22, 1, .36, 1);
}

.service-card:hover .service-card__media img {
    transform: scale(1.055);
}

.service-card__placeholder {
    display: grid;
    place-items: center;
    position: relative;
    color: var(--brand);
    background: radial-gradient(circle at 64% 30%, #fff 0 12%, transparent 13%), linear-gradient(135deg, #f8ece9, #e8ddd5);
}

.service-card__placeholder::before {
    content: '';
    width: 130%;
    height: 1px;
    position: absolute;
    transform: rotate(-25deg);
    background: rgba(var(--brand-rgb), .16);
    box-shadow: 0 28px 0 rgba(var(--brand-rgb), .08), 0 -28px 0 rgba(var(--brand-rgb), .08);
}

.service-card__placeholder i {
    position: relative;
    z-index: 1;
    font-size: 4rem;
    filter: drop-shadow(0 12px 12px rgba(var(--brand-rgb), .16));
}

.service-card__index {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    position: absolute;
    right: 13px;
    bottom: 13px;
    color: #fff;
    background: var(--brand);
    border: 4px solid var(--paper);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: .72rem;
    font-weight: 800;
}

.service-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px 22px 22px;
}

.service-card h3 {
    margin-bottom: 11px;
    font-family: var(--font-display);
    font-size: 1.08rem;
    line-height: 1.35;
    letter-spacing: -.035em;
}

.service-card h3 a:hover {
    color: var(--brand);
}

.service-card p {
    margin-bottom: 18px;
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.7;
}

.service-card__link {
    margin-top: auto;
}

/* Local / process / about */
.local-section {
    padding-block: 0;
    color: #fff;
    background: var(--ink);
}

.local-section__grid {
    min-height: 650px;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    align-items: stretch;
}

.local-section__visual {
    min-height: 580px;
    overflow: hidden;
    position: relative;
    margin-left: calc((100vw - min(100vw - 40px, var(--container))) / -2);
    background: #342e2c;
}

.local-section__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .68;
}

.local-map-art {
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: radial-gradient(circle at center, rgba(var(--brand-rgb), .26), transparent 38%), url('../../../images/site/route-pattern.svg') center / cover, linear-gradient(145deg, #3d3633, #181515);
}

.local-map-art::before {
    content: '';
    width: 580px;
    height: 580px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(255, 255, 255, .025), 0 0 0 160px rgba(255, 255, 255, .02);
}

.local-map-art__pin {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    position: relative;
    z-index: 1;
    margin: 0 auto 16px;
    color: #fff;
    background: var(--brand);
    border: 8px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
    font-size: 2rem;
}

.local-map-art strong {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 7rem;
    line-height: .9;
    letter-spacing: -.08em;
}

.local-map-art small {
    position: relative;
    z-index: 1;
    margin-top: 14px;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .2em;
}

.local-section__label {
    display: flex;
    align-items: center;
    gap: 9px;
    position: absolute;
    right: 24px;
    bottom: 24px;
    padding: 11px 15px;
    color: var(--ink);
    background: #fff;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    font-size: .72rem;
    font-weight: 800;
}

.local-section__label i {
    color: var(--brand);
}

.local-section__content {
    align-self: center;
    padding: 60px 0 60px clamp(45px, 7vw, 100px);
}

.local-section__content h2 {
    max-width: 670px;
}

.local-section__content>p {
    max-width: 650px;
    color: rgba(255, 255, 255, .65);
}

.area-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 27px 0 30px;
}

.area-chips span {
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 4px;
    color: rgba(255, 255, 255, .82);
    font-size: .68rem;
    font-weight: 700;
}

.process-section {
    overflow: hidden;
    background: var(--paper);
}

.process-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    position: relative;
    gap: 20px;
}

.process-track::before {
    content: '';
    height: 1px;
    position: absolute;
    top: 44px;
    right: 7%;
    left: 7%;
    z-index: 0;
    background: repeating-linear-gradient(90deg, rgba(var(--brand-rgb), .35) 0 10px, transparent 10px 18px);
}

.process-step {
    min-height: 280px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.process-step__media,
.process-step__overlay {
    position: absolute;
    inset: 0;
}

.process-step__media-asset {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-step__overlay {
    z-index: 0;
    background: linear-gradient(180deg, rgba(24, 19, 18, .38), rgba(24, 19, 18, .9));
}

.process-step__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    margin-bottom: 38px;
}

.process-step__head span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--brand);
    border-radius: 50%;
    box-shadow: 0 0 0 8px var(--paper);
    font-family: var(--font-display);
    font-size: .72rem;
    font-weight: 800;
}

.process-step__head i {
    color: rgba(var(--brand-rgb), .26);
    font-size: 2rem;
}

.process-step__body {
    position: relative;
    z-index: 1;
}

.process-step h3 {
    margin-bottom: 10px;
    font-family: var(--font-display);
    font-size: 1.05rem;
    letter-spacing: -.03em;
}

.process-step p {
    margin: 0;
    color: var(--muted);
    font-size: .8rem;
    line-height: 1.75;
}

.process-step--media {
    color: #fff;
    background: var(--ink);
    border-color: rgba(255, 255, 255, .16);
}

.process-step--media .process-step__head span {
    box-shadow: 0 0 0 8px rgba(255, 255, 255, .18);
}

.process-step--media .process-step__head i {
    color: rgba(255, 255, 255, .58);
}

.process-step--media p {
    color: rgba(255, 255, 255, .78);
}

.about-section {
    background: #fff;
}

.about-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: clamp(55px, 9vw, 130px);
}

.about-section__content {
    height: 100%;
}

.about-section__lead {
    max-width: 650px;
}

.why-list {
    display: grid;
    margin: 30px 0 28px;
    border-top: 1px solid var(--line);
}

.why-list__item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding-block: 18px;
    border-bottom: 1px solid var(--line);
}

.why-list__item>span {
    color: var(--brand);
    font-family: var(--font-display);
    font-size: .75rem;
    font-weight: 800;
}

.why-list__item h3 {
    margin-bottom: 4px;
    font-family: var(--font-display);
    font-size: .98rem;
}

.why-list__item p {
    margin: 0;
    color: var(--muted);
    font-size: .8rem;
}

.about-section__visual {
    height: 100%;
    min-height: 100%;
    display: flex;
    position: relative;
}

.about-section__media {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    border-radius: 8px 8px 8px 80px;
    box-shadow: var(--shadow-lg);
}

.about-section__visual::before {
    content: '';
    position: absolute;
    inset: -22px 22px 22px -22px;
    z-index: -1;
    border: 1px solid rgba(var(--brand-rgb), .3);
    border-radius: 8px 8px 8px 88px;
}

.about-section__badge {
    display: flex;
    align-items: center;
    gap: 13px;
    position: absolute;
    right: -25px;
    bottom: 38px;
    padding: 15px 19px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 7px;
    box-shadow: var(--shadow-lg);
}

.about-section__badge i {
    color: var(--brand);
    font-size: 1.55rem;
}

.about-section__badge span {
    display: flex;
    flex-direction: column;
    color: var(--muted);
    font-size: .66rem;
}

.about-section__badge strong {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: .78rem;
}

/* Nationwide / gallery / blog / FAQ */
.nationwide-section {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: var(--brand);
}

.nationwide-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .8;
    background: url('../../../images/site/route-pattern.svg') center / cover;
}

.nationwide-section__media {
    position: absolute;
    inset: 0;
}

.nationwide-section__media img,
.nationwide-section__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .22;
    mix-blend-mode: multiply;
}

.nationwide-section__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.nationwide-section h2 {
    max-width: 820px;
}

.nationwide-section p {
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .78);
}

.nationwide-section__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 240px;
}

.gallery-section {
    background: var(--paper);
}

.gallery-mosaic {
    height: clamp(360px, 34vw, 440px);
    display: grid;
    grid-template-columns: 1.22fr 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 14px;
}

.gallery-mosaic__item {
    overflow: hidden;
    position: relative;
    background: var(--stone);
    border-radius: 10px;
    min-height: 0;
    min-width: 0;
    box-shadow: 0 6px 20px rgba(32, 28, 27, 0.07);
}

.gallery-mosaic__item--1 {
    grid-column: 1;
    grid-row: 1 / 3;
}

.gallery-mosaic__item--2 {
    grid-column: 2;
    grid-row: 1;
}

.gallery-mosaic__item--3 {
    grid-column: 3;
    grid-row: 1;
}

.gallery-mosaic__item--4 {
    grid-column: 2;
    grid-row: 2;
}

.gallery-mosaic__item--5 {
    grid-column: 3;
    grid-row: 2;
}

.gallery-mosaic__item:nth-child(n+6) {
    display: none;
}

.gallery-mosaic__item img,
.gallery-mosaic__item video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1), filter .4s ease;
}

.gallery-mosaic__item>span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    position: absolute;
    right: 14px;
    bottom: 14px;
    opacity: 0;
    transform: translateY(6px);
    color: #fff;
    background: var(--brand);
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: opacity .25s ease, transform .25s ease;
    pointer-events: none;
}

.gallery-mosaic__item:hover img {
    transform: scale(1.04);
    filter: brightness(.82);
}

.gallery-mosaic__item:hover>span {
    opacity: 1;
    transform: translateY(0);
}

.blog-section {
    background: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.blog-card {
    overflow: hidden;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.blog-card__media {
    display: block;
    overflow: hidden;
}

.blog-card__media img {
    width: 100%;
    aspect-ratio: 1.58 / 1;
    object-fit: cover;
    transition: transform .5s ease;
}

.blog-card:hover .blog-card__media img {
    transform: scale(1.045);
}

.blog-card__body {
    padding: 24px;
}

.blog-card__body>span {
    display: block;
    margin-bottom: 11px;
    color: var(--brand);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.blog-card h3 {
    margin-bottom: 10px;
    font-family: var(--font-display);
    font-size: 1.12rem;
    line-height: 1.4;
    letter-spacing: -.035em;
}

.blog-card h3 a:hover {
    color: var(--brand);
}

.blog-card p {
    color: var(--muted);
    font-size: .8rem;
}

.faq-section {
    background: var(--paper);
}

.faq-section__grid {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    align-items: start;
    gap: clamp(50px, 9vw, 120px);
}

.faq-section__intro {
    position: sticky;
    top: 120px;
}

.faq-section__intro .button {
    margin-top: 12px;
}

.faq-item {
    border-top: 1px solid var(--line);
}

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

.faq-item summary {
    min-height: 82px;
    display: grid;
    grid-template-columns: 36px 1fr 30px;
    align-items: center;
    gap: 14px;
    list-style: none;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -.025em;
    cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary>span {
    color: rgba(var(--brand-rgb), .45);
    font-size: .67rem;
}

.faq-item summary>i {
    width: 24px;
    height: 24px;
    position: relative;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.faq-item summary>i::before,
.faq-item summary>i::after {
    content: '';
    width: 9px;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform .2s;
}

.faq-item summary>i::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary {
    color: var(--brand);
}

.faq-item[open] summary>i::after {
    transform: translate(-50%, -50%) rotate(0);
}

.faq-item>div {
    padding: 0 45px 23px 50px;
}

.faq-item p {
    margin: 0;
    color: var(--muted);
    font-size: .87rem;
}

.final-cta-section {
    padding: 0 0 var(--section-space);
    background: var(--paper);
}

.final-cta {
    min-height: 250px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(30px, 5vw, 70px);
    overflow: hidden;
    position: relative;
    padding: clamp(38px, 5vw, 65px);
    color: #fff;
    background: var(--ink);
    border-radius: 10px;
}

.final-cta::after {
    content: '';
    width: 340px;
    height: 340px;
    position: absolute;
    right: 18%;
    bottom: -270px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    box-shadow: 0 0 0 60px rgba(255, 255, 255, .025), 0 0 0 120px rgba(255, 255, 255, .02);
}

.final-cta__label {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, .38);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .2em;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.final-cta>div {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    margin-bottom: 9px;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.1vw, 2.8rem);
    line-height: 1.15;
    letter-spacing: -.045em;
}

.final-cta p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: .9rem;
}

.final-cta .button {
    position: relative;
    z-index: 1;
}

/* Page hero and inner pages */
.page-hero {
    min-height: clamp(220px, 22vw, 300px);
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding: clamp(32px, 3.5vw, 48px) 0;
    color: #fff;
    background: var(--ink);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(22, 18, 17, .94), rgba(22, 18, 17, .55) 58%, rgba(22, 18, 17, .34));
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: .65;
    background: url('../../../images/site/route-pattern.svg') center / cover;
}

.page-hero__media {
    position: absolute;
    inset: 0;
}

.page-hero__media img,
.page-hero__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .55;
}

.page-hero__inner {
    position: relative;
    z-index: 2;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 21px;
    color: rgba(255, 255, 255, .62);
    font-size: .7rem;
    font-weight: 700;
}

.breadcrumbs a:hover {
    color: #fff;
}

.breadcrumbs i {
    font-size: .55rem;
}

.page-hero h1 {
    max-width: 680px;
    margin-bottom: 11px;
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.5vw, 3.3rem);
    line-height: 1.02;
    letter-spacing: -.065em;
}

.page-hero p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: clamp(.9rem, 1.12vw, 1rem);
    line-height: 1.65;
}

.page-content {
    background: #fff;
}

.page-content__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: start;
    gap: clamp(45px, 8vw, 100px);
}

.rich-content {
    color: var(--ink-2);
}

.rich-content h2,
.rich-content h3 {
    color: var(--ink);
    font-family: var(--font-display);
    line-height: 1.25;
    letter-spacing: -.04em;
}

.rich-content h2 {
    margin: 42px 0 16px;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.rich-content h2:first-child {
    margin-top: 0;
}

.rich-content h3 {
    margin: 30px 0 12px;
    font-size: 1.25rem;
}

.rich-content p {
    margin-bottom: 20px;
}

.rich-content ul {
    padding-left: 22px;
}

.rich-content li+li {
    margin-top: 8px;
}

.sidebar-card {
    padding: 28px;
    position: sticky;
    top: 120px;
    color: #fff;
    background: var(--brand);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.sidebar-card h2 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.sidebar-card p {
    color: rgba(255, 255, 255, .77);
    font-size: .82rem;
}

.sidebar-card .button {
    width: 100%;
    margin-top: 8px;
}

.sidebar-card__links {
    display: grid;
    margin-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.sidebar-card__links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-block: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    font-size: .75rem;
    font-weight: 800;
}

.sidebar-card__links a:hover {
    padding-left: 5px;
}

.inner-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.inner-services-grid .service-card__media img,
.inner-services-grid .service-card__placeholder {
    aspect-ratio: 16 / 10;
}

.service-detail__lead {
    font-size: 1.12rem;
    font-weight: 600;
}

.service-detail__media {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 36px;
    object-fit: cover;
    border-radius: 8px;
}

.areas-page-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.area-card {
    min-height: 130px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 20px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 7px;
}

.area-card strong {
    font-family: var(--font-display);
    font-size: .9rem;
}

.area-card i {
    color: var(--brand);
    font-size: 1.25rem;
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.gallery-page-grid a,
.gallery-page-grid__video {
    overflow: hidden;
    position: relative;
    background: var(--stone);
    border-radius: 7px;
}

.gallery-page-grid img,
.gallery-page-grid video {
    width: 100%;
    aspect-ratio: 1.25 / 1;
    object-fit: cover;
    transition: transform .45s ease;
}

.gallery-page-grid a:hover img {
    transform: scale(1.05);
}

.blog-list-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 700;
}

.empty-state {
    padding: clamp(45px, 8vw, 90px);
    text-align: center;
    background: var(--paper);
    border: 1px dashed rgba(32, 28, 27, .2);
    border-radius: 9px;
}

.empty-state h2 {
    margin-bottom: 10px;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.empty-state p {
    max-width: 650px;
    margin: 0 auto 22px;
    color: var(--muted);
}

.error-page {
    min-height: 72vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 50% 38%, rgba(var(--brand-rgb), .11), transparent 32%), var(--paper);
}

.error-page__inner {
    text-align: center;
}

.error-page__inner>span {
    display: block;
    color: rgba(var(--brand-rgb), .18);
    font-family: var(--font-display);
    font-size: clamp(7rem, 22vw, 18rem);
    font-weight: 800;
    line-height: .8;
    letter-spacing: -.1em;
}

.error-page h1 {
    margin: -10px 0 14px;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: -.055em;
}

.error-page p {
    margin-bottom: 26px;
    color: var(--muted);
}

.error-page__inner>div {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Forms and contact */
.contact-section {
    background: #fff;
}

.contact-layout {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    align-items: stretch;
    gap: 22px;
}

.contact-panel {
    padding: clamp(30px, 5vw, 55px);
    color: #fff;
    background: var(--ink);
    border-radius: 9px;
}

.contact-panel h2 {
    margin-bottom: 15px;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.contact-panel>p {
    color: rgba(255, 255, 255, .63);
}

.contact-items {
    display: grid;
    margin-top: 30px;
}

.contact-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 13px;
    padding-block: 16px;
    border-top: 1px solid rgba(255, 255, 255, .13);
}

.contact-item i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--brand);
    border-radius: 50%;
}

.contact-item span {
    display: flex;
    flex-direction: column;
}

.contact-item small {
    color: rgba(255, 255, 255, .5);
    font-size: .63rem;
    font-weight: 700;
}

.contact-item strong {
    margin-top: 2px;
    font-size: .84rem;
}

.contact-form-card {
    padding: clamp(30px, 5vw, 55px);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 9px;
}

.contact-form-card h2 {
    margin-bottom: 24px;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.site-form {
    display: grid;
    gap: 17px;
}

.form-row--two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-field {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-field label {
    color: var(--ink-2);
    font-size: .7rem;
    font-weight: 800;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    min-height: 51px;
    padding: 12px 14px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    outline: 0;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.form-field textarea {
    min-height: 112px;
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(var(--brand-rgb), .1);
}

.form-result {
    min-height: 0;
}

.form-result:not(:empty) {
    padding: 11px 13px;
    border-radius: 5px;
    font-size: .78rem;
    font-weight: 700;
}

.form-result.is-success {
    color: #0b6242;
    background: #e4f7ef;
}

.form-result.is-error {
    color: #8e1520;
    background: #fbe9e9;
}

.form-honeypot {
    width: 1px !important;
    height: 1px !important;
    position: absolute !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}

.map-frame {
    overflow: hidden;
    margin-top: 22px;
    border-radius: 9px;
}

.map-frame iframe {
    width: 100%;
    min-height: 420px;
    display: block;
    border: 0;
}

/* Footer */
.site-footer {
    overflow: hidden;
    position: relative;
    padding: 82px 0 20px;
    color: #fff;
    background: #181514;
}

.site-footer__route {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    opacity: .15;
    transform: rotate(-2deg);
}

.site-footer__route span {
    height: 1px;
    display: block;
    background: repeating-linear-gradient(90deg, #fff 0 12px, transparent 12px 23px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .72fr .85fr 1.1fr;
    gap: clamp(30px, 5vw, 70px);
    position: relative;
    z-index: 1;
    padding-bottom: 52px;
}

.header-logo--footer .brand-copy small {
    color: rgba(255, 255, 255, .65);
}

.footer-brand>p {
    max-width: 350px;
    margin: 22px 0;
    color: rgba(255, 255, 255, .57);
    font-size: .8rem;
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .72);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
}

.footer-socials a:hover {
    color: #fff;
    background: var(--brand);
    border-color: var(--brand);
}

.footer-col h2 {
    margin-bottom: 21px;
    font-family: var(--font-display);
    font-size: .9rem;
    letter-spacing: -.02em;
}

.footer-col>a {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .57);
    font-size: .72rem;
    font-weight: 600;
}

.footer-col>a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-col>a>i {
    margin-top: 2px;
    color: var(--brand);
    font-size: .65rem;
}

.footer-contact>a,
.footer-contact__item {
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: start;
    gap: 8px;
}

.footer-contact>a>i,
.footer-contact__item>i {
    margin-top: 3px;
    color: var(--brand);
    font-size: .8rem;
}

.footer-contact>a span,
.footer-contact__item span {
    display: flex;
    flex-direction: column;
}

.footer-contact small {
    margin-bottom: 2px;
    color: rgba(255, 255, 255, .35);
    font-size: .58rem;
}

.footer-contact__item {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, .57);
    font-size: .7rem;
}

.footer-quote {
    margin-top: 10px;
}

.footer-bottom {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 18px;
    padding-inline: clamp(48px, 6vw, 88px);
    color: rgba(255, 255, 255, .4);
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: .65rem;
}

.footer-backlink {
    color: rgba(255, 255, 255, .8);
    font-weight: 800;
}

.footer-backlink:hover {
    color: #fff;
}

/* Sticky contact */
.sticky-actions {
    position: fixed;
    inset: 0;
    z-index: 1200;
    pointer-events: none;
}

.sticky-action {
    width: 56px;
    height: 56px;
    min-height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 24px;
    padding: 0;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .9);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
    font-size: 1.45rem;
    pointer-events: auto;
    transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), box-shadow .25s ease;
    z-index: 1200;
}

.sticky-action span {
    display: none;
}

.sticky-action i {
    font-size: 1.45rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s ease;
}

.sticky-action::before,
.sticky-action::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.sticky-phone {
    left: 24px;
    background: var(--brand);
}

.sticky-phone::before {
    animation: sticky-wave-phone 2.4s cubic-bezier(.24, 0, .38, 1) infinite;
}

.sticky-phone::after {
    animation: sticky-wave-phone 2.4s cubic-bezier(.24, 0, .38, 1) .8s infinite;
}

.sticky-whatsapp {
    right: 24px;
    background: #25d366;
}

.sticky-whatsapp::before {
    animation: sticky-wave-wa 2.4s cubic-bezier(.24, 0, .38, 1) infinite;
}

.sticky-whatsapp::after {
    animation: sticky-wave-wa 2.4s cubic-bezier(.24, 0, .38, 1) .8s infinite;
}

@keyframes sticky-wave-phone {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(var(--brand-rgb), 0.75);
        opacity: 1;
    }

    70% {
        transform: scale(1.48);
        box-shadow: 0 0 0 16px rgba(var(--brand-rgb), 0);
        opacity: 0;
    }

    100% {
        transform: scale(1.48);
        box-shadow: 0 0 0 0 rgba(var(--brand-rgb), 0);
        opacity: 0;
    }
}

@keyframes sticky-wave-wa {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.75);
        opacity: 1;
    }

    70% {
        transform: scale(1.48);
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
        opacity: 0;
    }

    100% {
        transform: scale(1.48);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        opacity: 0;
    }
}

.sticky-action:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .28);
}

.sticky-action:hover i {
    transform: scale(1.1);
}

/* Quote modal */
.quote-modal {
    position: fixed;
    inset: 0;
    z-index: 6000;
    display: grid;
    place-items: center;
    overflow: hidden;
    visibility: hidden;
    padding: 24px;
    overscroll-behavior: none;
    pointer-events: none;
}

.quote-modal.is-open {
    visibility: visible;
    pointer-events: auto;
}

.quote-modal__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    opacity: 0;
    background: rgba(17, 13, 12, .76);
    border: 0;
    backdrop-filter: blur(8px);
    transition: opacity .28s ease;
}

.quote-modal.is-open .quote-modal__backdrop {
    opacity: 1;
}

.quote-modal__dialog {
    width: min(100%, 1040px);
    height: min(90dvh, 720px);
    max-height: none;
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: translateY(26px) scale(.985);
    background: var(--paper);
    border-radius: 12px;
    box-shadow: 0 40px 120px rgba(0, 0, 0, .36);
    scrollbar-width: none;
    transition: opacity .3s ease, transform .4s cubic-bezier(.22, 1, .36, 1);
}

.quote-modal__dialog::-webkit-scrollbar {
    display: none;
}

.quote-modal.is-open .quote-modal__dialog {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.quote-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
}

.quote-modal__intro {
    min-height: 100%;
    padding: clamp(42px, 6vw, 70px) clamp(30px, 5vw, 56px);
    color: #fff;
    background: var(--brand) url('../../../images/site/route-pattern.svg') center / cover;
}

.quote-modal__intro h2 {
    margin-bottom: 16px;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.04;
    letter-spacing: -.055em;
}

.quote-modal__intro>p {
    color: rgba(255, 255, 255, .76);
    font-size: .88rem;
}

.quote-modal__steps {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 38px;
}

.quote-modal__steps span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    font-size: .63rem;
    font-weight: 800;
}

.quote-modal__steps i {
    width: 36px;
    height: 1px;
    background: rgba(255, 255, 255, .35);
}

.quote-form {
    max-height: 100%;
    min-height: 0;
    align-self: stretch;
    align-content: center;
    gap: 13px;
    overflow: hidden;
    padding: clamp(30px, 4vw, 48px);
}

.quote-form .form-field {
    gap: 5px;
}

.quote-form .form-field input,
.quote-form .form-field select {
    min-height: 46px;
    padding-block: 9px;
}

.quote-form .form-field textarea {
    min-height: 84px;
    height: 84px;
    padding-block: 9px;
    resize: none;
}

.quote-form .button {
    min-height: 50px;
}

@media (min-width: 901px) {
    .home-hero {
        height: calc(100vh - 120px);
        height: calc(100dvh - 120px);
        min-height: 0;
        padding: clamp(26px, 4vh, 44px) 0 clamp(18px, 2.5vh, 28px);
    }

    .home-hero__content {
        padding-bottom: 0;
    }

    .home-hero__grid {
        flex: 1 1 auto;
        align-content: center;
        min-height: 0;
    }

    .home-hero h1,
    .home-hero h1 strong {
        white-space: nowrap;
    }

    .home-hero__media img,
    .home-hero__media video {
        max-height: 420px;
        aspect-ratio: 16 / 9;
    }

    .trust-strip {
        margin-top: clamp(20px, 3vh, 36px);
        flex-shrink: 0;
    }
}

@media (min-width: 901px) and (max-height: 820px) {
    .home-hero {
        padding-top: 22px;
        padding-bottom: 16px;
    }

    .home-hero .eyebrow {
        margin-bottom: 11px;
    }

    .home-hero h1 {
        margin-bottom: 14px;
        font-size: clamp(2.25rem, 3.5vw, 3.6rem);
    }

    .home-hero__content>p:not(.home-hero__micro) {
        margin-bottom: 18px;
        line-height: 1.62;
    }

    .home-hero__micro {
        margin-top: 10px;
    }

    .home-hero__media img,
    .home-hero__media video {
        max-height: 310px;
    }

    .home-hero__stamp {
        width: 98px;
        height: 98px;
        top: -24px;
        right: -14px;
        border-width: 5px;
    }

    .home-hero__stamp span {
        font-size: 1.65rem;
    }

    .home-hero__floating-card {
        bottom: -24px;
    }

    .trust-strip__item {
        padding: 12px 16px;
    }
}

/* Lightbox and motion */
.site-lightbox {
    position: fixed;
    inset: 0;
    z-index: 7000;
    display: grid;
    place-items: center;
    padding: 25px;
    color: #fff;
    background: rgba(13, 10, 9, .92);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

.site-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.site-lightbox img {
    max-width: min(1200px, 92vw);
    max-height: 84vh;
    object-fit: contain;
    box-shadow: 0 30px 100px rgba(0, 0, 0, .4);
}

.site-lightbox button {
    width: 45px;
    height: 45px;
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    cursor: pointer;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s cubic-bezier(.22, 1, .36, 1);
}

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

@media (max-width: 1160px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: grid;
    }

    .header-phone {
        display: none;
    }

    .home-hero__grid {
        grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    }

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

    .inner-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1.3fr .7fr .9fr;
    }

    .footer-contact {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        align-items: start;
        padding-top: 28px;
        border-top: 1px solid rgba(255, 255, 255, .1);
    }

    .footer-contact h2 {
        grid-column: 1 / -1;
        margin-bottom: 0;
    }

    .footer-contact .footer-quote {
        width: max-content;
        margin: 0;
    }
}

@media (max-width: 900px) {
    :root {
        --section-space: 48px;
    }

    .section-heading--split,
    .home-hero__grid,
    .local-section__grid,
    .about-section__grid,
    .faq-section__grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .section-heading--split {
        gap: 18px;
    }

    .home-hero {
        height: auto;
        min-height: auto;
        display: block;
        padding-top: 52px;
    }

    .home-hero__content {
        padding-bottom: 10px;
    }

    .home-hero__visual {
        max-width: 580px;
        width: 100%;
        margin-inline: auto;
        margin-top: 20px;
    }

    .home-hero__media {
        overflow: hidden;
    }

    .home-hero__media img,
    .home-hero__media video {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        max-height: 280px;
        object-fit: cover;
        object-position: center;
    }

    .trust-strip {
        margin-top: 55px;
    }

    .local-section__grid {
        width: 100%;
    }

    .local-section__visual {
        min-height: 420px;
        margin-left: 0;
    }

    .local-section__content {
        width: min(100% - 40px, var(--container));
        margin-inline: auto;
        padding: 48px 0;
    }

    .process-track {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-track::before {
        display: none;
    }

    .about-section__visual {
        height: auto;
        min-height: 0;
        max-width: 680px;
        order: -1;
    }

    .about-section__media {
        height: auto;
        min-height: 0;
        aspect-ratio: 1 / 1.08;
    }

    .nationwide-section__inner {
        grid-template-columns: 1fr;
    }

    .nationwide-section__actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-section__intro {
        position: static;
    }

    .page-content__grid {
        grid-template-columns: 1fr;
    }

    .sidebar-card {
        position: static;
    }

    .areas-page-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-mosaic {
        height: clamp(300px, 40vw, 360px);
        gap: 10px;
    }

    .inner-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .gallery-page-grid,
    .blog-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quote-modal__dialog {
        height: min(94dvh, 760px);
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }

    .quote-modal__intro {
        min-height: auto;
        padding: 28px 30px 22px;
    }

    .quote-modal__intro .eyebrow {
        margin-bottom: 8px;
    }

    .quote-modal__intro h2 {
        margin-bottom: 8px;
        font-size: clamp(1.65rem, 5vw, 2.25rem);
    }

    .quote-modal__intro>p {
        margin-bottom: 0;
    }

    .quote-modal__steps {
        display: none;
    }

    .quote-form {
        padding: 22px 30px;
    }
}

@media (max-width: 700px) {
    :root {
        --section-space: var(--section-space-mobile);
    }

    .site-container {
        width: min(100% - 30px, var(--container));
    }

    .announcement-bar__inner {
        min-height: 34px;
        justify-content: center;
    }

    .announcement-bar p {
        font-size: .6rem;
        text-align: center;
    }

    .announcement-bar__action {
        display: none;
    }

    .header-container {
        min-height: 70px;
    }

    .header-logo {
        gap: 8px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .brand-mark svg {
        width: 28px;
    }

    .brand-copy strong {
        font-size: 1.1rem;
    }

    .brand-copy small {
        font-size: .46rem;
    }

    .header-quote {
        display: none;
    }

    .home-hero {
        padding-top: 46px;
    }

    .home-hero h1 {
        font-size: clamp(2.45rem, 10.5vw, 3.8rem);
    }

    .home-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .home-hero__actions .button {
        width: 100%;
    }

    .home-hero__visual {
        max-width: 100%;
        margin-inline: auto;
        margin-top: 18px;
    }

    .home-hero__media {
        border-radius: 10px;
        transform: none;
        overflow: hidden;
    }

    .home-hero__media img,
    .home-hero__media video {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 8.5;
        max-height: 210px;
        object-fit: cover;
        object-position: center;
    }

    .home-hero__stamp {
        width: 78px;
        height: 78px;
        top: -16px;
        right: -6px;
        border-width: 3px;
    }

    .home-hero__stamp span {
        font-size: 1.25rem;
    }

    .home-hero__stamp small {
        font-size: .38rem;
    }

    .home-hero__floating-card {
        max-width: calc(100% - 20px);
        right: 10px;
        bottom: -28px;
        padding: 9px 13px;
        gap: 10px;
    }

    .home-hero__floating-icon {
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
        font-size: .82rem;
    }

    .home-hero__floating-card strong {
        font-size: .74rem;
        margin-bottom: 2px;
    }

    .home-hero__floating-card p {
        font-size: .62rem;
        line-height: 1.35;
    }

    .trust-strip {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        margin-top: 48px;
    }

    .trust-strip__item {
        min-width: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        padding: 12px 7px;
    }

    .trust-strip__item>span {
        font-size: .72rem;
    }

    .trust-strip__item strong,
    .trust-strip__item small {
        width: 100%;
        font-size: clamp(.45rem, 2vw, .62rem);
    }

    .trust-strip__item small {
        white-space: normal;
        line-height: 1.25;
    }

    .services-grid,
    .process-track,
    .inner-services-grid {
        grid-template-columns: 1fr;
    }

    .service-card__media img,
    .service-card__placeholder {
        aspect-ratio: 1.45 / 1;
    }

    .local-section__visual {
        min-height: 390px;
    }

    .local-map-art strong {
        font-size: 5.5rem;
    }

    .about-section__visual::before {
        inset: -12px 12px 12px -12px;
    }

    .about-section__badge {
        right: 12px;
        bottom: 18px;
    }

    .nationwide-section__actions {
        flex-direction: column;
    }

    .nationwide-section__actions .button {
        width: 100%;
    }

    .gallery-mosaic {
        height: auto;
        min-height: 0;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 10px;
    }

    .gallery-mosaic__item--1 {
        grid-column: 1 / 3;
        grid-row: 1;
        aspect-ratio: 16 / 9;
        max-height: 210px;
    }

    .gallery-mosaic__item--2,
    .gallery-mosaic__item--3,
    .gallery-mosaic__item--4,
    .gallery-mosaic__item--5 {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 4 / 3;
        max-height: 135px;
    }

    .blog-grid,
    .blog-list-grid,
    .gallery-page-grid {
        grid-template-columns: 1fr;
    }

    .faq-item summary {
        min-height: 76px;
        grid-template-columns: 26px 1fr 25px;
        gap: 9px;
        font-size: .88rem;
    }

    .faq-item>div {
        padding: 0 28px 20px 35px;
    }

    .final-cta {
        grid-template-columns: 1fr;
        padding: 34px 25px;
    }

    .final-cta__label {
        writing-mode: initial;
        transform: none;
    }

    .final-cta .button {
        width: 100%;
    }

    .page-hero {
        min-height: 250px;
        padding: 36px 0;
    }

    .page-hero h1 {
        font-size: clamp(1.95rem, 8.5vw, 3rem);
    }

    .areas-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-panel,
    .contact-form-card {
        padding: 28px 22px;
    }

    .form-row--two {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-contact {
        grid-template-columns: 1fr;
    }

    .footer-contact h2 {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        padding-inline: 58px;
    }

    .sticky-action {
        width: 50px;
        height: 50px;
        min-height: 50px;
        bottom: 16px;
        font-size: 1.3rem;
    }

    .sticky-action i {
        font-size: 1.3rem;
    }

    .sticky-action span {
        display: none;
    }

    .sticky-phone {
        left: 16px;
    }

    .sticky-whatsapp {
        right: 16px;
    }

    .quote-modal {
        padding: 0;
    }

    .quote-modal__dialog {
        width: 100%;
        height: 100dvh;
        max-height: none;
        min-height: 0;
        grid-template-rows: 1fr;
        border-radius: 0;
    }

    .quote-modal__intro {
        display: none;
    }

    .quote-form {
        padding: 58px 20px 20px;
    }

    .quote-form .form-row--two {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .quote-form .form-field label {
        font-size: .62rem;
    }

    .quote-form .form-field input,
    .quote-form .form-field select {
        min-height: 44px;
        padding: 8px 10px;
    }

    .quote-form .form-field textarea {
        min-height: 72px;
        height: 72px;
        padding: 8px 10px;
    }
}

@media (max-width: 430px) {

    .home-hero__media img,
    .home-hero__media video {
        aspect-ratio: 16 / 8;
        max-height: 180px;
    }

    .home-hero__stamp {
        width: 68px;
        height: 68px;
        top: -12px;
        right: -4px;
        border-width: 3px;
    }

    .home-hero__stamp span {
        font-size: 1.15rem;
    }

    .home-hero__floating-card {
        bottom: -24px;
        padding: 8px 11px;
    }

    .trust-strip {
        margin-top: 44px;
    }

    .gallery-mosaic {
        gap: 8px;
    }

    .gallery-mosaic__item--1 {
        max-height: 175px;
    }

    .gallery-mosaic__item--2,
    .gallery-mosaic__item--3,
    .gallery-mosaic__item--4,
    .gallery-mosaic__item--5 {
        max-height: 110px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .areas-page-grid {
        grid-template-columns: 1fr;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}