:root {
    --bg: #F1EFEC;
    --page-side: #F1EFEC;
    --text: #8E959C;
    --muted: #7a8079;
    --line: rgba(150, 166, 160, 0.14);
    --dark-block: #616764;
    --light-block: #d9d9d9;
    --brand: #F5B426;
    --brand-deep: #c79217;
    --panel: #ffffff;
    --footer: #636a66;
    --shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
    /* 全站骨架最大寬度 */
    --site-max: 1920px;
    --container: 1920px;
    /* Hero 固定比例 */
    --hero-ratio-w: 1920;
    --hero-ratio-h: 1080;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Noto Serif TC", sans-serif;
    background: #ffffff;
    color: var(--text);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

/* =========================
   全站骨架 1920
========================= */
.site-shell {
    width: min(100%, var(--site-max));
    margin: 0 auto;
    background: var(--bg);
    overflow: hidden;
    box-shadow: 0 0 36px rgba(0, 0, 0, 0.05);
    position: relative;
    min-height: 100vh;
}

.site-frame {
    width: 100%;
    position: relative;
}

.container {
    width: min(100%, var(--container));
    margin: 0 auto;
}

/* =========================
   Nav Panel
========================= */
.nav-panel {
    font-family: "Noto Sans TC", sans-serif;
    position: fixed;
    top: 0;
    left: 50%;
    width: min(100%, var(--site-max));
    height: 100vh;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
    z-index: 1001;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 0) translateX(130%);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, visibility 0s linear 0.7s;
}

    .nav-panel.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate(-50%, 0) translateX(0);
        transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, visibility 0s linear 0s;
    }

.nav-panel-shell {
    width: 100%;
    height: 100vh;
}

.nav-backdrop {
    position: fixed;
    top: 0;
    left: 50%;
    width: min(100%, var(--site-max));
    height: 100vh;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    z-index: 1000;
}

    .nav-backdrop.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: opacity 0.3s ease, visibility 0s linear 0s;
    }

/* =========================
   Fullscreen Menu Layout
========================= */
.page {
    font-family: "Noto Serif TC", "Microsoft JhengHei", serif;
    width: 100%;
    height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
}

.left-panel {
    flex: 1 1 auto;
    min-width: 0;
    position: relative;
    height: 100vh;
    background: #adb0b2;
    overflow: hidden;
}

.menu-preview-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.28s ease, transform 0.45s ease;
    transform: scale(1.01);
}

.left-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.04) 100%);
    z-index: 1;
}

.nav-logo-box {
    position: absolute;
    top: 10px;
    left: 10px;
    width: min(150px, 10vw);
    height: min(150px, 10vw);
    background: #616963;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

    .nav-logo-box img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.right-panel {
    flex: 0 0 clamp(420px, 34vw, 690px);
    height: 100vh;
    background: #F1EFEC;
    position: relative;
    padding: clamp(20px, 2vw, 28px) clamp(28px, 3.6vw, 62px) clamp(20px, 2vw, 28px) clamp(36px, 5vw, 88px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}

@media (max-height: 900px) {
    .right-panel {
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
    }
}

.menu-topbar {
    position: absolute;
    top: 22px;
    right: 60px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 0;
    min-height: 44px;
    z-index: 5;
}

.nav-close.menu-close-inline {
    position: static;
    width: 46px;
    height: 34px;
    border: 0;
    background: transparent;
    font-size: 52px;
    line-height: 0.7;
    color: #F5B426;
    font-weight: 300;
    cursor: pointer;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu {
    padding-top: clamp(52px, 3.6vw, 76px);
}

.menu-section {
    margin-bottom: clamp(24px, 2.4vw, 44px);
    --menu-content-indent: clamp(22px, 1.8vw, 34px);
    --menu-project-group-gap: clamp(14px, 1.8vw, 30px);
    --menu-project-chip-width: clamp(66px, 5.8vw, 92px);
    --menu-service-chip-width: clamp(54px, 4.9vw, 74px);
    --menu-project-row-width: calc((var(--menu-project-chip-width) * 3) + (var(--menu-project-group-gap) * 2));
    --menu-title-font-size: clamp(26px, 2.15vw, 36px);
    --menu-chip-font-size: clamp(18px, 1.4vw, 24px);
    --menu-phase-font-size: clamp(18px, 1.35vw, 24px);
}

.menu-title {
    display: inline-block;
    font-size: var(--menu-title-font-size);
    letter-spacing: clamp(1px, 0.2vw, 4px);
    line-height: 1.2;
    margin-bottom: clamp(16px, 1.5vw, 26px);
    color:#535B56;
}

/* =========================
   Project Menu
========================= */
.project-section {
    position: relative;
    z-index: 2;
}

.project-section .menu-title {
    margin-top: clamp(18px, 1.6vw, 28px);
}

.project-groups {
    display: flex;
    gap: var(--menu-project-group-gap);
    align-items: flex-start;
    padding-left: var(--menu-content-indent);
    flex-wrap: nowrap;
}

.project-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(10px, 1vw, 16px);
    width: var(--menu-project-chip-width);
    min-width: var(--menu-project-chip-width);
}



.project-name-chipNone {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-align: center;
    letter-spacing: 3px;
    color: #535B56;
    font-family: 'LXGW WenKai TC', sans-serif;
    transition: color 0.22s ease;
    z-index: 1;
    overflow: visible;
}




.project-name-chipNone {
    width: var(--menu-project-chip-width);
    min-width: var(--menu-project-chip-width);
    height: clamp(34px, 2.6vw, 42px);
    font-family: 'LXGW WenKai TC', sans-serif;
    justify-content: center;
    text-align: center;
    padding: 0 clamp(8px, 0.8vw, 12px);
    font-size: var(--menu-chip-font-size);
}

    .project-name-chipNone::before {
        content: "";
        position: absolute;
        inset: 0;
        font-family: 'LXGW WenKai TC', sans-serif;
        background: transparent;
        transform: skewX(-16deg);
        transition: background 0.22s ease;
        z-index: -1;
    }


















.project-name-chip,
.project-phase-chip {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-align: center;
    font-family: 'LXGW WenKai TC', sans-serif;
    letter-spacing: 3px;
    color: #535B56;
    transition: color 0.22s ease;
    z-index: 1;
    overflow: visible;
}

.project-name-chip {
    width: var(--menu-project-chip-width);
    min-width: var(--menu-project-chip-width);
    height: clamp(34px, 2.6vw, 42px);
    justify-content: center;
    text-align: center;
    padding: 0 clamp(8px, 0.8vw, 12px);
    font-size: var(--menu-chip-font-size);
    font-family: 'LXGW WenKai TC', sans-serif;
}

    .project-name-chip::before {
        content: "";
        position: absolute;
        inset: 0;
        background: transparent;
        transform: skewX(-16deg);
        transition: background 0.22s ease;
        z-index: -1;
        font-family: 'LXGW WenKai TC', sans-serif;

    }

    .project-name-chip:hover,
    .project-name-chip:focus-visible,
    .project-name-chip.is-active {
        color: #5f665d;
        outline: none;
    }

        .project-name-chip:hover::before,
        .project-name-chip:focus-visible::before,
        .project-name-chip.is-active::before {
            background: var(--brand);
        }

.project-phase-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: stretch;
    gap: clamp(10px, 0.9vw, 14px);
}

.project-phase-chip {
    width: var(--menu-project-chip-width);
    min-width: var(--menu-project-chip-width);
    height: clamp(34px, 2.6vw, 42px);
    justify-content: center;
    text-align: center;
    padding: 0;
    font-size: var(--menu-phase-font-size);
    font-family: 'LXGW WenKai TC', sans-serif;
    line-height: 1;
}

    .project-phase-chip::before {
        content: "";
        position: absolute;
        inset: 0;
        border: 2px solid transparent;
        transform: skewX(-16deg);
        transition: border-color 0.22s ease;
        pointer-events: none;
        z-index: -1;
    }

    .project-phase-chip:hover,
    .project-phase-chip:focus-visible,
    .project-phase-chip.is-active {
        color: #666d64;
        outline: none;
    }

        .project-phase-chip:hover::before,
        .project-phase-chip:focus-visible::before,
        .project-phase-chip.is-active::before {
            border-color: var(--brand);
        }

/* =========================
   Service hover（套用建案風格）
========================= */
.service-links a,
.single-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: var(--menu-project-chip-width);
    min-width: var(--menu-project-chip-width);
    font-size: var(--menu-chip-font-size);
    letter-spacing: clamp(1px, 0.16vw, 3px);
    color: #81887d;
    padding: clamp(4px, 0.45vw, 6px) 0;
    transition: color 0.22s ease;
    z-index: 1;
    overflow: visible;
}

