:root {
    --primary-color: #43302e;
    --primary-hover: #2f211f;
    --accent-color: #fce6b7;
    --accent-soft: #fff7df;
    --cream: #fffdf4;
    --signal-color: #ff7a00;
    --surface: #ffffff;
    --surface-muted: #fffdf7;
    --text-dark: #43302e;
    --text-medium: #6a5651;
    --text-light: #8b7b74;
    --border-color: #f0e7d2;
    --shadow-sm: 0 8px 20px rgba(67, 48, 46, 0.07);
    --shadow-md: 0 18px 42px rgba(67, 48, 46, 0.12);
    --shadow-lg: 0 30px 80px rgba(67, 48, 46, 0.22);
    --radius-sm: 5px;
    --radius-md: 8px;
    --font-family-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans KR", sans-serif;
    --transition: 180ms ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background: var(--primary-color);
}

body {
    background: var(--primary-color);
    color: var(--text-dark);
    font-family: var(--font-family-base);
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

main {
    background: var(--surface);
}

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

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

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: none;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo-mark {
    color: var(--text-dark);
    font-size: 23px;
    font-weight: 900;
    letter-spacing: 0;
    white-space: nowrap;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    margin: 3px auto;
    border-radius: 8px;
    background: var(--text-dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.nav-links a {
    color: var(--text-medium);
    font-size: 15px;
    font-weight: 800;
}

.nav-links a:hover {
    color: var(--primary-hover);
}

.nav-call-btn {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 17px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.58);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.18));
    color: var(--primary-color) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 10px 24px rgba(67, 48, 46, 0.12);
    backdrop-filter: blur(18px) saturate(145%);
}

.nav-call-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.28));
    transform: translateY(-1px);
}

.hero {
    position: relative;
    isolation: isolate;
    display: flex;
    min-height: 660px;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(67, 48, 46, 0.74) 0%, rgba(67, 48, 46, 0.44) 43%, rgba(255, 255, 255, 0.08) 100%),
        url("assets/images/work-gallery/chiffon-curtain.jpg") center / cover no-repeat;
    color: #ffffff;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 118px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.98));
}

.hero-inner {
    display: flex;
    justify-content: flex-start;
}

.hero-content {
    max-width: 760px;
    text-align: left;
}

.eyebrow,
.section-label {
    display: inline-flex;
    width: fit-content;
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
}

.eyebrow {
    margin-bottom: 18px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.94);
    letter-spacing: 0;
}

h1,
h2,
h3 {
    line-height: 1.18;
    letter-spacing: 0;
}

h1 {
    max-width: 780px;
    font-size: 58px;
    font-weight: 900;
}

h1 span {
    display: block;
}

h2 {
    color: var(--text-dark);
    font-size: 38px;
    font-weight: 900;
    text-align: center;
    text-wrap: balance;
}

h3 {
    color: var(--text-dark);
    font-size: 21px;
    font-weight: 850;
    text-wrap: balance;
}

.text-accent,
.hero-accent {
    color: var(--primary-color);
}

.hero-accent {
    color: var(--accent-color);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.26);
}

.hero-spark {
    display: inline-block;
    animation: light-spark 2.2s ease-in-out infinite;
}

.mobile-break-line {
    display: inline;
}

.hero-content p {
    max-width: 650px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 19px;
    word-break: keep-all;
    text-wrap: balance;
}

.process-proof {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    max-width: calc(100% - 32px);
    padding: 18px 22px;
    border: 1px solid rgba(255, 241, 181, 0.38);
    border-radius: var(--radius-sm);
    background: rgba(67, 48, 46, 0.34);
    color: var(--accent-color);
    box-shadow: 0 18px 45px rgba(67, 48, 46, 0.28);
    backdrop-filter: blur(15px) saturate(135%);
}

.proof-stars {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: var(--accent-color);
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0;
    text-shadow: 0 0 12px rgba(255, 241, 181, 0.76);
}

.proof-stars span {
    display: inline-grid;
    width: 20px;
    height: 20px;
    place-items: center;
    flex: 0 0 20px;
    color: var(--accent-color);
    font-family: Arial, "Noto Sans KR", sans-serif;
    font-size: 20px;
    line-height: 1;
    animation: star-cascade 1.9s ease-in-out infinite;
}

.proof-stars span:nth-child(2) {
    animation-delay: 0.12s;
}

.proof-stars span:nth-child(3) {
    animation-delay: 0.24s;
}

.proof-stars span:nth-child(4) {
    animation-delay: 0.36s;
}

