:root {
    --bg-start: #2aa1d8;
    --bg-end: #610e68;
    --section-gap: clamp(2rem, 3.5vw, 2.875rem);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
    background: radial-gradient(circle at top, var(--bg-start), var(--bg-end));
    overflow-x: hidden;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 25;
    padding: 0.9rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: linear-gradient(to bottom, rgba(10, 0, 30, 0.58), rgba(10, 0, 30, 0));
}

.social-actions,
.header-actions {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.header-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.55rem;
    height: 2.55rem;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.26);
    border-radius: 999px;
    padding: 0;
    backdrop-filter: blur(4px);
}

.header-button svg {
    width: 1.2rem;
    height: 1.2rem;
}

.header-button:hover,
.header-button:focus-visible {
    background: rgba(255, 255, 255, 0.16);
}

.fb-button:hover,
.fb-button:focus-visible {
    background: #1877F2;
    border-color: #1877F2;
}

.ig-button:hover,
.ig-button:focus-visible {
    background: radial-gradient(circle at 30% 110%, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
    border-color: transparent;
}

.hero {
    height: 220vh;
    position: relative;
}

.logo-stage {
    position: sticky;
    top: 0;
    height: 100vh;
    display: grid;
    place-items: center;
}

.logo-wrap {
    width: min(90vw, 1200px);
    display: grid;
    place-items: center;
    transform-origin: center center;
    will-change: transform, opacity;
    animation: logoEntrance 1200ms cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}

.logo-wrap img {
    width: 100%;
    max-height: 75vh;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.45));
}

.hero-contact {
    margin: 1.2rem 0 0;
    padding: 0.55rem 0.9rem;
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    letter-spacing: 0.02em;
    text-align: center;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    backdrop-filter: blur(3px);
}

.hero-contact a {
    color: inherit;
    font-weight: 700;
    text-decoration: none;
}

.content {
    padding: 10vh 8vw 20vh;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.content h1 {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.05;
}

.content p {
    margin: 0;
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    line-height: 1.6;
    opacity: 0.9;
}

.services-section {
    width: min(1150px, 92vw);
    margin: 0 auto var(--section-gap);
    text-align: center;
}

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

.service-card {
    opacity: 0;
    transform: scale(0.86) translateY(20px);
    transition: opacity 420ms ease, transform 520ms cubic-bezier(0.2, 0.9, 0.2, 1), border-color 260ms ease, background 260ms ease;
    transition-delay: var(--service-delay, 0ms);
    padding: 1.35rem 1.1rem 1.2rem;
    text-align: left;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(8, 21, 45, 0.3), rgba(45, 18, 67, 0.38));
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(4px);
    box-shadow: 0 14px 34px rgba(6, 10, 28, 0.2);
    cursor: pointer;
}