.service-links {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: var(--menu-project-row-width);
    max-width: 100%;
    gap: 0;
    padding-left: var(--menu-content-indent);
}

@media (max-width: 1600px) {
    .right-panel {
        flex-basis: clamp(400px, 33vw, 620px);
    }
}

@media (max-width: 1440px) {
    .right-panel {
        flex-basis: clamp(360px, 32vw, 560px);
        padding: 20px 24px 20px 28px;
    }

    .project-groups {
        flex-wrap: wrap;
        row-gap: 18px;
    }

    .menu-section[style*="margin-bottom:100px"] {
        margin-bottom: 56px !important;
    }
}

@media (max-width: 1280px) {
    .menu-section {
        --menu-project-group-gap: 12px;
    }

    .right-panel {
        flex-basis: clamp(340px, 31vw, 500px);
        padding: 18px 20px 18px 22px;
    }

    .project-groups {
        gap: 12px;
    }

    .service-links {
        gap: 0;
    }
}

    .service-links a::before,
    .single-links a::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: calc((var(--menu-project-chip-width) - var(--menu-service-chip-width)) / 2);
        right: calc((var(--menu-project-chip-width) - var(--menu-service-chip-width)) / 2);
        background: transparent;
        transform: skewX(-16deg);
        transition: background 0.22s ease;
        z-index: -1;
    }

    .service-links a:hover,
    .single-links a:hover {
        color: #5f665d;
    }

        .service-links a:hover::before,
        .single-links a:hover::before {
            background: var(--brand);
        }

/* =========================
   Hero
========================= */
.hero-wrap {
    position: relative;
    width: 100%;
}

.hero-desktop,
.hero-mobile {
    position: relative;
    background-color: var(--bg);
    overflow: hidden;
}

.hero-desktop {
    display: block;
    width: 100%;
    max-width: var(--site-max);
    margin: 0 auto;
    aspect-ratio: calc(var(--hero-ratio-w) / var(--hero-ratio-h));
    border-bottom: 0.5px solid rgba(80, 90, 80, 0.08);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: var(--bg);
}

.hero-mobile {
    display: none;
    min-height: 932px;
    border-bottom: 1px solid rgba(80, 90, 80, 0.08);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-desktop-top {
    position: absolute;
    inset: 0 0 auto 0;
    z-index: 8;
    height: 150px;
}

.desktop-brand {
    position: absolute;
    top: 0;
    left: 26px;
    display: block;
}

    .desktop-brand .brand-mark {
        width: min(150px, 10vw);
        height: min(150px, 10vw);
        background: #5d645f;
        color: #bcc5cb;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .desktop-brand img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.menu-btn {
    cursor: pointer;
}

.desktop-menu-btn {
    --menu-icon-color: #535B56;
    position: absolute;
    top: -10px;
    right: 0;
    width: clamp(150px, 9.6vw, 186px);
    height: clamp(102px, 7.2vw, 126px);
    border: 0;
    background: transparent;
    padding: 0;
    display: block;
}

.desktop-menu-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--menu-icon-color);
    -webkit-mask-image: url('images/MENU_ham.svg');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-image: url('images/MENU_ham.svg');
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 100% 100%;
}

.desktop-menu-btn span {
    display: none;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hex-line {
    position: absolute;
    width: 420px;
    height: 485px;
    border: 1px solid var(--line);
    clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0% 50%);
}

    .hex-line.h1 {
        top: -25px;
        left: -90px;
    }

    .hex-line.h2 {
        top: -25px;
        left: 290px;
    }

    .hex-line.h3 {
        top: -25px;
        left: 670px;
    }

    .hex-line.h4 {
        top: 200px;
        left: 100px;
    }

    .hex-line.h5 {
        top: 200px;
        left: 860px;
    }

    .hex-line.h6 {
        top: 410px;
        left: 500px;
    }

.hero-desktop-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    padding-top: 110px;
    padding-bottom: 170px;
}

.desktop-copy {
    width: 320px;
    margin-left: 65px;
    margin-top: 110px;
}

    .desktop-copy p {
        margin: 0 0 18px;
        color: #5b635d;
        font-size: 22px;
        line-height: 1.35;
        letter-spacing: 2px;
        font-weight: 500;
    }

    .desktop-copy small {
        display: inline-block;
        margin-top: 34px;
        color: var(--brand);
        font-size: 16px;
        letter-spacing: 2px;
        font-weight: 400;
    }

.desktop-visuals {
    position: relative;
    flex: 1;
    min-height: 620px;
}

/* Mobile hero */
.hero-mobile-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.mhex {
    position: absolute;
    width: 250px;
    height: 285px;
    border: 1px solid rgba(159, 173, 168, 0.12);
    clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0% 50%);
}

.m1 {
    top: 118px;
    left: -85px;
}

.m2 {
    top: 248px;
    right: -70px;
}

.m3 {
    top: 515px;
    left: 28px;
}

.m4 {
    top: 650px;
    right: 10px;
}

.hero-top {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 5;
}

.logo-box {
    width: 130px;
    height: 130px;
    background: #5d645f;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .logo-box img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.mobile-menu-btn {
    margin-top: 42px;
    margin-right: 34px;
    width: 44px;
    height: 32px;
    border: 0;
    background: transparent;
    padding: 0;
}

/* =========================
   Shared sections
========================= */
.section {
    position: relative;
    padding: 96px 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--brand);
    letter-spacing: 2px;
    font-size: 14px;
}

h2 {
    margin: 0 0 16px;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    color: #6b726c;
}

p {
    line-height: 1.9;
}

/* =========================
   Showcase
========================= */
.showcase {
    background: var(--bg);
    width: 100%;
}

    .showcase > div {
        width: 100%;
        max-width: var(--site-max);
        margin: 0 auto;
    }

    .showcase img {
        width: 100%;
        height: auto;
        display: block;
    }

.split-card {
    position: relative;
    min-height: 540px;
}

    .split-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.split-overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -42%);
    text-align: center;
    color: #fff;
}

    .split-overlay h2 {
        color: #fff;
        margin-bottom: 24px;
        font-size: 58px;
        letter-spacing: 4px;
    }

/* =========================
   Buttons
========================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    padding: 12px 24px;
    border: 1px solid transparent;
    transition: 0.2s ease;
}

.btn-light {
    background: rgba(255, 255, 255, 0.92);
    color: #535B56;
}

.btn-primary {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}

.btn-ghost {
    background: transparent;
    color: #666;
    border-color: #bfbfbf;
}

.btn-gray {
    background: #636a66;
    color: #fff;
    border: 0;
}

.upload-preview-block {
    margin-top: 24px;
}

    .upload-preview-block h4 {
        margin: 18px 0 10px;
        font-size: 16px;
        color: #5f665f;
    }

.preview-card {
    position: relative;
    display: inline-block;
    width: 140px;
    margin: 0 12px 12px 0;
    border: 1px solid #d8d2c7;
    background: #fff;
    padding: 8px;
    vertical-align: top;
}

.preview-thumb {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
    background: #F1EFEC;
}

.preview-name {
    margin-top: 8px;
    font-size: 12px;
    color: #666;
    word-break: break-all;
    line-height: 1.5;
}

.preview-delete {
    position: absolute;
    top: 4px;
    right: 6px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0,0,0,0.65);
    color: #fff !important;
    text-align: center;
    line-height: 24px;
    font-size: 16px;
    text-decoration: none;
}

.video-card2 {
    width: 220px;
    min-height: 90px;
}

.video-file-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

/* =========================
   Projects
========================= */
.two-col {
    font-family: "Noto Sans TC", sans-serif;
    display: grid;
    grid-template-columns: 500px 650px;
    gap: 48px;
    align-items: start;
}