.proof-stars span:nth-child(5) {
    animation-delay: 0.48s;
}

.process-proof strong {
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 900;
    white-space: nowrap;
}

.process-proof span:last-child {
    color: #fff8d5;
    font-size: 16px;
    font-weight: 750;
    white-space: nowrap;
}

.hero-actions {
    display: flex;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    border-radius: var(--radius-sm);
    padding: 14px 26px;
    font-weight: 900;
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.btn-phone {
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.2));
    color: var(--primary-color);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 18px 44px rgba(67, 48, 46, 0.2);
    backdrop-filter: blur(20px) saturate(150%);
    font-size: 20px;
}

.btn-phone:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.32));
    transform: translateY(-1px);
}

.btn-phone span:last-child {
    display: grid;
    gap: 2px;
    line-height: 1.15;
}

.btn-phone small {
    color: rgba(67, 48, 46, 0.72);
    font-size: 0.72em;
    font-weight: 900;
}

.phone-icon {
    color: var(--primary-color);
    font-size: 25px;
}

.hero .btn-phone {
    min-width: 330px;
    min-height: 84px;
    padding: 20px 56px;
    color: #ffffff;
    font-size: 25px;
    animation: hero-phone-pulse 2s ease-in-out infinite;
}

.hero .btn-phone small {
    color: rgba(255, 255, 255, 0.78);
}

.hero .btn-phone .phone-icon {
    color: #ffffff;
}

.status-ticker {
    overflow: hidden;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: #ffffff;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-move 34s linear infinite;
    will-change: transform;
}

.ticker-group {
    display: flex;
    flex: 0 0 auto;
}

.ticker-track span {
    display: inline-flex;
    align-items: center;
    min-height: 52px;
    padding: 0 34px;
    border-right: 1px solid var(--border-color);
    color: var(--text-medium);
    font-size: 16px;
    font-weight: 850;
    white-space: nowrap;
}

.emergency-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 22px max(20px, calc((100% - 980px) / 2));
    background: var(--cream);
    border-bottom: 1px solid var(--border-color);
    color: var(--text-medium);
    font-weight: 850;
}

.emergency-strip strong {
    color: var(--text-dark);
    font-size: 22px;
}

.emergency-strip span:last-child {
    color: var(--text-medium);
    font-size: 16px;
    word-break: keep-all;
    text-wrap: balance;
}

.emergency-light {
    width: 11px;
    height: 11px;
    border-radius: var(--radius-sm);
    background: var(--signal-color);
    box-shadow: 0 0 0 6px rgba(255, 122, 0, 0.18), 0 0 18px rgba(255, 122, 0, 0.72);
    animation: status-blink 1.4s ease-in-out infinite;
}

.features,
.services,
.process-section,
.gallery-section,
.contact {
    padding: 86px 0;
}

.services {
    padding-top: 78px;
    padding-bottom: 64px;
    background: #ffffff;
}

.section-label {
    display: block;
    margin: 0 auto 10px;
}

.section-subtitle {
    max-width: 760px;
    margin: 12px auto 38px;
    color: var(--text-light);
    font-size: 18px;
    text-align: center;
    word-break: keep-all;
    text-wrap: balance;
}

.feature-grid,
.services-grid,
.process-steps {
    display: grid;
    gap: 18px;
}

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

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

.feature-card,
.service-card,
.process-step,
.photo-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.feature-card {
    padding: 30px 24px;
    text-align: center;
}

.feature-card:hover,
.service-card:hover,
.photo-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.feature-card,
.service-card,
.photo-card {
    transition: transform var(--transition), box-shadow var(--transition);
}

.feature-icon {
    display: inline-grid;
    width: 50px;
    height: 50px;
    place-items: center;
    margin-bottom: 16px;
    border-radius: var(--radius-sm);
    background: var(--accent-soft);
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 900;
}

.feature-card p {
    margin-top: 10px;
    color: var(--text-light);
    word-break: keep-all;
}

.service-card {
    position: relative;
    min-height: 156px;
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 26px 22px;
    text-align: left;
}

.service-card span {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 900;
}

.service-card h3 {
    font-size: 20px;
    word-break: keep-all;
    text-wrap: balance;
}

.service-card p {
    color: var(--text-light);
    font-size: 14px;
    word-break: keep-all;
    text-wrap: balance;
}

.process-section {
    background: #ffffff;
    padding-top: 72px;
}

.process-visual {
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 58px;
    border-radius: 0;
    box-shadow: var(--shadow-sm);
}

