﻿:root {
    --bg: #fcfaf6;
    --bg-strong: #f2ece4;
    --surface: rgba(255, 252, 248, 0.96);
    --surface-soft: rgba(255, 255, 255, 0.9);
    --surface-strong: #fffaf5;
    --line: rgba(73, 39, 33, 0.18);
    --text: #24120f;
    --muted: #5f4641;
    --muted-strong: #412d28;
    --accent: #c03000;
    --accent-deep: #7f0e0e;
    --accent-alt: #d0c040;
    --shadow: 0 18px 36px rgba(73, 39, 33, 0.12);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: "Manrope", "Trebuchet MS", sans-serif;
    background:
        radial-gradient(circle at 12% 0%, rgba(208, 192, 64, 0.12), transparent 30%),
        radial-gradient(circle at 88% 10%, rgba(149, 163, 176, 0.14), transparent 24%),
        radial-gradient(circle at 50% 100%, rgba(192, 48, 0, 0.05), transparent 30%),
        linear-gradient(180deg, #fffdfa 0%, #f7f3ed 48%, #efe7de 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(87, 43, 35, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(87, 43, 35, 0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.38), transparent 86%);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(calc(100% - 2rem), var(--max-width));
    margin: 0 auto;
}

.page-glow {
    position: fixed;
    width: 26rem;
    height: 26rem;
    border-radius: 999px;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.page-glow-left {
    top: 5rem;
    left: -7rem;
    background: rgba(214, 193, 116, 0.2);
    animation: floatGlow 9s ease-in-out infinite;
}

.page-glow-right {
    top: 22rem;
    right: -8rem;
    background: rgba(151, 165, 177, 0.18);
    animation: floatGlow 11s ease-in-out infinite reverse;
}

.site-header,
main,
.site-footer {
    position: relative;
    z-index: 1;
}

.site-header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(18px);
    background: rgba(252, 248, 242, 0.9);
    border-bottom: 1px solid rgba(87, 43, 35, 0.08);
    z-index: 30;
}

.site-header.is-scrolled {
    border-bottom-color: rgba(120, 99, 83, 0.16);
    box-shadow: 0 10px 24px rgba(73, 39, 33, 0.1);
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 5.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 1.05rem;
}

.brand-mark {
    width: 6rem;
    height: 5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem;
    border-radius: 20px;
    background: rgba(255, 252, 246, 0.98);
    box-shadow: 0 16px 34px rgba(73, 39, 33, 0.18);
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text strong {
    font-family: "Sora", "Trebuchet MS", sans-serif;
    font-size: 1.08rem;
    letter-spacing: 0.02em;
}

.brand-text small {
    color: var(--muted);
    font-size: 0.84rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

.site-nav a {
    color: var(--muted-strong);
    font-weight: 600;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
    color: var(--accent-deep);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--text);
    padding: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 1.2rem;
    height: 2px;
    margin: 0.32rem auto;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 3rem;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    color: #fff9f1;
    box-shadow: 0 16px 30px rgba(127, 14, 14, 0.22);
}

.button-secondary,
.button-outline {
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(73, 39, 33, 0.16);
    color: var(--text);
}

.button-small {
    min-height: 2.5rem;
    padding-inline: 1rem;
}

.button-block {
    width: 100%;
}

.hero-section {
    padding: 5rem 0 3rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 1.5rem;
    align-items: stretch;
}

.hero-copy,
.hero-panel,
.service-card,
.feature-item,
.timeline-card,
.segment-card,
.contact-card,
.contact-form,
.cta-panel {
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.hero-copy {
    padding: clamp(2rem, 4vw, 3.2rem);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.hero-copy-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.15rem;
    flex-wrap: wrap;
    margin-bottom: 0.65rem;
}

.hero-logo {
    width: clamp(10rem, 22vw, 14rem);
    height: auto;
    display: block;
    filter: drop-shadow(0 16px 28px rgba(73, 39, 33, 0.20));
}

.hero-copy::after {
    content: "";
    position: absolute;
    inset: auto auto -4rem -4rem;
    width: 13rem;
    height: 13rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(208, 192, 64, 0.24), transparent 70%);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #9b7616;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 800;
}

.eyebrow::before {
    content: "";
    width: 2.2rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(192, 48, 0, 0.92), transparent);
}

h1,
h2,
h3,
.brand-text strong {
    font-family: "Sora", "Trebuchet MS", sans-serif;
}

h1 {
    margin: 1rem 0;
    max-width: 12ch;
    font-size: clamp(2.8rem, 6vw, 5.4rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

h2 {
    margin: 0.5rem 0 0.85rem;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
}

h3 {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
    line-height: 1.15;
}

p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.hero-text {
    max-width: 38rem;
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.75rem;
}

.hero-badges {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0;
    margin: 1.8rem 0 0;
}

.hero-badges li,
.trust-strip-row span,
.service-tag,
.timeline-step {
    border: 1px solid rgba(73, 39, 33, 0.16);
    background: rgba(255, 255, 255, 0.84);
}

.hero-badges li {
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    color: var(--muted-strong);
    font-weight: 700;
}

.hero-panel {
    border-radius: var(--radius-xl);
    padding: 1.25rem;
    display: grid;
    gap: 1.15rem;
}

.status-card,
.mini-card {
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 232, 221, 0.90));
    border: 1px solid rgba(73, 39, 33, 0.10);
}

.status-card {
    padding: 1.3rem;
}

.card-label {
    display: block;
    color: #8d6b12;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
}

.status-card strong {
    display: block;
    font-size: 1.3rem;
    line-height: 1.2;
    margin-bottom: 0.65rem;
}

.panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.05rem;
}