.chip-row {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.chip {
    border: 1px solid #c8c1b0;
    background: transparent;
    color: #746f66;
    padding: 8px 18px;
    cursor: pointer;
}

    .chip.is-active {
        background: var(--brand);
        border-color: var(--brand);
        color: #fff;
    }

.project-stage {
    position: relative;
}

.stage-card {
    display: none;
    background: #eef0f0;
    padding: 20px;
}

    .stage-card.is-active {
        display: block;
    }

    .stage-card img {
        width: 100%;
    }

/* =========================
   About
========================= */
.about-hero {
    position: relative;
    padding: 120px 0 70px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.about-hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.about-copy h2 {
    margin: 0 0 18px;
}

.about-lead {
    margin: 0 0 14px;
    color: #5f665f;
    font-size: 18px;
    line-height: 1.95;
    font-family: "Noto Serif TC", sans-serif;
}

.about-visual img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.about-content-section {
    padding: 70px 0 40px;
    background: var(--bg);
}

.about-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.about-info-card {
    background: #f8f6f1;
    border: 1px solid #ddd6ca;
    padding: 30px 28px;
    min-height: 280px;
}

    .about-info-card h3 {
        margin: 0 0 18px;
        font-size: 26px;
        font-weight: 400;
        color: #5f665f;
        font-family: "Noto Serif TC", sans-serif;
    }

    .about-info-card p {
        margin: 0;
        color: #6b726c;
        line-height: 2;
        font-size: 16px;
        font-family: "Noto Sans TC", sans-serif;
    }

.about-banner-section {
    padding: 20px 0 90px;
    background: var(--bg);
}

.about-banner {
    background: #636a66;
    padding: 46px 54px;
}

.about-banner-text h3 {
    margin: 0 0 18px;
    color: #F1EFEC;
    font-size: 34px;
    line-height: 1.5;
    font-weight: 400;
    font-family: "Noto Serif TC", sans-serif;
}

.about-banner-text p {
    margin: 0;
    color: #e3e8e2;
    font-size: 16px;
    line-height: 2;
    font-family: "Noto Sans TC", sans-serif;
}

/* =========================
   Repair
========================= */


.repair-grid {
    font-family: "Noto Sans TC", sans-serif;
    align-items: start;
}

.repair-form {
    background: rgba(255, 255, 255, 0.55);
    border: 0.5px solid #8E959C;
    padding: 28px;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.repair-form label {
    display: block;
    font-size: 14px;
    color: #666;
}

.repair-form input,
.repair-form select,
.repair-form textarea {
    width: 100%;
    margin-top: 8px;
    border: 0;
    border-bottom: 0.5px solid #8E959C;
    background: transparent;
    padding: 10px 6px;
    color: #535B56;
}

.repair-form textarea {
    border: 0.5px solid #8E959C;
    resize: vertical;
    min-height: 120px;
}

.repair-form .full {
    margin-bottom: 18px;
}

.upload-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 18px;
}

.upload-box {
    border: 1px solid #8E959C;
    padding: 16px;
    text-align: center;
    background: #f7f7f7;
    min-height: 74px;
    color: #777;
}

    .upload-box small {
        display: block;
        margin-top: 4px;
        color: #9a9a9a;
    }

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 26px;
}

/* =========================
   Handover
========================= */
.handover-grid {
    font-family: "Noto Sans TC", sans-serif;
    align-items: center;
}

.steps {
    margin: 12px 0 0 20px;
    padding: 0;
    line-height: 2;
    color: #535B56
}

.video-card {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .video-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .video-card iframe {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 16 / 9;
        height: auto;
        min-height: 315px;
    }

.gallery-block {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.gallery-card {
    border-radius: 34px;
    overflow: hidden;
}

    .gallery-card img {
        width: 100%;
        height: 340px;
        object-fit: cover;
    }

/* =========================
   Record Gallery（修正版）
========================= */
.record-gallery-section {
    padding: 32px 0 80px;
    background: var(--bg);
}

.record-gallery-shell {
    width: min(calc(100% - 180px), 1500px);
    margin: 0 auto;
}

.record-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 52px 28px;
}

.record-card {
    width: 100%;
}

.record-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 0.7;
    overflow: hidden;
    background: #ddd;
}

.record-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* ? 重點修正：浮在圖片上 */
.record-watermark {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    z-index: 99 !important;
    background: rgba(0, 0, 0, 0.45) !important;
    color: #fff !important;
    padding: 6px 12px !important;
    font-size: 13px !important;
    letter-spacing: 1px !important;
    font-family: "Noto Sans TC", sans-serif !important;
    border-radius: 2px !important;
}

.record-workname {
    margin-top: 12px;
    font-size: 15px;
    color: #535B56;
    text-align: left;
    letter-spacing: 1px;
    font-family: "Noto Serif TC", sans-serif;
}




.record-empty {
    text-align: center;
    color: #7a8079;
    padding: 40px 0;
    font-size: 16px;
}
}

/* =========================
   Record Hero
========================= */
#record.section {
    padding: 120px 0 56px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

#record .container {
    width: min(100%, var(--container));
    margin: 0 auto;
}

#record .handover-grid {
    display: grid !important;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 56px;
    align-items: center !important;
}

#record h2 {
    margin: 0 0 18px;
}

#record p {
    margin: 0 0 12px;
}

#record .video-card {
    width: 100%;
    max-width: 620px;
    margin-left: auto;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

    #record .video-card iframe {
        width: 100%;
        aspect-ratio: 16 / 9;
        min-height: auto;
        border: 0;
        display: block;
        background: #000;
    }

#record .steps {
    margin: 24px 0 0 20px;
    padding: 0;
    line-height: 2;
    color: #5f665f;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 16px;
}

/* =========================
   Service
========================= */
.service-grid {
    font-family: "Noto Sans TC", sans-serif;
    display: grid;
    gap: 30px;
}

.service-columns {
    display: grid;
    grid-template-columns: 0.5fr 1.5fr 1.5fr;
    gap: 28px;
}

.service-card {
    line-height: 2;
    padding: 24px 28px;
    border: 0 solid rgba(150, 150, 150, 0.18);
}

    .service-card h3 {
        margin-top: 0;
        font-size: 28px;
        font-weight: 400;
        color: #6f756f;
    }

    .service-card ul {
        margin: 0;
        padding-left: 20px;
        line-height: 2;
    }

/* =========================
   About (舊版保留區塊)
========================= */
.about-grid {
    font-family: "Noto Sans TC", sans-serif;
    display: grid;
    gap: 30px;
}

.about-columns {
    display: grid;
    grid-template-columns: 0.8fr 2fr;
    gap: 28px;
}

.about-card {
    line-height: 2;
    padding: 24px 28px;
    border: 0 solid rgba(150, 150, 150, 0.18);
}

    .about-card h3 {
        margin-top: 0;
        font-size: 28px;
        font-weight: 400;
        color: #6f756f;
    }

    .about-card ul {
        margin: 0;
        padding-left: 20px;
        line-height: 2;
    }

/* =========================
   Footer
========================= */
.footer {
    font-family: "Noto Sans TC", sans-serif;
    background: #535B56;
    color: #8E959C;
    padding: 0;
    margin-top: 0;
    position: relative;
    top: -2px;
}