.process-visual::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(67, 48, 46, 0.48));
    pointer-events: none;
}

.process-visual img {
    width: 100%;
    height: clamp(210px, 28vw, 330px);
    object-fit: cover;
    object-position: center;
}

.process-steps {
    position: relative;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 44px;
}

.process-steps::before {
    content: "";
    position: absolute;
    top: 31px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(252, 230, 183, 0.34), rgba(252, 230, 183, 0.95), rgba(252, 230, 183, 0.34), transparent);
}

.process-step {
    position: relative;
    z-index: 1;
    padding: 0 10px;
    border: 0;
    box-shadow: none;
    background: transparent;
    text-align: center;
}

.process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 31px;
    left: calc(50% + 42px);
    width: calc(100% - 84px);
    height: 2px;
    background: repeating-linear-gradient(90deg, rgba(252, 230, 183, 0.95) 0 8px, transparent 8px 14px);
}

.process-step span {
    display: inline-grid;
    width: 62px;
    height: 62px;
    place-items: center;
    margin-bottom: 16px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 900;
}

.process-step h3 {
    font-size: 18px;
}

.process-step p {
    margin-top: 8px;
    color: var(--text-light);
    font-size: 14px;
    word-break: keep-all;
}

.features {
    padding-top: 18px;
    background: #ffffff;
}

.gallery-section {
    padding-top: 72px;
    background: var(--surface-muted);
}

.gallery-section h2 {
    margin-bottom: 34px;
}

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

.photo-card {
    overflow: hidden;
    display: flex;
    min-width: 0;
    flex-direction: column;
    text-align: left;
}

.featured-photo {
    grid-column: span 2;
    grid-row: span 2;
}

.photo-card img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    background: var(--surface-muted);
}

.featured-photo img {
    min-height: 360px;
    aspect-ratio: 16 / 12;
}

.photo-card figcaption {
    display: grid;
    gap: 4px;
    min-height: 76px;
    padding: 14px 16px 16px;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 850;
}

.photo-card figcaption strong {
    white-space: nowrap;
}

.photo-card figcaption span {
    color: var(--text-light);
    font-size: 13px;
    font-weight: 700;
    word-break: keep-all;
    text-wrap: balance;
}

.contact {
    padding-top: 72px;
    background: var(--surface);
}

.contact-inner > p {
    max-width: 680px;
    margin: 12px auto 22px;
    color: var(--text-light);
    font-size: 17px;
    word-break: keep-all;
}

.btn-phone-large {
    width: min(100%, 420px);
    min-height: 66px;
    border: 1px solid rgba(67, 48, 46, 0.18);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.22));
    color: var(--primary-color);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 16px 34px rgba(67, 48, 46, 0.14), 0 0 0 4px rgba(252, 230, 183, 0.18);
    backdrop-filter: blur(20px) saturate(150%);
    font-size: 24px;
}

.btn-phone-large:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.32));
}

.btn-phone-large .phone-icon {
    color: var(--primary-color);
}

.contact-photo-slider {
    overflow: hidden;
    width: min(100%, 1120px);
    margin: 34px auto 0;
}

.contact-photo-track {
    display: flex;
    width: max-content;
    animation: contact-photo-slide 36s linear infinite;
    will-change: transform;
}

.contact-photo-group {
    display: flex;
    flex: 0 0 auto;
    gap: 14px;
    padding-right: 14px;
}

.contact-photo-group img {
    width: 280px;
    height: 176px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.floating-contact {
    position: fixed;
    right: 28px;
    bottom: 96px;
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    max-width: 210px;
}

.floating-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-sm);
    background: rgba(67, 48, 46, 0.92);
    color: #ffffff;
    box-shadow: var(--shadow-sm);
    text-align: left;
}

.floating-status strong {
    font-size: 13px;
    line-height: 1.1;
    white-space: nowrap;
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--signal-color);
    box-shadow: 0 0 0 5px rgba(255, 122, 0, 0.18), 0 0 16px rgba(255, 122, 0, 0.7);
    animation: status-blink 1.4s ease-in-out infinite;
}

.floating-call-btn {
    position: relative;
    display: grid;
    width: 72px;
    height: 72px;
    place-items: center;
    border-radius: var(--radius-md);
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 16px 38px rgba(67, 48, 46, 0.32);
    font-size: 32px;
}

.pulse {
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: var(--radius-md);
    background: var(--primary-color);
    animation: pulse-anim 1.8s ease-out infinite;
}