.service-card.in-view {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.service-card:hover,
.service-card:focus-visible,
.service-card:focus-within {
    border-color: rgba(123, 166, 196, 0.6);
    background: linear-gradient(180deg, rgba(11, 28, 58, 0.42), rgba(58, 24, 86, 0.5));
    outline: none;
    box-shadow: 0 16px 42px rgba(6, 10, 28, 0.28);
}

.service-icon {
    width: 3.4rem;
    height: 3.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #9fd2f4;
    border-radius: 14px;
    background: radial-gradient(circle at top, rgba(42, 161, 216, 0.28), rgba(97, 14, 104, 0.24));
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.service-icon svg {
    width: 1.8rem;
    height: 1.8rem;
    fill: currentColor;
}

.service-icon--winter svg {
    width: 2.1rem;
    height: 2.1rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.winter-glyph {
    font-size: 2rem;
    line-height: 1;
    font-weight: 700;
    display: inline-block;
    transform: translateY(1px);
}

.service-card h3 {
    margin: 0 0 0.55rem;
    color: #ffffff;
    font-size: clamp(1.05rem, 1.8vw, 1.28rem);
    line-height: 1.25;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.service-card p {
    margin: 0;
    color: rgba(235, 243, 250, 0.88);
    font-size: 0.98rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

@media (min-width: 921px) {
    .service-card {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        column-gap: 0.85rem;
        row-gap: 0.75rem;
        align-items: center;
    }

    .service-icon {
        margin-bottom: 0;
        grid-column: 1;
        grid-row: 1;
    }

    .service-card h3 {
        margin: 0;
        grid-column: 2;
        grid-row: 1;
        min-height: 3.4rem;
        display: flex;
        align-items: center;
    }

    .service-card p {
        grid-column: 1 / -1;
    }
}

.service-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
}

.service-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.service-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 7, 18, 0.72);
    backdrop-filter: blur(10px);
}

.service-modal-panel {
    position: relative;
    width: min(680px, 100%);
    padding: 2rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(10, 22, 48, 0.96), rgba(58, 20, 82, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
    transform: translateY(18px) scale(0.98);
    transition: transform 260ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.service-modal.is-open .service-modal-panel {
    transform: translateY(0) scale(1);
}

.service-modal-close {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 1.55rem;
    cursor: pointer;
}

.service-modal-eyebrow {
    margin: 0 0 0.65rem;
    color: #9fd2f4;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.service-modal-title {
    margin: 0 0 0.95rem;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.08;
}

.partner-modal-media {
    margin: 0 0 1rem;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.partner-modal-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.service-modal-body {
    margin: 0;
    color: rgba(235, 243, 250, 0.92);
    font-size: 1.05rem;
    line-height: 1.7;
}

.service-modal-pricing-title {
    margin: 1.2rem 0 0.4rem;
    color: #cde9fb;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-modal-pricing {
    list-style: none;
    margin: 1.05rem 0 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.service-modal-pricing li {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: baseline;
    padding: 0.52rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.14);
    color: rgba(235, 243, 250, 0.95);
    font-size: 0.97rem;
}

.service-modal-pricing li span {
    overflow-wrap: anywhere;
}

.service-modal-pricing li strong {
    color: #9fd2f4;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.service-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.6rem;
}

.service-modal-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
}

.service-modal-button--primary {
    color: #091226;
    background: #9fd2f4;
}

.service-modal-button--secondary {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

body.modal-open {
    overflow: hidden;
}

.service-brands {
    width: min(1150px, 92vw);
    margin: 0 auto var(--section-gap);
    text-align: center;
}

.about-us {
    width: min(1150px, 92vw);
    margin: 0 auto var(--section-gap);
    text-align: center;
}

.consignment-section {
    width: min(1150px, 92vw);
    margin: 0 auto var(--section-gap);
    text-align: center;
}

.gallery-section {
    width: min(1150px, 92vw);
    margin: 0 auto var(--section-gap);
    text-align: center;
}

.contact-section {
    width: min(1150px, 92vw);
    margin: 0 auto var(--section-gap);
    text-align: center;
}

.gallery-carousel {
    position: relative;
    padding: clamp(0.85rem, 2vw, 1.2rem);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(88, 146, 182, 0.2), transparent 36%),
        linear-gradient(180deg, rgba(6, 16, 34, 0.94), rgba(7, 17, 30, 0.98));
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.gallery-carousel-viewport {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(0, 0, 0, 0.28);
}

.gallery-carousel-viewport::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(7, 16, 34, 0.04), rgba(7, 16, 34, 0.32));
}

.gallery-carousel-control {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(7, 16, 34, 0.5);
    color: #ffffff;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background-color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.gallery-carousel-control:hover,
.gallery-carousel-control:focus-visible {
    background: rgba(7, 16, 34, 0.78);
    border-color: rgba(207, 232, 247, 0.6);
    outline: none;
}

.gallery-carousel-control:active {
    transform: translateY(-50%) scale(0.96);
}

.gallery-carousel-control--prev {
    left: 1rem;
}

.gallery-carousel-control--next {
    right: 1rem;
}

.gallery-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 720ms ease, transform 5600ms ease;
}

.gallery-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.gallery-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: rgba(4, 10, 22, 0.92);
}

.gallery-carousel-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 1rem;
}

.gallery-carousel-dot {
    width: 0.75rem;
    height: 0.75rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.26);
    cursor: pointer;
    transition: transform 200ms ease, background-color 200ms ease;
}