.footer-inner {
    width: min(calc(100% - 32px), 1680px);
    margin: 0 auto;
    padding: clamp(60px, 4.8vw, 84px) 0 clamp(20px, 2vw, 28px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 0.2fr 1.15fr 1fr 1.12fr 1.2fr;
    gap: clamp(42px, 4vw, 92px);
    align-items: start;
    justify-items: start;
    text-align: left;
}

.footer-grid > .footer-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-self: start;
}

.footer-col {
    min-width: 0;
    letter-spacing: 0.05em;
}

.footer-col-spacer {
    width: 100%;
    min-height: 1px;
}

.footer-grid > .footer-col:nth-child(2) p {
    padding-left: 1em;
}

.footer-col-links {
    display: flex;
    flex-direction: column;
    gap: clamp(22px, 2vw, 40px);
    margin-top: clamp(18px, 1.6vw, 28px);
}

.footer-col-service {
    padding-right: clamp(8px, 1vw, 18px);
}

.footer h4 {
    margin: 0 0 clamp(8px, 0.7vw, 12px);
    font-size: clamp(15px, 0.98vw, 17px);
    color: #8E959C;
    line-height: 1.7;
    font-weight: 600;
}

.footer p {
    margin: 0 0 clamp(10px, 0.9vw, 16px);
    font-size: clamp(13px, 0.86vw, 16px);
    color: #8E959C;
    line-height: 1.72;
    word-break: break-word;
}

.footer a {
    color: inherit;
}

.footer-meta {
    font-size: clamp(11px, 0.72vw, 13px) !important;
    line-height: 1.6;
    margin: 0;
}

.footer-accordion {
    margin: 0;
    padding: 0;
    align-self: flex-start;
}

.footer-accordion-summary {
    list-style: none;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    margin: 0 0 clamp(8px, 0.7vw, 12px);
    padding: 0 18px 0 0;
    font-size: clamp(15px, 0.98vw, 17px);
    color: #8E959C;
    line-height: 1.7;
    font-weight: 600;
    transition: color 0.2s ease;
    position: relative;
    vertical-align: top;
}

.footer-accordion-summary::-webkit-details-marker {
    display: none;
}

.footer-accordion-summary:hover,
.footer-accordion-summary:focus-visible {
    color: #F1EFEC;
}

.footer-accordion-summary:hover::after,
.footer-accordion-summary:focus-visible::after {
    color: #F1EFEC;
}

.footer-accordion-summary::after {
    content: "";
    position: absolute;
    right: 2px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-62%) rotate(45deg);
    transform-origin: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.footer-accordion[open] .footer-accordion-summary::after {
    transform: translateY(-38%) rotate(-135deg);
}

.footer-accordion-body {
    display: grid;
    gap: clamp(10px, 0.9vw, 16px);
    justify-items: end;
    text-align: right;
}

.footer-accordion-body p {
    width: 100%;
    margin: 0;
    text-align: right;
}

.footer-grid > .footer-col:nth-child(4) > p:first-child {
    margin-top: 1px;
}

.footer-grid > .footer-col:nth-child(5) > p:first-child {
    margin-top: 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: clamp(22px, 2vw, 34px);
    margin-top: clamp(120px, 4vw, 64px);
    color: #8E959C;
    flex-wrap: nowrap;
    text-align: right;
}

.footer-bottom-link {
    margin: 0;
}

.footer-social-row {
    display: inline-flex;
    align-items: center;
    gap: clamp(18px, 1.6vw, 24px);
    margin: 0;
}

.footer-social-row img {
    display: block;
}

@media (max-width: 1680px) {
    .footer-inner {
        width: min(calc(100% - 28px), 1540px);
    }

    .footer-grid {
        grid-template-columns: 0.16fr 1fr 0.8fr 1.3fr 1.3fr;
        gap: clamp(34px, 3vw, 64px);
    }

    .footer h4,
    .footer-accordion-summary {
        font-size: clamp(14px, 0.9vw, 16px);
    }

    .footer p {
        font-size: clamp(12px, 0.8vw, 15px);
    }

    .footer-col-links {
        gap: clamp(18px, 1.5vw, 28px);
        margin-top: clamp(14px, 1.2vw, 22px);
    }

    .footer-bottom {
        gap: clamp(18px, 1.6vw, 28px);
    }
}

@media (max-width: 1440px) {
    .footer-inner {
        width: min(calc(100% - 24px), 1360px);
    }

    .footer-grid {
        grid-template-columns: 0.34fr 1.15fr 1fr 1.12fr 1.2fr;
        gap: clamp(24px, 2.2vw, 42px);
    }

    .footer h4,
    .footer-accordion-summary {
        font-size: clamp(13px, 0.84vw, 15px);
    }

    .footer p,
    .footer-meta {
        font-size: clamp(11px, 0.74vw, 13px) !important;
    }

    .footer-col-links {
        gap: clamp(14px, 1.1vw, 22px);
        margin-top: 12px;
    }
}

@media (max-width: 1280px) {
    .footer-inner {
        width: min(calc(100% - 20px), 1220px);
        padding-top: 56px;
    }

    .footer-grid {
        grid-template-columns: 0.1fr 1fr 0.6fr 1.12fr 1.2fr;
        gap: 18px;
    }

    .footer h4,
    .footer-accordion-summary {
        font-size: 12px;
    }

    .footer p,
    .footer-meta {
        font-size: 11px !important;
        line-height: 1.58;
    }

    .footer-accordion-body {
        gap: 8px;
    }

    .footer-col-links {
        gap: 12px;
        margin-top: 10px;
    }

    .footer-bottom {
        gap: 14px;
    }

    .footer-social-row {
        gap: 14px;
    }
}

/* =========================
   Project Detail
========================= */
.project-detail-page {
    background: var(--bg);
}

.project-hero-section {
    padding: 0;
    background: var(--bg);
}

.project-hero-shell,
.project-intro-shell,
.project-carousel-shell {
    width: min(100%, var(--site-max));
    margin: 0 auto;
    position: relative;
}

.project-hero-shell {
    overflow: hidden;
}

.project-back-btn {
    position: absolute;
    top: 18px;
    left: 16px;
    z-index: 20;
    width: 72px;
    height: 56px;
    background: rgba(92, 99, 95, 0.75);
    color: #F1EFEC;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
}

.project-detail-menu-btn {
    position: absolute;
    top: 22px;
    right: 18px;
    z-index: 20;
}

.project-hero-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 920;
    overflow: hidden;
}

.project-hero-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.project-hero-caption {
    position: absolute;
    padding: 36px 42px;
    background: rgba(90, 90, 90, 0.45);
    backdrop-filter: blur(4px);
    color: #F1EFEC;
    font-size: 36px;
    letter-spacing: 2px;
    text-align: left;
    font-family: "Noto Sans TC", sans-serif;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    display: inline-block;
}

.project-intro-section {
    padding: 0;
    background: var(--bg);
}

.project-intro-shell {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: center;
    padding: 100px 60px 34px;
    background: #F1EFEC;
}

.project-intro-copy {
    max-width: 360px;
}

    .project-intro-copy p {
        margin: 0 0 20px;
        color: #666c66;
        font-size: 16px;
        line-height: 2.1;
        font-family: "Noto Serif TC", sans-serif;
    }

.project-booking-btn {
    display: inline-block;
    margin-top: 18px;
    min-width: 132px;
    padding: 10px 24px;
    border: 1px solid #8E959C;
    
    color: #535B56;
    text-decoration: none;
    text-align: center;
    font-size: 15px;
    letter-spacing: 2px;
    font-family: "Noto Serif TC", sans-serif;
}

.project-intro-right {
    position: relative;
}

.project-middle-image {
    width: 100%;
    display: block;
    object-fit: cover;
}

.project-carousel-section {
    padding: 28px 0 52px;
    background: var(--bg);
}

.project-carousel-shell {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 60px;
}

