﻿:root {
    --bg: #fffdf5;
    --paper: #fcfbee;
    --gold: #bfa478;
    --gold-dark: #ae8e5a;
    --brown: #746044;
    --text: #111;
    --muted: #4d4c4c;
    --blue: #235d77;
    --line: rgba(191,164,120,.62);
    --soft: rgba(191,164,120,.10);
    --radius: 16px;
    --shadow: 0 18px 45px rgba(77,63,37,.10);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--text);
    font-family: 'Noto Serif TC','Times New Roman',serif;
    background-color: var(--bg);
    background-image: radial-gradient(rgba(191,164,120,.12) 1px, transparent 1px), linear-gradient(90deg,var(--bg),var(--paper));
    background-size: 100px 100px, auto;
}

a {
    color: inherit;
    text-decoration: none
}

img {
    display: block;
    max-width: 100%
}

button, input {
    font: inherit
}

.container {
    width: min(1180px,calc(100% - 40px));
    margin-inline: auto
}

.narrow {
    width: min(780px,calc(100% - 40px));
    margin-inline: auto
}

.site-header {
    height: 77px;
    background: rgba(174,142,90,.92);
    position: sticky;
    top: 0;
    z-index: 10;
    color: white;
    backdrop-filter: blur(6px)
}

.header-inner {
    width: min(1180px,calc(100% - 40px));
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px
}

.brand {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: .08em;
    white-space: nowrap
}

.nav {
    display: flex;
    gap: 28px;
    font-size: 14px;
    align-items: center
}

    .nav a {
        opacity: .95
    }

        .nav a:hover {
            opacity: 1;
            text-decoration: underline;
            text-underline-offset: 4px
        }

.hero {
    position: relative;
    min-height: 660px;
    padding-top: 28px;
    overflow: hidden
}

.hero-image {
    position: absolute;
    left: 0;
    top: 73px;
    width: 63vw;
    height: 510px;
    background: linear-gradient(90deg,rgba(255,253,245,0) 70%,var(--paper)),url('https://www.figma.com/api/mcp/asset/9ad65124-1061-4100-8d50-fe76d21cc71b') center/cover no-repeat;
    z-index: 0
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 473px;
    gap: 70px
}

.breadcrumb {
    grid-column: 1/-1;
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 16px
}

.hero-copy {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.tags {
    display: flex;
    align-items: flex-start
}

.tag {
    font-size: 16px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 16px;
    white-space: nowrap;
    border: 1px solid var(--gold-dark)
}

.tag-primary {
    z-index: 1;
    color: white;
    background: var(--gold)
}

.tag-outline {
    color: var(--gold-dark);
    border-left: 0;
    border-radius: 0 16px 16px 0;
    margin-left: -15px;
    padding-left: 24px;
    background: var(--bg)
}

h1 {
    padding: 8px 0 14px;
    font-weight: 700;
}

.lead {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px
}

    .lead p {
        margin: 0 0 14px
    }

        .lead p:last-child {
            margin-bottom: 0
        }

.course-meta {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 22px 0;
    font-weight: 600
}

    .course-meta small {
        display: block;
        font-size: 14px;
        margin-bottom: 10px
    }

    .course-meta strong {
        font-size: 20px;
        font-weight: 600;
        line-height: 1.25
    }

.share-row {
    display: flex;
    gap: 17px
}

    .share-row a {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 1px solid var(--line);
        display: grid;
        place-items: center;
        font-size: 12px;
        font-weight: 700;
        color: var(--gold-dark);
        background: white
    }

.action-row {
    display: flex;
    gap: 20px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 31px;
    padding: 10px 10px;
    font-weight: 600
}

    .btn.primary {
        background: var(--gold);
        color: #fffefe
    }

    .btn.ghost {
        border: 2px solid var(--gold);
        color: var(--gold);
        background: transparent
    }

.phone-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px
}

    .phone-box span {
        font-size: 14px;
        font-weight: 700
    }

    .phone-box a {
        display: inline-flex;
        gap: 10px;
        align-items: center;
        justify-content: center;
        width: 190px;
        border-radius: 31px;
        background: #ece6d7;
        color: var(--gold-dark);
        font-weight: 700;
        padding: 10px 10px
    }

        .phone-box a::before {
            content: '☎';
            font-size: 22px
        }

.section {
    margin: 50px 0;
    padding :20px 20px;
}
.learn-section, .target-section, .content-section, .intro-section {
    border-radius: 10px;
    box-shadow: 1px 4px 2px 0px rgba(191, 164, 120, .62);
}

    .section h2 {
        font-size: 24px;
        line-height: 1.4;
        text-align: center;
        margin: 0 0 20px;
        font-weight: 700
    }

.subtitle {
    font-size: 18px;
    color: var(--gold-dark);
    font-weight: 700;
    text-align: center;
    margin: 0 0 24px
}

.text-block {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 34px
}

    .text-block p {
        margin: 0 0 16px
    }