.gallery-carousel-dot.is-active {
    background: #cfe8f7;
    transform: scale(1.15);
}

.gallery-carousel-dot:focus-visible {
    outline: 2px solid rgba(207, 232, 247, 0.95);
    outline-offset: 3px;
}

.consignment-mount {
    width: 100%;
    min-height: 190px;
    padding: 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(3px);
}

.consignment-loading {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.05rem;
}

.consignment-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 1.2rem;
}

.section-title,
.service-brands h2 {
    margin: 0 0 1.4rem;
    color: #ffffff;
    font-size: clamp(1.7rem, 4vw, 2.7rem);
    font-weight: 500;
    line-height: 1.1;
}

.section-title::before,
.section-title::after {
    content: none;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.1rem;
}

.about-card {
    opacity: 0;
    transform: perspective(900px) translateY(36px) scale(0.9) rotateX(8deg);
    filter: blur(6px);
    transform-origin: center top;
    transition: opacity 480ms ease, transform 700ms cubic-bezier(0.2, 0.9, 0.2, 1), filter 480ms ease;
    transition-delay: var(--about-delay, 0ms);
}

.about-card.in-view {
    opacity: 1;
    transform: perspective(900px) translateY(0) scale(1) rotateX(0deg);
    filter: blur(0);
}