.project-carousel-arrow {
    width: 48px;
    height: 48px;
    border: 0;
    background: transparent;
    color: #F5B426;
    font-size: 48px;
    line-height: 1;
    cursor: pointer;
    flex: 0 0 auto;
}

.project-carousel-viewport {
    overflow: hidden;
    width: 100%;
}

.project-carousel-track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

    .project-carousel-track::-webkit-scrollbar {
        display: none;
    }

.project-carousel-card {
    flex: 0 0 260px;
    display: block;
    text-decoration: none;
}

    .project-carousel-card img {
        width: 100%;
        height: 175px;
        display: block;
        object-fit: cover;
        border-radius: 20px;
    }

/* =========================
   Home / Default
========================= */
.home-page,
.hero-wrap {
    background: #e7e3dc;
}

.hero.hero-desktop {
    position: relative;
    width: min(100%, var(--site-max));
    margin: 0 auto;
    min-height: 980px;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    overflow: hidden;
}

.home-topbar {
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 26px;
}

.home-inner-fixed {
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 4;
}

.hero-desktop-inner {
    min-height: 900px;
    position: relative;
}

.desktop-brand .brand-mark img {
    display: block;
    max-width: 220px;
    height: auto;
}

.hero-desktop-top .desktop-brand .brand-mark {
    width: min(150px, 10vw) !important;
    height: min(150px, 10vw) !important;
    min-width: 0 !important;
    min-height: 0 !important;
}

.nav-panel .desktop-brand .brand-mark {
    width: min(150px, 10vw) !important;
    height: min(150px, 10vw) !important;
    min-width: 0 !important;
    min-height: 0 !important;
}

.hero-desktop-top .desktop-brand .brand-mark img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: contain !important;
}

.nav-panel .desktop-brand .brand-mark img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: contain !important;
}

.desktop-menu-btn {
    margin-top: 4px;
}

.desktop-copy,
.desktop-visuals {
    position: relative;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

/* =========================
   Responsive
========================= */




/* =========================
   共用頁面（About / Service / Contact）
========================= */

.page-wrap {
    background: #e7e3dc;
}

/* 上方形象 */
.page-hero {
    width: min(100%, var(--site-max));
    margin: 0 auto;
    background-size: cover;
    background-position: center top;
    padding: 120px 0 80px;
    position: relative;
}

.page-inner {
    width: min(calc(100% - 80px), 1024px);
    margin: 0 auto;
}

.page-title {
    font-size: 40px;
    color: #5f665f;
    margin-bottom: 10px;
    font-family: "Noto Serif TC";
}

.page-subtitle {
    font-size: 16px;
    color: #7a8079;
    letter-spacing: 2px;
}

/* 下方內容 */
.page-content {
    padding: 60px 0 80px;
}

.service-intro {
    margin-bottom: 40px;
}

    .service-intro h2 {
        font-size: 24px;
        margin-bottom: 16px;
        color: #5f665f;
    }

    .service-intro p {
        line-height: 1.8;
        color: #6b6f69;
    }

/* 卡片 */
.service-box {
    background: #F1EFEC;
    border: 1px solid #d8d2c7;
    padding: 24px;
    margin-bottom: 20px;
}

    .service-box h3 {
        margin-bottom: 12px;
        color: #5f665f;
    }

    .service-box ul {
        padding-left: 20px;
    }

    .service-box li {
        margin-bottom: 8px;
        color: #6b6f69;
    }


/* =========================
   Service
========================= */
.service-page-section {
    min-height: 980px;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.service-fixed-wrap {
    width: min(calc(100% - 80px), 1024px);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 42px;
}

.service-left-col {
    flex: 0 0 31%;
}

.service-right-col {
    flex: 0 0 69%;
}

.service-space {
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
}

.service-space-small {
    font-size: 16px;
    margin: 0;
    line-height: 1.2;
}

.service-left-col h2 {
    margin: 0;
}

.service-left-empty {
    font-size: 18px;
    font-family: "Noto Serif TC", sans-serif;
    margin: 0;
    min-height: 36px;
}

.service-content-box {
    width: 100%;
}

.service-table-main {
    width: 100%;
    border-collapse: collapse;
}

.service-col-cell {
    width: 50%;
    vertical-align: top;
    padding-right: 24px;
}

    .service-col-cell:last-child {
        padding-right: 0;
        padding-left: 8px;
    }

    .service-col-cell h3 {
        margin: 0 0 18px;
        font-size: 24px;
        font-family: "Noto Serif TC", sans-serif;
        color: #5f665f;
        font-weight: 500;
    }

.service-sub-table {
    width: 100%;
    border-collapse: collapse;
}

    .service-sub-table td {
        padding: 6px 0;
        font-size: 16px;
        color: #5f665f;
        line-height: 1.8;
        font-family: "Noto Sans TC", sans-serif;
        vertical-align: top;
    }

.service-sub-note {
    color: #ababab !important;
}




/* =========================
   About
========================= */

.about-page-section {
    min-height: 980px;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.about-fixed-wrap {
    width: min(calc(100% - 80px), 1024px);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 42px;
}

/* 左 */
.about-left-col {
    flex: 0 0 31%;
}

.about-space {
    font-size: 16px;
    margin: 0;
}

.about-space-small {
    font-size: 16px;
    margin: 0;
}

.about-empty {
    font-size: 18px;
    font-family: "Noto Serif TC", sans-serif;
}

/* 右 */
.about-right-col {
    flex: 0 0 69%;
    margin-top: 6%;
}

.about-table {
    width: 100%;
}

    .about-table td {
        padding: 6px 0;
        font-size: 16px;
        color: #5f665f;
        line-height: 1.8;
        font-family: "Noto Sans TC", sans-serif;
    }




.project-detail-page {
    background: var(--bg);
}

.project-hero-section {
    padding: 0;
    background: var(--bg);
}

.project-hero-shell,
.project-intro-shell,
.project-carousel-shell {
    width: min(100%, var(--site-max));
    margin: 0 auto;
    position: relative;
}

.project-hero-shell {
    position: relative;
    overflow: hidden;
}

    .project-hero-shell .hero-desktop-top {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 30;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 0;
    }

    .project-hero-shell .desktop-brand {
        display: block;
        position: relative;
        z-index: 31;
    }

    .project-hero-shell .brand-mark {
        width: min(150px, 10vw) !important;
        height: min(150px, 10vw) !important;
        background: #616963;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .project-hero-shell .brand-mark img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

.project-detail-menu-btn {
    margin: 22px 18px 0 0;
    position: relative;
    z-index: 31;
}

.project-back-btn {
    position: absolute;
    top: 18px;
    left: 16px;
    z-index: 29;
    width: 72px;
    height: 56px;
    background: rgba(92, 99, 95, 0.75);
    color: #F1EFEC;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
}

.project-hero-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 920;
    overflow: hidden;
}

.project-hero-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.project-hero-caption {
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: #F1EFEC;
    font-size: 36px;
    line-height: 2;
    letter-spacing: 2px;
    text-align: left;
    font-family: "Noto Serif TC", sans-serif;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.project-intro-section {
    padding: 0;
    background: var(--bg);
}

.project-intro-shell {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: center;
    padding: 100px 60px 34px;
    background: var(--bg);
}

.project-intro-copy {
    max-width: 360px;
}

    .project-intro-copy p {
        margin: 0 0 20px;
        color: #666c66;
        font-size: 16px;
        line-height: 2.1;
        font-family: "Noto Serif TC", sans-serif;
    }

.project-booking-btn {
    display: inline-block;
    margin-top: 18px;
    min-width: 132px;
    padding: 10px 24px;
    border: 1px solid rgba(123, 131, 124, 0.45);
    background: rgba(255,255,255,0.28);
    color: #666c66;
    text-decoration: none;
    text-align: center;
    font-size: 15px;
    letter-spacing: 2px;
    font-family: "Noto Serif TC", sans-serif;
}

.project-intro-right {
    position: relative;
}

.project-middle-image {
    width: 100%;
    display: block;
    object-fit: cover;
}

.project-carousel-section {
    padding: 28px 0 52px;
    background: var(--bg);
}

.project-carousel-shell {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 60px;
}

.project-carousel-arrow {
    width: 48px;
    height: 48px;
    border: 0;
    background: transparent;
    color: #F5B426;
    font-size: 48px;
    line-height: 1;
    cursor: pointer;
    flex: 0 0 auto;
}

.project-carousel-viewport {
    overflow: hidden;
    width: 100%;
}

.project-carousel-track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

    .project-carousel-track::-webkit-scrollbar {
        display: none;
    }

.project-carousel-card {
    flex: 0 0 260px;
    display: block;
    text-decoration: none;
}

    .project-carousel-card img {
        width: 100%;
        height: 175px;
        display: block;
        object-fit: cover;
        border-radius: 20px;
    }

}

/* =========================
   Record Hero
========================= */
#record.section {
    padding: 110px 0 46px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.record-top-shell {
    width: min(calc(100% - 220px), 1500px);
    margin: 0 auto;
}

.record-top-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 72px;
    align-items: center;
}

.record-top-copy {
    max-width: 420px;
}

    .record-top-copy h2 {
        margin: 0 0 28px;
        font-size: 50px;
        font-weight: 400;
        letter-spacing: 2px;
        color: #9aa0a3;
        font-family: "Noto Serif TC", sans-serif;
    }

    .record-top-copy p {
        margin: 0 0 16px;
        color: #8e6f6f;
        font-size: 16px;
        line-height: 2.15;
        font-family: "Noto Serif TC", sans-serif;
    }

.record-top-video .video-card {
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    background: transparent;
    box-shadow: none;
}

    .record-top-video .video-card iframe {
        width: 100%;
        aspect-ratio: 16 / 10;
        min-height: auto;
        display: block;
        border: 0;
        background: #000;
    }

/* =========================
   Record Gallery
========================= */
.record-gallery-section {
    padding: 32px 0 80px;
    background: var(--bg);
}

.record-gallery-shell {
    width: min(calc(100% - 180px), 1500px);
    margin: 0 auto;
}

.record-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 52px 28px;
}

.record-card {
    width: 100%;
}

.record-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 0.7;
    overflow: hidden;
    background: #ddd;
}