.mini-card {
    min-height: 8.6rem;
    padding: 1rem;
}

.mini-card span {
    display: inline-block;
    color: #8d6b12;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
}

.mini-card strong {
    display: block;
    line-height: 1.35;
}

.evidence-list {
    display: grid;
    gap: 0.8rem;
}

.evidence-list > div {
    padding: 1rem 1.05rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(73, 39, 33, 0.10);
}

.evidence-kicker {
    display: block;
    color: #8d6b12;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.trust-strip {
    padding: 0.75rem 0 0;
}

.trust-strip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.trust-strip-row span {
    display: inline-flex;
    align-items: center;
    min-height: 3rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    color: var(--muted-strong);
}

.section {
    padding: 5rem 0;
}

.section-contrast {
    background: linear-gradient(180deg, rgba(192, 48, 0, 0.03), rgba(208, 192, 64, 0.02));
}

.section-head {
    max-width: 46rem;
    margin-bottom: 2rem;
}

.section-head p {
    font-size: 1.02rem;
}

.services-grid,
.feature-list,
.timeline,
.segments-grid,
.contact-cards {
    display: grid;
    gap: 1.15rem;
}

.services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.service-card ul {
    margin: 1.1rem 0 0;
    padding-left: 1rem;
    color: var(--muted-strong);
}

.service-card li + li {
    margin-top: 0.55rem;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    color: #8d6b12;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem;
    font-weight: 800;
    margin-bottom: 0.95rem;
}

.feature-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.15rem;
    align-items: start;
}

.feature-copy,
.feature-item,
.timeline-card,
.segment-card,
.contact-card,
.contact-form,
.cta-panel {
    border-radius: var(--radius-lg);
}

.feature-copy {
    padding: 1rem 0;
}

.feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-item {
    padding: 1.4rem;
}

.feature-item strong {
    display: block;
    font-size: 1.02rem;
    margin-bottom: 0.5rem;
}

.timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline-card {
    padding: 1.35rem;
}

.timeline-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    color: #8d6b12;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-segments {
    padding-top: 3rem;
}

.segments-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.segment-card {
    padding: 1.45rem;
}