.practice-visual {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 600px
}

    .practice-visual img {
        width: 100%;
        height: 600px;
        object-fit: cover;
        object-position: center top
    }

.visual-title {
    position: absolute;
    left: 26px;
    bottom: 138px;
    color: var(--blue);
    font-weight: 700;
    font-size: 32px;
    line-height: 1.25;
    letter-spacing: -.04em
}

.visual-card {
    position: absolute;
    width: 286px;
    height: 286px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px;
    color: white;
    text-shadow: 0 0 8px rgba(0,0,0,.7)
}

    .visual-card h3 {
        font-size: 24px;
        margin: 0 0 8px
    }

    .visual-card p {
        font-size: 16px;
        line-height: 1.8;
        margin: 0
    }

.visual-card-left {
    left: 14px;
    top: 96px;
    background: rgba(191,164,120,.62)
}

.visual-card-right {
    right: 0;
    bottom: 12px;
    background: rgba(35,93,119,.62)
}

.center-copy {
    text-align: center;
    font-size: 16px;
    line-height: 1.85;
    margin: 0 auto 46px;
    max-width: 650px
}

.three-cards {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 48px 0
}

    .three-cards article {
        width: 180px;
        text-align: center
    }

    .three-cards img {
        width: 180px;
        height: 180px;
        border-radius: 50%;
        object-fit: cover
    }

    .three-cards h3 {
        font-size: 20px;
        line-height: 1.5;
        margin: 10px 0
    }

        .three-cards h3 span {
            display: block;
            color: var(--gold-dark);
            font-size: 32px
        }

    .three-cards p {
        font-size: 16px;
        line-height: 1.85;
        margin: 0;
        text-align: left
    }

.note {
    text-align: center;
    color: var(--muted);
    margin: 54px 0 34px
}

.collapse-btn {
    display: flex;
    margin: 0 auto;
    padding: 6px 20px;
    border-radius: 41px;
    border: 1px solid var(--gold-dark);
    color: var(--gold-dark);
    background: transparent;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer
}

.target-list {
    display: grid;
    gap: 0;
    margin-top: 34px
}

    .target-list article {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 10px 30px;
        border-radius: 16px
    }

        .target-list article:nth-child(even) {
            background: var(--soft);
            margin-left: 80px
        }

    .target-list img {
        width: 110px;
        height: 110px;
        border-radius: 50%;
        object-fit: cover;
        flex: none
    }

    .target-list span {
        font-weight: 700;
        color: var(--gold-dark);
        text-decoration: underline
    }

    .target-list h3 {
        font-size: 20px;
        margin: 6px 0;
        font-weight: 700
    }

    .target-list p {
        font-size: 16px;
        line-height: 1.85;
        margin: 0
    }

.learn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px 20px;
    margin: 42px 0
}

    .learn-grid article {
        display: flex;
        gap: 17px;
        padding: 20px
    }

        .learn-grid article:last-child {
            grid-column: 1/-1;
            width: 50%;
            margin: auto
        }

    .learn-grid span {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: var(--gold);
        color: white;
        display: grid;
        place-items: center;
        font-weight: 700;
        font-size: 22px;
        flex: none
    }

    .learn-grid h3 {
        font-size: 20px;
        margin: 0 0 6px
    }

    .learn-grid p {
        font-size: 16px;
        line-height: 1.85;
        margin: 0
    }

.video-area {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 24px;
    align-items: center;
    margin: 38px 0
}

.video-box {
    height: 269px;
    background: rgba(191,164,120,.82);
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: white;
    font-size: 40px
}

.video-list {
    display: grid
}

    .video-list a {
        padding: 15px 0;
        border-bottom: 1px solid var(--line);
        line-height: 1.5
    }

    .video-list strong {
        color: var(--gold-dark)
    }

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px
}

    .story-grid article {
        border: 1px solid var(--gold);
        border-radius: 16px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 34px;
        min-height: 199px
    }

    .story-grid p {
        font-size: 16px;
        line-height: 2;
        margin: 0
    }

    .story-grid footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 16px
    }

        .story-grid footer a {
            color: var(--gold-dark);
            font-weight: 900
        }

.place-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 34px
}

    .place-gallery img {
        object-fit: cover;
        border-radius: 16px;
    }

.signup-section {
    padding-top: 12px
}

.form-container {
    width: min(780px,calc(100% - 40px));
    text-align: center
}

form {
    display: grid;
    justify-items: center
}

label {
    display: grid;
    grid-template-columns: 86px 1fr;
    width: 430px;
    align-items: center;
    border: 1px solid rgba(191,164,120,.8);
    border-radius: 10px;
    background: white;
    overflow: hidden
}
label input[type="*"] {


    height: 53px;
}

    label textarea {
        height: 250px;
    }

    label span {
        color: var(--gold-dark);
        font-size: 20px;
        text-align: right
    }

input {
    height: 100%;
    border: 0;
    outline: 0;
    padding: 0 12px;
    background: white;
    font-size: 20px
}