.record-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.record-watermark {
    position: absolute;
    left: 0;
    top: -38px;
    background: transparent;
    color: #727979;
    font-size: 16px;
    letter-spacing: 1px;
    font-family: "Noto Serif TC", sans-serif;
}



.record-empty {
    text-align: center;
    color: #7a8079;
    padding: 40px 0;
    font-size: 16px;
}

/* =========================
   RWD
========================= */

@media (max-width: 1180px) {

    .service-middle .container.two-col.handover-grid:not(.about-fixed-wrap) {
        display: grid !important;
        grid-template-columns: minmax(240px, 0.78fr) minmax(380px, 1.22fr) !important;
        gap: 42px !important;
        align-items: start !important;
        width: min(calc(100% - 72px), 1280px);
    }

    .service-middle .container.two-col.handover-grid:not(.about-fixed-wrap) > div {
        min-width: 0;
        max-width: none !important;
    }

    .delivery-page .about-fixed-wrap {
        width: min(calc(100% - 72px), 1120px);
        gap: 42px;
    }

    .repair-form {
        padding: 24px;
    }

    .field-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

@media (max-width: 1366px) and (min-width: 768px) and (orientation: landscape) {

    .service-page .service-top,
    .delivery-page .service-top {
        background-position: right top !important;
    }
}

@media (max-width: 1024px) {

    .service-page .service-top,
    .delivery-page .service-top {
        height: 160px !important;
    }

    .service-middle .container.two-col.handover-grid:not(.about-fixed-wrap) {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        width: min(calc(100% - 56px), 920px);
    }

    .delivery-page .about-fixed-wrap {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: min(calc(100% - 56px), 920px);
        gap: 30px;
    }

    .delivery-page .about-left-col,
    .delivery-page .about-right-col {
        flex: none;
        max-width: none;
    }

    .repair-form {
        padding: 22px;
    }

}



body.tablet-device main.tablet-title-standard .service-top {
    height: 160px !important;
}

body.tablet-device main.tablet-title-standard .service-middle .container.two-col.handover-grid > div:first-child h2,
body.tablet-device main.tablet-title-standard .delivery-copy h2,
body.tablet-device main.tablet-title-standard .about-left-col h2 {
    margin: 0 0 16px !important;
    font-family: 'Noto Sans TC', sans-serif !important;
    font-size: 40px !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    color: #8E959C !important;
}

body.tablet-device main.tablet-title-standard .service-middle .container.two-col.handover-grid > div:first-child h2 > span,
body.tablet-device main.tablet-title-standard .delivery-copy h2 > span,
body.tablet-device main.tablet-title-standard .about-left-col h2 > span {
    font-family: 'Noto Sans TC', sans-serif !important;
    font-size: inherit !important;
    font-weight: 100 !important;
    line-height: inherit !important;
    letter-spacing: inherit !important;
    color: inherit !important;
}

body.tablet-device main.tablet-title-standard .service-middle .container.two-col.handover-grid > div:first-child h2 + p,
body.tablet-device main.tablet-title-standard .about-left-col h2 + p {
    margin-top: 0 !important;
    margin-bottom: 16px !important;
    line-height: 1.9 !important;
}

body.tablet-device main.tablet-title-standard .delivery-copy h2 {
    margin-bottom: 44px !important;
}

body.tablet-device main.tablet-title-standard .service-middle .container.two-col.handover-grid > div:first-child h2 + .steps {
    margin-top: 44px !important;
}
body.tablet-device .project-carousel-overlay {
    background: transparent !important;
    opacity: 1 !important;
}

body.tablet-device .project-carousel-logo {
    opacity: 1 !important;
    transform: none !important;
}

body.tablet-device .project-carousel-card:hover .project-carousel-overlay {
    background: transparent !important;
    opacity: 1 !important;
}

body.tablet-device .project-carousel-card:hover .project-carousel-logo {
    opacity: 1 !important;
    transform: none !important;
}

body.tablet-device .project-carousel-card:hover img {
    transform: none !important;
}
body.tablet-device main.service-page .project-carousel-shell {
    width: min(100%, var(--site-max)) !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
}

body.tablet-device main.service-page .project-carousel-arrow {
    display: none !important;
}

body.tablet-device main.service-page .project-carousel-viewport {
    width: 100% !important;
}

body.tablet-device main.service-page .project-carousel-track {
    gap: clamp(14px, 2vw, 20px) !important;
}

body.tablet-device main.service-page .project-carousel-card {
    flex: 0 0 clamp(220px, 29vw, 300px) !important;
}
/* Desktop equal two-column alignment for register / delivery / repair / service */
@media (min-width: 900px) {
body:not(.tablet-device) main.desktop-equal-columns .service-middle .container.two-col.handover-grid {
    --desktop-equal-gap: clamp(56px, 5vw, 80px);
    display: grid !important;
    width: min(calc(100% - 320px), 1120px) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    column-gap: var(--desktop-equal-gap) !important;
    row-gap: 0 !important;
    align-items: start !important;
    justify-content: center !important;
}

body:not(.tablet-device) main.desktop-equal-columns .service-middle .container.two-col.handover-grid > div {
    min-width: 0 !important;
    width: 100% !important;
    max-width: none !important;
    flex: none !important;
    justify-self: stretch !important;
    box-sizing: border-box !important;
}

body:not(.tablet-device) main.desktop-equal-columns .repair-form,
body:not(.tablet-device) main.desktop-equal-columns .delivery-video,
body:not(.tablet-device) main.desktop-equal-columns .delivery-video-frame {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
}

body:not(.tablet-device) main.desktop-equal-columns .field-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
}

body:not(.tablet-device) main.desktop-equal-columns .delivery-video-frame img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover !important;
}