.about-card img {
    width: min(100%, 340px);
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.about-card h3 {
    margin: 1rem 0 0.55rem;
    color: #ffffff;
    font-size: clamp(1.6rem, 2.3vw, 2.05rem);
    font-weight: 500;
}

.about-card p {
    margin: 0 auto;
    max-width: 31ch;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.45;
    color: rgba(235, 243, 250, 0.95);
}

.contact-eyebrow {
    margin: 0;
    color: rgba(207, 232, 247, 0.82);
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contact-hours {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.5rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-hours-list {
    display: grid;
    gap: 0.9rem;
}

.contact-hours-list p {
    margin: 0;
    max-width: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
}

.contact-hours-list strong,
.contact-hours-list span {
    color: #ffffff;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
    grid-template-areas:
        "details form"
        "map map";
    gap: 1.5rem;
    align-items: stretch;
}

.contact-card {
    padding: clamp(1.4rem, 2.5vw, 2rem);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 26px;
    background:
        radial-gradient(circle at top right, rgba(94, 150, 182, 0.16), transparent 32%),
        linear-gradient(180deg, rgba(8, 18, 38, 0.84), rgba(8, 16, 31, 0.97));
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
    text-align: left;
}

.contact-card--details {
    grid-area: details;
}

.contact-card--form {
    grid-area: form;
}

.contact-card--map {
    grid-area: map;
    display: flex;
    min-height: 100%;
}

.contact-card h3 {
    margin: 0.55rem 0 1.2rem;
    color: #ffffff;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    line-height: 1.15;
}

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

.contact-list p {
    margin: 0;
    display: grid;
    gap: 0.25rem;
}

.contact-list strong {
    color: rgba(207, 232, 247, 0.82);
    font-size: 0.84rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-list a {
    color: #ffffff;
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    line-height: 1.5;
    text-decoration: none;
}

.contact-list a:hover,
.contact-list a:focus-visible {
    color: #cfe8f7;
    text-decoration: underline;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.contact-form-intro {
    margin: 0 0 1.2rem;
    color: rgba(235, 243, 250, 0.9);
    font-size: 1rem;
    line-height: 1.55;
}

.contact-form-status {
    margin: 0 0 1.2rem;
    padding: 0.9rem 1rem;
    color: #e6fff3;
    font-size: 0.98rem;
    line-height: 1.5;
    border: 1px solid rgba(135, 235, 182, 0.34);
    border-radius: 16px;
    background: rgba(48, 135, 92, 0.22);
}

.contact-form-status--error {
    color: #ffe9e9;
    border-color: rgba(235, 135, 135, 0.34);
    background: rgba(140, 42, 42, 0.22);
}

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

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

.contact-form-field {
    display: grid;
    gap: 0.45rem;
}

.contact-form-field span {
    color: rgba(207, 232, 247, 0.82);
    font-size: 0.84rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-form-field input,
.contact-form-field textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    color: #ffffff;
    font: inherit;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
}

.contact-form-field textarea {
    min-height: 9.5rem;
    resize: vertical;
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.52);
}

.contact-form-field input:focus-visible,
.contact-form-field textarea:focus-visible {
    outline: 2px solid rgba(159, 210, 244, 0.72);
    outline-offset: 2px;
    border-color: rgba(159, 210, 244, 0.55);
}

.contact-form-submit {
    border: 0;
    cursor: pointer;
    justify-self: start;
}

.contact-form-submit:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.contact-form-required {
    color: #f87171;
}

.contact-form-field-error {
    color: #fca5a5;
    font-size: 0.82rem;
    margin-top: -0.15rem;
}

.contact-form-field input[aria-invalid="true"],
.contact-form-field textarea[aria-invalid="true"] {
    border-color: rgba(235, 100, 100, 0.65);
    outline: 2px solid rgba(235, 100, 100, 0.35);
    outline-offset: 2px;
}

.contact-form-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.contact-map-frame {
    flex: 1;
    display: flex;
    overflow: hidden;
    min-height: 420px;
    height: 100%;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(4, 10, 22, 0.9);
}

.contact-map {
    display: block;
    flex: 1;
    width: 100%;
    height: 100%;
    border: 0;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
    gap: 0.85rem;
}


.brands-grid > * {
    display: block;
    opacity: 0;
    transform: scale(0.86) translateY(20px);
    transition: opacity 420ms ease, transform 520ms cubic-bezier(0.2, 0.9, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

.brands-grid > *.in-view {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.partner-card {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.partner-card:focus-visible {
    outline: 2px solid rgba(159, 210, 244, 0.85);
    outline-offset: 4px;
    border-radius: 16px;
}

.brands-grid img {
    width: 100%;
    height: 92px;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 0.8rem;
}

@media (prefers-reduced-motion: reduce) {
    .brands-grid > *,
    .brands-grid > *.in-view,
    .service-card,
    .service-card.in-view,
    .about-card,
    .about-card.in-view {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

    .gallery-slide,
    .gallery-slide.is-active,
    .gallery-carousel-dot {
        transition: none;
    }
}

body.modal-open,
body.partner-modal-open {
    overflow: hidden;
}

@keyframes logoEntrance {
    from {
        transform: scale(0.25);
        opacity: 0;
    }

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

@media (max-width: 560px) {
    .site-header {
        padding: 0.75rem;
    }

    .logo-stage {
        place-items: start center;
        padding-top: 4.5rem;
    }

    .header-button {
        width: 2.35rem;
        height: 2.35rem;
    }

    .brands-grid img {
        height: 80px;
    }

    .gallery-carousel {
        padding: 0.75rem;
    }

    .gallery-carousel-control {
        width: 2.6rem;
        height: 2.6rem;
    }

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

    .service-card {
        text-align: center;
    }

    .service-modal-panel {
        padding: 3.3rem 1.1rem 1.25rem;
    }

    .service-modal-actions {
        flex-direction: column;
    }

    .service-modal-button {
        width: 100%;
    }

    .gallery-carousel-viewport {
        aspect-ratio: 4 / 3;
    }

    .section-title {
        gap: 0.7rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-card img {
        width: min(82vw, 340px);
    }

    .contact-hours-list p {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-actions {
        flex-direction: column;
    }

    .contact-actions .service-modal-button {
        width: 100%;
    }

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

    .contact-form-submit {
        width: 100%;
        justify-self: stretch;
    }

    .contact-map {
        min-height: 320px;
    }
}

@media (max-width: 920px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-carousel-viewport {
        aspect-ratio: 5 / 4;
    }

    .gallery-carousel-control--prev {
        left: 0.75rem;
    }

    .gallery-carousel-control--next {
        right: 0.75rem;
    }

    .gallery-slide img {
        object-fit: cover;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "details"
            "form"
            "map";
    }

    .contact-card {
        min-width: 0;
    }
}