.footer {
    background: var(--primary-color);
    color: rgba(255, 255, 255, 0.82);
    padding: 40px 0;
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 28px;
    font-size: 14px;
}

.footer-logo-text {
    flex: 0 0 auto;
    color: #ffffff;
    font-size: 21px;
    font-weight: 900;
    white-space: nowrap;
}

.footer-info {
    display: grid;
    gap: 6px;
    flex: 1;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    text-align: left;
    word-break: keep-all;
}

.footer-mobile-details {
    display: none;
}

@keyframes pulse-anim {
    0% {
        opacity: 0.62;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.65);
    }
}

@keyframes hero-phone-pulse {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(67, 48, 46, 0);
    }

    50% {
        transform: translateY(-2px);
        box-shadow: 0 22px 58px rgba(0, 0, 0, 0.26), 0 0 0 9px rgba(255, 241, 181, 0.18);
    }
}

@keyframes star-shimmer {
    0%, 100% {
        opacity: 0.78;
        filter: drop-shadow(0 0 0 rgba(255, 241, 181, 0));
    }

    50% {
        opacity: 1;
        filter: drop-shadow(0 0 8px rgba(255, 241, 181, 0.72));
    }
}

@keyframes star-cascade {
    0%, 100% {
        opacity: 1;
        color: var(--accent-color);
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 0 5px rgba(255, 241, 181, 0.48));
    }

    28% {
        opacity: 1;
        color: #fff7cf;
        transform: translateY(-2px) scale(1.16);
        filter: drop-shadow(0 0 9px rgba(255, 241, 181, 0.92));
    }

    52% {
        opacity: 1;
        color: var(--accent-color);
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 0 5px rgba(255, 241, 181, 0.52));
    }
}

@keyframes light-spark {
    0%, 100% {
        color: var(--accent-color);
        text-shadow: 0 0 0 rgba(255, 241, 181, 0), 0 10px 30px rgba(0, 0, 0, 0.26);
        transform: translateY(0);
    }

    50% {
        color: #fff7d4;
        text-shadow: 0 0 18px rgba(255, 241, 181, 0.95), 0 0 36px rgba(67, 48, 46, 0.55);
        transform: translateY(-1px);
    }
}

@keyframes status-blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.42;
    }
}

@keyframes ticker-move {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes contact-photo-slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }

    .ticker-track {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .ticker-group {
        flex-wrap: wrap;
        justify-content: center;
    }
}

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

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

@media (max-width: 960px) {
    .feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .process-steps {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px 8px;
    }

    .process-steps::before,
    .process-step:not(:last-child)::after {
        display: none;
    }

    .process-step {
        flex: 0 0 calc((100% - 16px) / 3);
        padding: 0 4px;
    }

    .process-step:nth-child(1)::after,
    .process-step:nth-child(2)::after,
    .process-step:nth-child(4)::after {
        display: block;
        top: 23px;
        left: calc(50% + 31px);
        width: calc(100% - 62px);
        height: 2px;
        background: repeating-linear-gradient(90deg, rgba(252, 230, 183, 0.95) 0 7px, transparent 7px 12px);
    }

    .process-step span {
        width: 46px;
        height: 46px;
        margin-bottom: 10px;
        font-size: 16px;
    }

    .process-step h3 {
        font-size: 14px;
    }

    .process-step p {
        display: none;
    }
}