body:not(.tablet-device) main.desktop-equal-columns .service-middle .container.two-col.handover-grid > div:first-child:nth-last-child(3) {
    grid-column: 1 !important;
    grid-row: 1 !important;
}

body:not(.tablet-device) main.desktop-equal-columns .service-middle .container.two-col.handover-grid > div:nth-child(2):nth-last-child(2),
body:not(.tablet-device) main.desktop-equal-columns .service-middle .container.two-col.handover-grid > div:nth-child(3):last-child {
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: calc(50% - 20px) !important;
}

body:not(.tablet-device) main.desktop-equal-columns .service-middle .container.two-col.handover-grid > div:nth-child(2):nth-last-child(2) {
    justify-self: start !important;
}

body:not(.tablet-device) main.desktop-equal-columns .service-middle .container.two-col.handover-grid > div:nth-child(3):last-child {
    justify-self: end !important;
}
}
/* Desktop equal alignment for about / contact / record */
@media (min-width: 900px) {
body:not(.tablet-device) main.desktop-equal-columns .about-fixed-wrap .about-team-image {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
}

body:not(.tablet-device) main.desktop-equal-columns #record .delivery-layout {
    --desktop-equal-gap: clamp(56px, 5vw, 80px);
    display: grid !important;
    width: min(calc(100% - 320px), 1120px) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    column-gap: var(--desktop-equal-gap) !important;
    row-gap: 0 !important;
    align-items: start !important;
    justify-content: center !important;
}

body:not(.tablet-device) main.desktop-equal-columns #record .delivery-copy,
body:not(.tablet-device) main.desktop-equal-columns #record .delivery-video,
body:not(.tablet-device) main.desktop-equal-columns #record .delivery-video-frame {
    min-width: 0 !important;
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
    justify-self: stretch !important;
}

body:not(.tablet-device) main.desktop-equal-columns #record .delivery-video-frame img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover !important;
}
}
/* Match Record top image ratio to Delivery desktop image */
@media (min-width: 900px) {
body:not(.tablet-device) main.desktop-equal-columns #record .delivery-video-frame {
    aspect-ratio: 16 / 9 !important;
    overflow: hidden !important;
}

body:not(.tablet-device) main.desktop-equal-columns #record .delivery-video-frame img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
}
}
/* Match desktop left-copy spacing to Record page */
@media (min-width: 900px) {
body:not(.tablet-device) main.desktop-equal-columns .service-middle .container.two-col.handover-grid > div:first-child h2,
body:not(.tablet-device) main.desktop-equal-columns .about-left-col h2,
body:not(.tablet-device) main.desktop-equal-columns .delivery-copy h2 {
    margin: 0 0 34px !important;
}

body:not(.tablet-device) main.desktop-equal-columns .service-middle .container.two-col.handover-grid > div:first-child h2 + p,
body:not(.tablet-device) main.desktop-equal-columns .about-left-col h2 + p {
    display: none !important;
    margin: 0 !important;
}

body:not(.tablet-device) main.desktop-equal-columns .service-middle .container.two-col.handover-grid > div:first-child p,
body:not(.tablet-device) main.desktop-equal-columns .about-left-col p,
body:not(.tablet-device) main.desktop-equal-columns .delivery-copy p {
    margin: 0 0 16px !important;
    line-height: 2 !important;
}

body:not(.tablet-device) main.desktop-equal-columns .delivery-copy .steps {
    margin-top: 0 !important;
    line-height: 2 !important;
}
}
/* Remove paragraph gaps in selected desktop left-copy blocks */
@media (min-width: 900px) {
body:not(.tablet-device) main.tight-left-copy .service-middle .container.two-col.handover-grid > div:first-child p {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

body:not(.tablet-device) main.tight-left-copy .service-middle .container.two-col.handover-grid > div:first-child p:empty {
    display: none !important;
}
}
/* Top-align right column content with the left heading on desktop pages */
@media (min-width: 900px) {
body:not(.tablet-device) main.desktop-equal-columns .service-middle .container.two-col.handover-grid > div:nth-child(n+2),
body:not(.tablet-device) main.desktop-equal-columns .about-right-col,
body:not(.tablet-device) main.desktop-equal-columns #record .delivery-video {
    align-self: start !important;
    justify-self: stretch !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body:not(.tablet-device) main.desktop-equal-columns .repair-form,
body:not(.tablet-device) main.desktop-equal-columns .delivery-video,
body:not(.tablet-device) main.desktop-equal-columns .delivery-video-frame,
body:not(.tablet-device) main.desktop-equal-columns .about-team-image {
    margin-top: 0 !important;
}
}
/* Match non-project desktop/tablet subpage bottom spacing to Repair */
@media (min-width: 768px) {
body main.service-page:not(.project-detail-page):not(.record-page) .service-middle,
body main.record-page #record {
    padding-bottom: 40px !important;
}

body main.service-page:not(.project-detail-page) .service-bottom {
    height: 85px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

body main.service-page:not(.project-detail-page) .project-carousel-section {
    padding-top: 80px !important;
}

body main.service-page:not(.project-detail-page) #recordGalleryAnchor.record-gallery-section {
    padding-top: 80px !important;
}
}
/* Match Service and Delivery tablet vertical spacing */
@media (min-width: 768px) and (max-width: 1366px) {
body.tablet-device main.service-detail-page .service-middle .container.two-col.handover-grid,
body.tablet-device main.delivery-detail-page .service-middle .container.two-col.handover-grid {
    padding-bottom: 18px !important;
}

body.tablet-device main.service-detail-page .delivery-links,
body.tablet-device main.delivery-detail-page .delivery-video .delivery-links {
    margin-top: 18px !important;
    padding-top: 0 !important;
    padding-bottom: 18px !important;
}
}
/* Remove About page extra section min-height before carousel */
@media (min-width: 768px) {
body main.about-detail-page .about-page-section {
    min-height: 0 !important;
}
}
/* Desktop-only split service top background */
.service-top-bg {
    display: none;
}

body:not(.tablet-device) main.service-page .service-top {
    background: none !important;
    background-color: #F1EFEC !important;
    overflow: hidden !important;
}

body:not(.tablet-device) main.service-page .service-top-bg {
    position: absolute;
    inset: 0;
    display: flex !important;
    pointer-events: none;
    z-index: 1;
}

body:not(.tablet-device) main.service-page .service-top-bg-left,
body:not(.tablet-device) main.service-page .service-top-bg-right {
    height: 100%;
    background-repeat: no-repeat;
}

body:not(.tablet-device) main.service-page .service-top-bg-left {
    flex: 0 0 75%;
    background-image: url("images/bg-top-Left-01.png");
    background-position: left -2px;
    background-size: contain;
}

body:not(.tablet-device) main.service-page .service-top-bg-right {
    flex: 0 0 25%;
    background-image: url("images/bg-top-Right-01.png");
    background-position: right top;
    background-size: contain;
}

body:not(.tablet-device) main.service-page .service-top .hero-desktop-top {
    position: relative;
    z-index: 2;
}

body.tablet-device main.service-page .service-top-bg {
    display: none !important;
}
/* Match Record right image to About size on desktop and tablet */
@media (min-width: 768px) {
body main.record-page #record .delivery-video {
    width: 100% !important;
    max-width: 570px !important;
    justify-self: center !important;
    display: flex !important;
    justify-content: center !important;
}

body main.record-page #record .delivery-video-frame {
    width: 85% !important;
    max-width: 100% !important;
    aspect-ratio: 536 / 357 !important;
    overflow: hidden !important;
    background: transparent !important;
    margin: 10px auto 0 !important;
}

body main.record-page #record .delivery-video-frame img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    margin: 0 !important;
    object-fit: cover !important;
}
}

@media (min-width: 768px) and (max-width: 1024px) {
body main.record-page #record .delivery-video,
body main.record-page #record .delivery-video-frame {
    max-width: 640px !important;
}