form p {
    color: #ff653e;
    font-size: 14px;
    font-weight: 600;
    margin: 0
}

form button {
    width: min(778px,100%);
    border: 0;
    background: var(--gold);
    color: #fffefe;
    border-radius: 31px;
    font-size: 24px;
    font-weight: 600;
    padding: 10px 40px;
    cursor: pointer
}


    .temples h2 {
        text-align: center;
        font-weight: 700;
        font-size: 24px;
        color: var(--gold-dark);
        margin: 0 0 36px
    }

.temple-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line)
}

    .temple-grid div {
        text-align: center;
        color: var(--gold-dark);
        display: grid;
        gap: 7px;
        border-right: 1px solid var(--line);
        min-height: 87px;
        align-content: center
    }

        .temple-grid div:last-child {
            border-right: 0
        }

    .temple-grid span {
        font-size: 18px
    }

    .temple-grid strong {
        font-size: 24px;
        font-weight: 900;
        white-space: nowrap
    }

@media(max-width:900px) {
    .site-header {
        height: 60px
    }

    .header-inner {
        justify-content: center
    }

    .brand {
        font-size: 22px
    }

    .nav {
        display: none
    }

    .hero {
        min-height: auto;
        padding: 196px 0 40px
    }

    .hero-image {
        top: 0;
        width: 100%;
        height: 221px;
        background-image: linear-gradient(90deg,rgba(255,253,245,0) 70%,var(--paper)),url('https://www.figma.com/api/mcp/asset/751be95e-d33c-40ce-abf6-0a1e98090ed7')
    }

    .hero-grid {
        display: block;
        width: min(393px,100%);
        padding: 0 20px
    }

    .breadcrumb {
        display: none
    }

    .hero-copy {
        gap: 20px
    }

    .tags {
        display: grid;
        gap: 10px
    }

    .tag {
        width: max-content;
        border-radius: 16px
    }

    .tag-outline {
        margin-left: 0;
        border: 1px solid var(--gold-dark);
        padding-left: 20px
    }

    h1 {
        font-size: 28px;
        line-height: 1.5
    }

    .lead {
        line-height: 1.5
    }

    .course-meta {
        grid-template-columns: 100px 1fr
    }

    .action-row {
        gap: 17px
    }

    .btn {
        font-size: 20px;
        padding: 10px 35px
    }

    .phone-box a {
        width: 350px;
        max-width: 100%;
        font-size: 28px
    }

    .section {
        padding: 50px 0
    }

    .narrow, .container {
        width: min(393px,100%);
        padding-inline: 20px
    }

    .intro {
        padding-top: 20px
    }

    .text-block {
        line-height: 1.85
    }

    .practice-visual {
        min-height: auto;
        margin-inline: -20px;
        padding-top: 430px;
        overflow: visible
    }

        .practice-visual img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 345px;
            object-fit: cover;
            object-position: center top
        }

    .visual-title {
        position: absolute;
        top: -46px;
        left: 20px;
        right: 20px;
        text-align: center;
        font-size: 32px;
        color: var(--blue);
        bottom: auto
    }

    .visual-card {
        position: static;
        width: auto;
        height: auto;
        border-radius: 0;
        background: transparent !important;
        color: var(--text);
        text-shadow: none;
        padding: 0 22px;
        margin: 0 0 20px
    }

        .visual-card h3 {
            font-size: 18px;
            color: var(--blue)
        }

        .visual-card p {
            font-size: 16px
        }

    .three-cards {
        flex-direction: column;
        align-items: center;
        gap: 30px
    }

    .center-copy {
        width: 336px
    }

    .target-list article, .target-list article:nth-child(even) {
        margin: 0 -20px;
        border-radius: 0;
        padding: 10px 30px
    }

    .target-list article {
        align-items: center
    }

    .target-list img {
        width: 110px;
        height: 110px
    }

    .learn-grid {
        display: block
    }

        .learn-grid article, .learn-grid article:last-child {
            width: 100%;
            margin: 0;
            padding: 20px 0
        }

    .video-area {
        display: block
    }

    .video-box {
        height: 198px;
        margin-bottom: 26px
    }

    .story-grid {
        grid-template-columns: 1fr
    }

        .story-grid article {
            min-height: auto
        }

    .place-gallery {
        grid-template-columns: 1fr
    }

    .form-container {
        padding-inline: 20px
    }

    label {
        width: 350px;
        grid-template-columns: 88px 1fr
    }

    .temple-grid {
        grid-template-columns: 1fr 1fr;
        border-right: 0
    }

        .temple-grid div {
            border-bottom: 0
        }

        .temple-grid strong {
            font-size: 24px
        }

    .share-row a {
        width: 47px;
        height: 47px
    }

    .place-section .center-copy {
        width: auto
    }

    .hero-copy {
        width: 100%
    }
}

.section.is-collapsed .article {
    display: none
}