@media (max-width: 860px) {
    .container {
        width: min(100% - 28px, 1120px);
    }

    .nav-inner {
        min-height: 68px;
        padding: 8px 0;
        position: relative;
    }

    .logo-mark {
        font-size: 20px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        z-index: 6000;
        display: none;
        width: min(240px, calc(100vw - 28px));
        padding: 12px;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        background: var(--surface);
        box-shadow: var(--shadow-md);
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 8px;
        font-size: 14px;
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        display: block;
        padding: 10px;
        border-radius: var(--radius-sm);
        text-align: center;
    }

    .nav-links a:hover {
        background: var(--surface-muted);
    }

    .hero {
        min-height: 590px;
        background:
            linear-gradient(180deg, rgba(67, 48, 46, 0.78), rgba(67, 48, 46, 0.5)),
            url("assets/images/work-gallery/chiffon-curtain.jpg") center / cover no-repeat;
    }

    .hero-inner {
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .eyebrow {
        margin-inline: auto;
    }

    h1 {
        margin-inline: auto;
        font-size: 37px;
        text-align: center;
    }

    h2 {
        font-size: 28px;
    }

    .mobile-break-line {
        display: block;
    }

    .hero-content p {
        margin-inline: auto;
        font-size: 16px;
        text-align: center;
    }

    .process-proof {
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px 9px;
        padding: 12px 14px;
    }

    .process-proof span:last-child {
        flex-basis: 100%;
        font-size: 13px;
        white-space: normal;
        text-align: center;
    }

    .section-subtitle {
        max-width: 360px;
        font-size: 15px;
    }

    .hero-actions {
        justify-content: center;
    }

    .features,
    .services,
    .process-section,
    .gallery-section,
    .contact {
        padding: 54px 0;
    }

    .process-visual {
        margin-bottom: 42px;
    }

    .features {
        padding-top: 18px;
    }

    .contact-photo-slider {
        margin-top: 28px;
    }

    .contact-photo-group img {
        width: 230px;
        height: 146px;
    }

    .ticker-track span {
        min-height: 48px;
        padding: 0 24px;
        font-size: 15px;
    }

    .emergency-strip {
        flex-wrap: wrap;
        gap: 8px 12px;
        padding: 16px 14px;
    }

    .emergency-strip strong {
        font-size: 20px;
    }

    .emergency-strip span:last-child {
        flex-basis: 100%;
        max-width: 360px;
        font-size: 14px;
        line-height: 1.45;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 31px;
    }

    .hero {
        min-height: 540px;
    }

    .hero-content p {
        display: block;
        max-width: 330px;
    }

    .btn-phone,
    .btn-phone-large {
        width: 100%;
    }

    .hero .btn-phone {
        min-width: 0;
        min-height: 74px;
        padding: 18px 22px;
        font-size: 21px;
    }

    .process-proof {
        width: min(100%, 330px);
        padding: 11px 12px;
    }

    .proof-stars {
        font-size: 16px;
    }

    .process-proof strong {
        font-size: 16px;
    }

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

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

    .service-card {
        min-height: 0;
        padding: 18px 16px;
    }

    .service-card h3 {
        font-size: 17px;
    }

    .service-card p {
        font-size: 13px;
        line-height: 1.45;
    }

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

    .feature-card {
        padding: 16px 8px;
    }

    .feature-icon {
        width: 34px;
        height: 34px;
        margin-bottom: 8px;
        font-size: 12px;
    }

    .feature-card h3 {
        font-size: 13px;
    }

    .feature-card p {
        display: none;
    }

    .process-steps {
        margin-top: 28px;
    }

    .featured-photo {
        grid-column: span 2;
        grid-row: auto;
    }

    .featured-photo img {
        min-height: 0;
        aspect-ratio: 16 / 11;
    }

    .photo-card figcaption {
        min-height: 48px;
        padding: 12px 12px 13px;
    }

    .photo-card figcaption strong {
        font-size: 14px;
    }

    .photo-card figcaption span {
        display: none;
    }

    .floating-contact {
        right: 18px;
        bottom: 78px;
        gap: 7px;
        align-items: flex-end;
        max-width: 150px;
    }

    .floating-status {
        width: 72px;
        justify-content: center;
        gap: 4px;
        padding: 6px 5px;
    }

    .floating-status strong {
        font-size: 11px;
    }

    .status-dot {
        width: 8px;
        height: 8px;
    }

    .floating-call-btn {
        width: 68px;
        height: 68px;
        font-size: 30px;
    }

    .footer {
        padding: 30px 0 max(34px, env(safe-area-inset-bottom));
    }

    .footer-row {
        flex-direction: column;
        justify-content: center;
        gap: 16px;
        text-align: center;
    }

    .footer-logo-text {
        font-size: 19px;
    }

    .footer-info {
        display: none !important;
    }

    .footer-mobile-details {
        display: block !important;
        width: min(100%, 360px);
        margin: 0 auto;
        color: rgba(255, 255, 255, 0.88);
    }

    .footer-mobile-details summary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        padding: 0 18px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff;
        font-size: 14px;
        font-weight: 850;
        cursor: pointer;
        list-style: none;
    }

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

    .footer-mobile-details summary::marker {
        content: "";
    }

    .footer-mobile-details summary::after {
        content: "+";
        margin-left: 8px;
        color: var(--accent-color);
        font-size: 18px;
        line-height: 1;
    }

    .footer-mobile-details[open] summary::after {
        content: "-";
    }

    .footer-mobile-info {
        display: grid;
        gap: 9px;
        margin-top: 16px;
        padding: 18px 14px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        color: rgba(255, 255, 255, 0.68);
        font-size: 13px;
        line-height: 1.65;
        word-break: keep-all;
    }
}