body main.record-page #record .delivery-video-frame {
    width: min(100%, 640px) !important;
}
}
/* Force About and Record right images to identical display size */
@media (min-width: 768px) {
body main.about-detail-page .about-right-col,
body main.record-page #record .delivery-video {
    width: 100% !important;
    max-width: 570px !important;
    justify-self: center !important;
    display: flex !important;
    justify-content: center !important;
}

body main.about-detail-page .about-team-image,
body main.record-page #record .delivery-video-frame {
    width: 85% !important;
    max-width: 100% !important;
    aspect-ratio: 536 / 357 !important;
    height: auto !important;
    margin: 10px auto 0 !important;
    box-sizing: border-box !important;
}

body main.about-detail-page .about-team-image {
    object-fit: cover !important;
}

body main.record-page #record .delivery-video-frame {
    overflow: hidden !important;
    background: transparent !important;
}

body main.record-page #record .delivery-video-frame img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    margin: 0 !important;
    object-fit: cover !important;
}
}

@media (min-width: 768px) and (max-width: 1024px) {
body main.about-detail-page .about-right-col,
body main.record-page #record .delivery-video,
body main.record-page #record .delivery-video-frame {
    max-width: 640px !important;
}

body main.about-detail-page .about-team-image,
body main.record-page #record .delivery-video-frame {
    width: min(100%, 640px) !important;
}
}
/* Crop About and Record images through identical frames */
@media (min-width: 768px) {
body main.about-detail-page .about-team-frame,
body main.record-page #record .delivery-video-frame {
    width: 85% !important;
    max-width: 100% !important;
    aspect-ratio: 536 / 357 !important;
    height: auto !important;
    margin: 10px auto 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    background: transparent !important;
}

body main.about-detail-page .about-team-frame .about-team-image,
body main.record-page #record .delivery-video-frame img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    display: block !important;
    margin: 0 !important;
    object-fit: cover !important;
}
}

@media (min-width: 768px) and (max-width: 1024px) {
body main.about-detail-page .about-team-frame,
body main.record-page #record .delivery-video-frame {
    width: min(100%, 640px) !important;
}
}
/* Tablet select V arrows for register and repair */
body.tablet-device main.service-page .repair-form select[id$="ddlProjectName"],
body.tablet-device main.service-page .repair-form select[id$="ddlCommunity"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    padding-right: 30px !important;
    background-color: transparent !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%23535B56' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 8px center !important;
    background-size: 14px 8px !important;
}
/* Privacy tablet title spacing matches About */
@media (min-width: 768px) and (max-width: 1366px) {
body.tablet-device main.privacy-title-spacing .about-left-col > .about-space,
body.tablet-device main.privacy-title-spacing .about-left-col > .about-empty {
    display: none !important;
    margin: 0 !important;
}

body.tablet-device main.privacy-title-spacing .about-left-col > .about-space-small {
    display: block !important;
    font-size: 8px !important;
    line-height: 1 !important;
    margin: 0 !important;
}

body.tablet-device main.privacy-title-spacing .about-left-col h2 {
    margin-bottom: 0 !important;
}

body.tablet-device main.privacy-title-spacing .about-fixed-wrap {
    gap: 12px !important;
}

body.tablet-device main.privacy-title-spacing .about-right-col > p:first-child {
    margin-top: 0 !important;
}
}/* Match Record upper layout to About upper layout */
@media (min-width: 900px) {
body:not(.tablet-device) main.record-page #record .delivery-layout {
    box-sizing: border-box !important;
    width: min(calc(100% - clamp(80px, 8vw, 220px)), 1280px) !important;
    max-width: 1280px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
    gap: 80px !important;
    padding-top: 0 !important;
}

body:not(.tablet-device) main.record-page #record .delivery-copy,
body:not(.tablet-device) main.record-page #record .delivery-video {
    min-width: 0 !important;
    flex: 0 0 370px !important;
    max-width: 370px !important;
    width: auto !important;
    justify-self: auto !important;
}

body:not(.tablet-device) main.record-page #record .delivery-video {
    flex-basis: 570px !important;
    max-width: 570px !important;
    display: flex !important;
    justify-content: center !important;
}

body:not(.tablet-device) main.record-page #record .delivery-video-frame {
    width: 85% !important;
    max-width: 100% !important;
    aspect-ratio: 536 / 357 !important;
    height: auto !important;
    margin: 10px auto 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    background: transparent !important;
}

body:not(.tablet-device) main.record-page #record .delivery-video-frame img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    display: block !important;
    margin: 0 !important;
    object-fit: cover !important;
}
}

@media (min-width: 1025px) and (max-width: 1180px) {
body:not(.tablet-device) main.record-page #record .delivery-layout {
    display: grid !important;
    grid-template-columns: minmax(240px, 0.78fr) minmax(380px, 1.22fr) !important;
    width: min(calc(100% - 72px), 1280px) !important;
    gap: 42px !important;
}

body:not(.tablet-device) main.record-page #record .delivery-copy,
body:not(.tablet-device) main.record-page #record .delivery-video {
    flex: none !important;
    max-width: none !important;
    width: auto !important;
}

body:not(.tablet-device) main.record-page #record .delivery-copy {
    max-width: 340px !important;
}
}

@media (min-width: 768px) and (max-width: 1024px) {
body.tablet-device main.record-page #record .delivery-layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: min(calc(100% - 56px), 920px) !important;
    gap: 22px !important;
}

body.tablet-device main.record-page #record .delivery-copy,
body.tablet-device main.record-page #record .delivery-video {
    flex: none !important;
    max-width: none !important;
    width: 100% !important;
}

body.tablet-device main.record-page #record .delivery-video {
    display: flex !important;
    justify-content: center !important;
}

body.tablet-device main.record-page #record .delivery-video-frame {
    width: min(100%, 640px) !important;
    max-width: 640px !important;
}
}/* Record pagination matches Record2 */
body main.record-page .record-pagination {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 24px !important;
    margin: 48px 0 !important;
    font-family: 'Noto Sans TC' !important;
}

body main.record-page .record-page-btn {
    color: #535B56 !important;
    text-decoration: none !important;
    font-size: 18px !important;
    font-family: 'Noto Sans TC' !important;
    transition: .2s !important;
}

body main.record-page .record-page-btn:hover {
    color: #535B56 !important;
}

body main.record-page .record-page-info {
    color: #535B56 !important;
    font-size: 16px !important;
    letter-spacing: 1px !important;
    font-family: 'Noto Sans TC' !important;
}
/* Tablet spacing for delivery / repair / service matches Register */
@media (min-width: 768px) and (max-width: 1366px) {
body.tablet-device main.delivery-detail-page .service-middle,
body.tablet-device main.repair-detail-page .service-middle,
body.tablet-device main.service-detail-page .service-middle {
    padding-bottom: 40px !important;
}

body.tablet-device main.delivery-detail-page .service-middle .container.two-col.handover-grid,
body.tablet-device main.repair-detail-page .service-middle .container.two-col.handover-grid,
body.tablet-device main.service-detail-page .service-middle .container.two-col.handover-grid {
    padding-bottom: 0 !important;
}

body.tablet-device main.delivery-detail-page .service-bottom,
body.tablet-device main.repair-detail-page .service-bottom,
body.tablet-device main.service-detail-page .service-bottom {
    height: 85px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

body.tablet-device main.delivery-detail-page .project-carousel-section,
body.tablet-device main.repair-detail-page .project-carousel-section,
body.tablet-device main.service-detail-page .project-carousel-section {
    padding-top: 80px !important;
}

body.tablet-device main.delivery-detail-page .delivery-links,
body.tablet-device main.service-detail-page .delivery-links {
    padding-bottom: 0 !important;
}

body.tablet-device main.delivery-detail-page .delivery-video .delivery-links {
    margin-top: 18px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
}