.section-cta {
    padding-top: 2rem;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    padding: 1.6rem 1.8rem;
    background:
        linear-gradient(135deg, rgba(192, 48, 0, 0.05), rgba(208, 192, 64, 0.08)),
        var(--surface);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.section-contact {
    padding-top: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 1.15rem;
    align-items: start;
}

.contact-copy {
    display: grid;
    gap: 1.3rem;
}

.contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card {
    padding: 1.2rem;
}

.contact-card span {
    display: block;
    color: #8d6b12;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.55rem;
}

.contact-card a {
    color: var(--text);
    font-weight: 800;
    word-break: break-word;
}

.contact-form {
    padding: 1.45rem;
    display: grid;
    gap: 1.15rem;
}

.form-head {
    margin-bottom: 0.35rem;
}

.form-head h3 {
    margin-bottom: 0.45rem;
}

.contact-form label {
    display: grid;
    gap: 0.45rem;
    font-weight: 700;
    color: var(--muted-strong);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(73, 39, 33, 0.16);
    border-radius: 16px;
    padding: 0.95rem 1rem;
    color: var(--text);
    background: rgba(255, 255, 255, 0.84);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(95, 70, 65, 0.78);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: rgba(208, 192, 64, 0.58);
    box-shadow: 0 0 0 4px rgba(208, 192, 64, 0.14);
    background: rgba(255, 255, 255, 0.98);
}

.contact-form textarea {
    resize: vertical;
    min-height: 7rem;
}

.form-note {
    color: var(--muted);
    font-size: 0.98rem;
}

.form-note.is-success {
    color: #8d6b12;
}

.site-footer {
    padding: 1.4rem 0 2.3rem;
}

.footer-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 1.15rem;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(73, 39, 33, 0.16);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.15rem;
    color: var(--muted-strong);
    font-weight: 700;
}

.footer-copy {
    color: rgba(86, 59, 53, 0.82);
    text-align: right;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floatGlow {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(0, 18px, 0) scale(1.04);
    }
}

@media (max-width: 1024px) {
    .hero-grid,
    .feature-layout,
    .contact-grid,
    .timeline,
    .segments-grid {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .feature-list,
    .contact-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-panel,
    .footer-row {
        grid-template-columns: 1fr;
    }

    .cta-panel {
        align-items: flex-start;
    }

    .footer-copy {
        text-align: left;
    }
}

@media (max-width: 760px) {
    .site-nav {
        position: absolute;
        top: calc(100% + 0.6rem);
        left: 1rem;
        right: 1rem;
        display: grid;
        gap: 0.8rem;
        padding: 1rem;
        border-radius: 20px;
        background: rgba(252, 246, 240, 0.96);
        border: 1px solid rgba(73, 39, 33, 0.10);
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .menu-toggle {
        display: inline-block;
    }

    .site-nav a {
        min-height: 2.6rem;
        display: inline-flex;
        align-items: center;
    }

    .panel-grid,
    .services-grid,
    .feature-list,
    .contact-cards {
        grid-template-columns: 1fr;
    }

    h1 {
        max-width: none;
        font-size: clamp(2.5rem, 14vw, 3.8rem);
    }

    h2 {
        font-size: clamp(1.8rem, 10vw, 2.4rem);
    }

    .hero-section {
        padding-top: 3.5rem;
    }

    .section {
        padding: 4rem 0;
    }

    .contact-form,
    .hero-copy,
    .hero-panel {
        padding: 1.2rem;
    }
}


@media (max-width: 760px) {
    .hero-copy-header {
        align-items: flex-start;
    }

    .hero-logo {
        width: 8rem;
    }

    .brand-mark {
        width: 4.2rem;
        height: 3.6rem;
    }
}

.services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
    min-height: 100%;
}

.service-card p {
    margin-bottom: 0.95rem;
}

.pain-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pain-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 232, 221, 0.90));
    border-color: rgba(192, 48, 0, 0.12);
}

.pain-card h3 {
    color: var(--text);
}

@media (max-width: 1024px) {
    .pain-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .pain-grid {
        grid-template-columns: 1fr;
    }
}







/* Mobile Compatibility Refinements */
@media (max-width: 1024px) {
    .services-grid,
    .pain-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-copy-header {
        align-items: flex-start;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(calc(100% - 1rem), var(--max-width));
    }

    .header-row {
        min-height: auto;
        padding: 0.75rem 0;
        gap: 0.9rem;
        align-items: flex-start;
    }

    .brand {
        width: calc(100% - 3.9rem);
        align-items: flex-start;
    }

    .brand-text strong {
        font-size: 0.94rem;
        line-height: 1.2;
    }

    .brand-text small {
        font-size: 0.72rem;
        line-height: 1.3;
    }

    .menu-toggle {
        margin-left: auto;
    }

    .site-nav {
        top: calc(100% + 0.35rem);
        left: 0;
        right: 0;
    }

    .site-nav a {
        min-height: 2.85rem;
    }

    .site-nav .button {
        width: 100%;
        justify-content: center;
    }

    .hero-section {
        padding-top: 2.5rem;
        padding-bottom: 2rem;
    }

    .hero-copy-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.9rem;
    }

    .eyebrow {
        letter-spacing: 0.1em;
        line-height: 1.4;
    }

    .eyebrow::before {
        width: 1.25rem;
    }

    h2 {
        font-size: clamp(1.6rem, 8vw, 2.15rem);
    }

    .hero-text {
        font-size: 1.08rem;
    }

    .hero-actions,
    .cta-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .hero-actions .button,
    .cta-actions .button {
        width: 100%;
    }

    .hero-badges {
        gap: 0.5rem;
    }

    .hero-badges li {
        font-size: 0.9rem;
    }

    .trust-strip-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-strip-row span {
        justify-content: center;
        text-align: center;
        min-height: 2.75rem;
    }

    .panel-grid,
    .services-grid,
    .feature-list,
    .contact-cards,
    .pain-grid,
    .timeline {
        grid-template-columns: 1fr;
    }

    .service-card,
    .feature-item,
    .timeline-card,
    .segment-card,
    .contact-card {
        padding: 1.2rem;
    }

    .service-card ul {
        padding-left: 1.1rem;
    }

    .contact-grid {
        gap: 1.05rem;
    }

    .footer-links {
        gap: 0.9rem;
    }
}

@media (max-width: 480px) {
    .brand {
        width: calc(100% - 3.3rem);
    }

    .brand-mark {
        width: 4.4rem;
        height: 3.7rem;
    }

    .hero-logo {
        width: 8.2rem;
    }

    .hero-copy,
    .hero-panel,
    .contact-form,
    .cta-panel {
        padding: 1rem;
    }

    .section {
        padding: 3.25rem 0;
    }

    .trust-strip-row {
        grid-template-columns: 1fr;
    }
}

.hero-brand-lockup {
    display: flex;
    align-items: center;
    gap: 1.15rem;
}

.hero-brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero-brand-text strong {
    font-family: "Sora", "Trebuchet MS", sans-serif;
    font-size: clamp(1.35rem, 2.8vw, 1.9rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.hero-brand-text small {
    color: var(--muted-strong);
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.35;
}

@media (max-width: 760px) {
    .hero-brand-lockup {
        align-items: flex-start;
        gap: 0.9rem;
    }

    .hero-brand-text strong {
        font-size: 1.2rem;
    }

    .hero-brand-text small {
        font-size: 0.82rem;
    }
}



.service-gallery-slot:empty {
    display: none;
}

.service-carousel {
    position: relative;
    margin: 1.05rem 0 0.75rem;
    padding: 0 3rem;
}

.service-carousel-viewport {
    overflow: hidden;
    border-radius: 22px;
}

.service-carousel-track {
    display: flex;
    transition: transform 360ms ease;
    will-change: transform;
}

.service-slide {
    min-width: 100%;
    margin: 0;
}

.service-photo {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 22px;
    border: 1px solid rgba(73, 39, 33, 0.12);
    box-shadow: 0 14px 30px rgba(73, 39, 33, 0.12);
    background: rgba(255, 255, 255, 0.9);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.4rem;
    height: 2.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: rgba(127, 14, 14, 0.9);
    color: #fffaf1;
    box-shadow: 0 10px 24px rgba(73, 39, 33, 0.18);
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease;
    z-index: 1;
}

.carousel-button:hover,
.carousel-button:focus-visible {
    background: rgba(192, 48, 0, 0.95);
}

.carousel-button span {
    font-size: 1.7rem;
    line-height: 1;
}

.carousel-button-prev {
    left: 0;
}

.carousel-button-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 0.85rem;
}

.carousel-dot {
    width: 0.72rem;
    height: 0.72rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(127, 14, 14, 0.2);
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease;
}

.carousel-dot.is-active {
    background: #c03000;
    transform: scale(1.16);
}

@media (max-width: 760px) {
    .service-carousel {
        padding: 0 2.25rem;
    }

    .service-photo {
        aspect-ratio: 4 / 3;
    }

    .carousel-button {
        width: 2.1rem;
        height: 2.1rem;
    }
}

@media (max-width: 480px) {
    .service-carousel {
        padding: 0 2rem;
    }

    .carousel-button {
        width: 1.95rem;
        height: 1.95rem;
    }
}
