/* ===============================
   天生名毛 寵物攝影工作室
   style.css
================================ */

/* ---------- 基本設定 ---------- */

:root {
    --pink: #f6a8bd;
    --pink-dark: #e8789b;
    --pink-light: #ffe3ec;

    --green: #bdda78;
    --green-dark: #8fb947;
    --green-light: #eef8d8;

    --yellow: #ffd66b;
    --yellow-dark: #d89b1d;
    --yellow-light: #fff3c8;

    --blue: #7795d8;
    --blue-dark: #4f70b5;
    --blue-light: #e6eeff;

    --teal: #68c9bd;
    --teal-dark: #38a89a;
    --teal-light: #dcf7f4;

    --cream: #fffaf4;
    --white: #ffffff;
    --gray: #777777;
    --gray-light: #f5f5f5;
    --dark: #3f3f3f;

    --shadow: 0 12px 32px rgba(80, 60, 40, 0.08);
    --shadow-soft: 0 8px 20px rgba(80, 60, 40, 0.06);

    --radius-lg: 36px;
    --radius-md: 24px;
    --radius-sm: 16px;

    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
    color: var(--dark);
    background: var(--cream);
    line-height: 1.8;
}

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

a {
    color: inherit;
}

ul {
    margin: 0;
}

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

section {
    position: relative;
}

::selection {
    background: var(--pink-light);
    color: var(--pink-dark);
}


/* ---------- 按鈕 ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.03em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.btn-primary {
    color: #fff;
    background: var(--pink);
}

.btn-primary:hover {
    background: var(--pink-dark);
}

.btn-secondary {
    color: var(--blue-dark);
    background: #fff;
    border: 2px solid var(--blue);
}

.btn-secondary:hover {
    background: var(--blue-light);
}

.btn-yellow {
    color: #735000;
    background: var(--yellow);
}

.btn-yellow:hover {
    background: #ffc83d;
}


/* ---------- Header ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(246, 168, 189, 0.22);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 96px;
}

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

.logo img {
    width: 220px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 15px;
    font-weight: 700;
}

.site-nav a {
    position: relative;
    text-decoration: none;
    color: var(--dark);
    white-space: nowrap;
}

.site-nav a:not(.nav-button)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 0;
    height: 4px;
    border-radius: 999px;
    background: var(--pink);
    transform: translateX(-50%);
    transition: width 0.25s ease;
}

.site-nav a:hover::after {
    width: 100%;
}

.nav-button {
    color: #fff !important;
    background: var(--pink);
    padding: 9px 20px;
    border-radius: 999px;
    box-shadow: 0 6px 14px rgba(246, 168, 189, 0.28);
}

.nav-button:hover {
    background: var(--pink-dark);
}


/* ---------- 漢堡選單 ---------- */

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--pink-light);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 3px;
    margin: 5px auto;
    border-radius: 999px;
    background: var(--pink-dark);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* ---------- Hero ---------- */

.hero {
    overflow: hidden;
    padding: 78px 0 92px;
    background:
        radial-gradient(circle at 8% 15%, rgba(255, 214, 107, 0.22), transparent 22%),
        radial-gradient(circle at 90% 5%, rgba(104, 201, 189, 0.18), transparent 24%),
        linear-gradient(180deg, #fffdf9 0%, var(--cream) 100%);
}

.hero::before {
    content: "🐾";
    position: absolute;
    left: 5%;
    bottom: 50px;
    font-size: 56px;
    opacity: 0.08;
    transform: rotate(-16deg);
}

.hero::after {
    content: "★";
    position: absolute;
    right: 7%;
    top: 120px;
    font-size: 42px;
    color: var(--yellow);
    opacity: 0.8;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: 999px;
    color: var(--pink-dark);
    background: var(--pink-light);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.section-label::before {
    content: "✦";
    color: var(--yellow-dark);
}

.hero h1 {
    margin: 22px 0 18px;
    color: var(--dark);
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.hero h1::after {
    content: "";
    display: block;
    width: 150px;
    height: 12px;
    margin-top: 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pink), var(--yellow), var(--green));
}

.hero-subtitle {
    margin: 0 0 18px;
    color: #5e5e5e;
    font-size: 18px;
}

.hero-tags {
    display: inline-block;
    margin: 0 0 28px;
    padding: 8px 18px;
    border-radius: 999px;
    color: var(--blue-dark);
    background: #fff;
    font-size: 15px;
    font-weight: 800;
    box-shadow: var(--shadow-soft);
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    min-height: 520px;
}

.hero-visual {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* 外層：負責放貼紙，不裁切 */
.hero-photo-wrap {
    position: relative;
    width: min(100%, 560px);
    aspect-ratio: 1 / 1;
}

/* 內層：真正的圓形相框，負責裁切照片 */
.hero-photo-frame {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #eaf6f7;
    border: 10px solid #fff;
    border-radius: 42% 58% 50% 50% / 48% 42% 58% 52%;
    box-shadow: var(--shadow);
}

/* 有背景的狗狗照片 */
.hero-dog-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
}

/* 貼紙與泡泡 */
.bubble,
.sticker {
    position: absolute;
    z-index: 5;
    box-shadow: var(--shadow-soft);
}

.bubble-green {
    top: 38px;
    right: -8px;
    width: 116px;
    height: 116px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--teal);
    border: 5px solid #fff;
    border-radius: 50%;
    font-weight: 900;
    line-height: 1.45;
    text-align: center;
    transform: rotate(8deg);
}

.sticker {
    padding: 10px 18px;
    border: 4px solid #fff;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.sticker-pink {
    right: 22px;
    bottom: 90px;
    color: #fff;
    background: var(--pink);
    transform: rotate(-8deg);
}

.sticker-yellow {
    left: -28px;
    top: 108px;
    color: #7a5600;
    background: var(--yellow);
    transform: rotate(-10deg);
}

.bubble,
.sticker {
    position: absolute;
    z-index: 5;
    box-shadow: var(--shadow-soft);
}

.bubble-green {
    top: 42px;
    right: 0;
    width: 116px;
    height: 116px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--teal);
    border: 5px solid #fff;
    border-radius: 50%;
    font-weight: 900;
    line-height: 1.45;
    text-align: center;
    transform: rotate(8deg);
}

.sticker {
    padding: 10px 18px;
    border: 4px solid #fff;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.sticker-pink {
    right: 36px;
    bottom: 92px;
    color: #fff;
    background: var(--pink);
    transform: rotate(-8deg);
}

.sticker-yellow {
    left: 12px;
    top: 92px;
    color: #7a5600;
    background: var(--yellow);
    transform: rotate(-10deg);
}


/* ---------- 品牌簡介 ---------- */

.intro {
    padding: 80px 0;
}

.intro-inner {
    display: flex;
    justify-content: center;
}

.intro-text {
    max-width: 860px;
    padding: 52px;
    text-align: center;
    background: #fff;
    border: 3px dashed rgba(246, 168, 189, 0.45);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.intro h2 {
    margin: 20px 0 18px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.35;
}

.intro p {
    margin: 10px auto;
    max-width: 680px;
    color: #666;
    font-size: 17px;
}


/* ---------- 通用標題 ---------- */

.section-heading {
    margin-bottom: 40px;
    text-align: center;
}

.section-heading h2 {
    margin: 16px 0 8px;
    color: var(--dark);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.35;
    font-weight: 900;
}

.section-heading p {
    margin: 0 auto;
    max-width: 680px;
    color: #707070;
    font-size: 17px;
}


/* ---------- 拍攝風格 ---------- */

.features {
    padding: 90px 0;
    background: #fff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.feature-card {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    padding: 34px 28px;
    text-align: center;
    background: var(--cream);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.feature-card:nth-child(1) {
    background: linear-gradient(180deg, #fff 0%, var(--pink-light) 100%);
}

.feature-card:nth-child(2) {
    background: linear-gradient(180deg, #fff 0%, var(--green-light) 100%);
}

.feature-card:nth-child(3) {
    background: linear-gradient(180deg, #fff 0%, var(--blue-light) 100%);
}

.feature-card::after {
    content: "🐾";
    position: absolute;
    right: 18px;
    bottom: 8px;
    font-size: 54px;
    opacity: 0.08;
    transform: rotate(-14deg);
}

.feature-icon {
    display: grid;
    place-items: center;
    width: 118px;
    height: 118px;
    margin: 0 auto 24px;
    border-radius: 50%;
    box-shadow: none;
}

.feature-icon img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.feature-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 900;
}

.feature-card p {
    margin: 0;
    color: #666;
}


/* ---------- 方案 ---------- */

.plans {
    padding: 92px 0;
    background:
        radial-gradient(circle at 12% 8%, rgba(246, 168, 189, 0.18), transparent 20%),
        radial-gradient(circle at 88% 20%, rgba(255, 214, 107, 0.2), transparent 22%),
        var(--cream);
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.plan-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    background: #fff;
    border: 4px solid var(--pink-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.plan-card::before {
    content: "";
    position: absolute;
    right: -44px;
    top: -44px;
    width: 130px;
    height: 130px;
    background: rgba(246, 168, 189, 0.22);
    border-radius: 50%;
}

.plan-card-featured {
    border-color: var(--yellow);
    background: linear-gradient(180deg, #ffffff 0%, #fff9e8 100%);
}

.plan-card-featured::before {
    background: rgba(255, 214, 107, 0.35);
}

.plan-tag {
    position: relative;
    z-index: 2;
    display: inline-flex;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
}

.tag-pink {
    color: #fff;
    background: var(--pink);
}

.tag-yellow {
    color: #7a5400;
    background: var(--yellow);
}

.plan-card h3 {
    position: relative;
    z-index: 2;
    margin: 18px 0 12px;
    color: var(--dark);
    font-size: 24px;
    line-height: 1.45;
    font-weight: 900;
    text-align: center;
}

.plan-description {
    position: relative;
    z-index: 2;
    margin: 0 0 18px;
    color: #666;
}

.plan-price-box {
    position: relative;
    z-index: 2;
    margin: 18px 0 24px;
    padding: 18px 22px;
    background: #f7f7f7;
    border-radius: 22px;
}

.price-label {
    display: inline-block;
    margin-bottom: 2px;
    color: #555;
    font-size: 15px;
    font-weight: 800;
}

.main-price {
    color: var(--pink-dark);
    font-size: 42px;
    line-height: 1.1;
    font-weight: 900;
}

.plan-card-featured .main-price {
    color: var(--yellow-dark);
}

.weekday-price {
    margin: 8px 0 0;
    color: var(--dark);
    font-size: 16px;
    font-weight: 800;
}

.weekday-discount {
    margin: 2px 0 0;
    color: var(--teal-dark);
    font-size: 14px;
    font-weight: 700;
}

.plan-list {
    position: relative;
    z-index: 2;
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.plan-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 9px;
    color: #5e5e5e;
}

.plan-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--teal);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 900;
}

.plan-list li.gift-item {
    color: var(--pink-dark);
    font-weight: 800;
}

.plan-list li.gift-item::before {
    content: "🎁";
    background: var(--pink-light);
    color: var(--pink-dark);
    font-size: 12px;
}

.plan-list .list-note,
.detail-info .list-note {
    display: block;
    margin-top: 2px;
    color: #888;
    font-size: 14px;
    font-weight: 500;
}

.plan-featured-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 28px;
    align-items: center;
}

.plan-image {
    position: relative;
    padding: 12px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transform: rotate(2deg);
}

.plan-image::before {
    content: "COVER STAR";
    position: absolute;
    left: 50%;
    top: -14px;
    padding: 4px 14px;
    color: #fff;
    background: var(--pink);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    transform: translateX(-50%) rotate(-3deg);
    white-space: nowrap;
}

.plan-image img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 18px;
}

.plan-quick-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: -10px 0 38px;
}

.plan-quick-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 9px 20px;
    color: var(--dark);
    background: #fff;
    border: 2px solid var(--pink-light);
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.plan-quick-nav a:hover {
    background: var(--pink-light);
    border-color: var(--pink);
    transform: translateY(-2px);
}

/* ---------- 練習生方案圖片版 ---------- */

.plan-card-practice {
    background: linear-gradient(180deg, #ffffff 0%, #fff1f6 100%);
}

.plan-simple-layout,
.plan-featured-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.plan-card-practice .plan-info {
    position: relative;
    z-index: 2;
}

.plan-card-practice h3,
.plan-card-practice .plan-description {
    text-align: center;
}

.plan-card-practice .plan-photo,
.plan-card-featured .plan-image {
    width: min(100%, 230px);
    margin: 10px auto 8px;
}

.plan-photo {
    position: relative;
    padding: 10px;
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    transform: rotate(-3deg);
}

.plan-photo::before {
    content: "★";
    position: absolute;
    left: -10px;
    top: -12px;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: #fff;
    background: var(--yellow);
    border: 4px solid #fff;
    border-radius: 50%;
    font-size: 16px;
    box-shadow: var(--shadow-soft);
}

.plan-photo::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -14px;
    width: 64px;
    height: 22px;
    background: rgba(255, 214, 107, 0.55);
    border-radius: 4px;
    transform: translateX(-50%) rotate(4deg);
}

.plan-photo img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 18px;
}

/* ---------- 方案按鈕置中修正 ---------- */

.plan-card .plan-action {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 8px;
}

.plan-card .plan-action .btn,
.plan-card .plan-info>.btn {
    display: inline-flex !important;
    width: max-content !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ---------- 作品展示 ---------- */

.works {
    padding: 90px 0;
    background: #fff;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.work-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease;
}

.work-grid img:hover {
    transform: scale(1.03) rotate(-1deg);
}


/* ---------- 拍攝流程 ---------- */

.process {
    padding: 90px 0;
    background: var(--cream);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.process-card {
    position: relative;
    min-height: 230px;
    padding: 28px 22px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.process-number {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    color: #fff;
    background: var(--blue);
    border-radius: 50%;
    font-weight: 900;
}

.process-card:nth-child(2) .process-number {
    background: var(--pink);
}

.process-card:nth-child(3) .process-number {
    background: var(--green-dark);
}

.process-card:nth-child(4) .process-number {
    background: var(--teal);
}

.process-card:nth-child(5) .process-number {
    background: var(--yellow-dark);
}

.process-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 900;
}

.process-card p {
    margin: 0;
    color: #666;
    font-size: 15px;
}


/* ---------- 拍攝前提醒 ---------- */

.notice {
    padding: 80px 0;
    background: #fff;
}

.notice-inner {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
    align-items: center;
    padding: 44px;
    background: linear-gradient(135deg, var(--teal-light) 0%, #fff 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.notice-text h2 {
    margin: 18px 0 0;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.35;
}

.notice-list {
    list-style: none;
    padding: 0;
}

.notice-list li {
    position: relative;
    margin-bottom: 12px;
    padding: 14px 18px 14px 46px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 12px rgba(80, 60, 40, 0.05);
}

.notice-list li::before {
    content: "🐾";
    position: absolute;
    left: 17px;
    top: 12px;
}


/* ---------- FAQ ---------- */

.faq {
    padding: 90px 0;
    background: var(--cream);
}

.faq-list {
    max-width: 880px;
    margin: 0 auto;
}

.faq-list details {
    margin-bottom: 16px;
    padding: 0 24px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.faq-list summary {
    padding: 22px 0;
    color: var(--dark);
    font-weight: 900;
    cursor: pointer;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    float: right;
    color: var(--pink-dark);
    font-size: 24px;
    font-weight: 900;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list p {
    margin: 0;
    padding: 0 0 24px;
    color: #666;
}


/* ---------- 預約 CTA ---------- */

.booking {
    padding: 90px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 5% 18%, rgba(255, 214, 107, 0.24), transparent 22%),
        linear-gradient(180deg, #fff 0%, var(--pink-light) 100%);
}

.booking-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 46px;
    align-items: center;
    padding: 56px;
    background: #fff;
    border-radius: 48px;
    box-shadow: var(--shadow);
}

.booking-content h2 {
    margin: 18px 0 16px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.25;
    font-weight: 900;
}

.booking-content p {
    margin: 0 0 14px;
    color: #666;
    font-size: 17px;
}

.booking-content .btn {
    margin-top: 16px;
}

.booking-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.booking-visual::before {
    content: "";
    position: absolute;
    inset: 10% 6% 0;
    background: var(--green-light);
    border-radius: 48% 52% 42% 58%;
}

.booking-visual img {
    position: relative;
    z-index: 2;
    width: min(100%, 420px);
}

/* ---------- 方案介紹頁 ---------- */

.plans-hero {
    padding: 90px 0 72px;
    text-align: center;
    background:
        radial-gradient(circle at 10% 15%, rgba(246, 168, 189, 0.18), transparent 22%),
        radial-gradient(circle at 90% 20%, rgba(255, 214, 107, 0.22), transparent 24%),
        linear-gradient(180deg, #fffdf9 0%, var(--cream) 100%);
}

.plans-hero h1 {
    margin: 22px auto 18px;
    max-width: 820px;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.28;
    font-weight: 900;
}

.plans-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: #666;
    font-size: 18px;
}

.plans-overview,
.plan-details,
.plans-cta {
    padding: 90px 0;
}

.plans-overview {
    background: #fff;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.overview-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 28px 22px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.overview-card.is-featured {
    background: linear-gradient(180deg, #fff 0%, #fff6d8 100%);
    border: 3px solid var(--yellow);
}

.overview-tag {
    display: inline-flex;
    align-self: flex-start;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.tag-blue {
    color: #fff;
    background: var(--blue);
}

.tag-green {
    color: #fff;
    background: var(--green-dark);
}

.overview-card h3 {
    margin: 18px 0 10px;
    font-size: 22px;
    line-height: 1.45;
    font-weight: 900;
}

.overview-card p {
    margin: 0 0 18px;
    color: #666;
}

.overview-price {
    margin: auto 0 22px;
    padding: 16px;
    background: #fff;
    border-radius: 20px;
}

.overview-price span,
.overview-price small {
    display: block;
    color: #666;
    font-weight: 700;
}

.overview-price strong {
    display: block;
    color: var(--pink-dark);
    font-size: 34px;
    line-height: 1.2;
    font-weight: 900;
}

.overview-card.is-featured .overview-price strong {
    color: var(--yellow-dark);
}

.overview-card .btn {
    width: 100%;
}


/* ---------- 方案比較表 ---------- */

.plan-compare {
    padding: 90px 0;
    background: var(--cream);
}

.compare-table-wrap {
    overflow-x: auto;
    padding: 12px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.compare-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.compare-table th,
.compare-table td {
    padding: 18px 16px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.compare-table th {
    color: var(--dark);
    background: var(--pink-light);
    font-weight: 900;
}

.compare-table td:first-child {
    color: var(--pink-dark);
    font-weight: 900;
}

.compare-table tr:last-child td {
    border-bottom: none;
}

.table-scroll-hint {
    display: none;
}


/* ---------- 詳細方案卡 ---------- */

.plan-details {
    background: #fff;
}

.detail-card {
    scroll-margin-top: 120px;
    margin-bottom: 36px;
    padding: 42px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.detail-card.is-featured {
    background: linear-gradient(180deg, #ffffff 0%, #fff8df 100%);
    border: 3px solid var(--yellow);
}

.detail-header {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 24px;
    align-items: start;
    margin-bottom: 30px;
}

.detail-number {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    color: #fff;
    background: var(--pink);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 900;
}

.detail-card.is-featured .detail-number {
    color: #7a5400;
    background: var(--yellow);
}

.detail-header h2 {
    margin: 16px 0 10px;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.35;
    font-weight: 900;
}

.detail-header p {
    margin: 0;
    color: #666;
    font-size: 17px;
}

.detail-price-box {
    margin-bottom: 24px;
}

.detail-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.detail-info-wide {
    grid-column: 1 / -1;
}

.detail-price-box,
.detail-info {
    padding: 24px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 14px rgba(80, 60, 40, 0.04);
}

.detail-price-box span {
    color: #666;
    font-weight: 800;
}

.detail-price-box strong {
    display: block;
    margin: 4px 0;
    color: var(--pink-dark);
    font-size: 42px;
    line-height: 1.1;
    font-weight: 900;
}

.detail-card.is-featured .detail-price-box strong {
    color: var(--yellow-dark);
}

.detail-price-box p {
    margin: 8px 0 2px;
    color: var(--dark);
    font-weight: 900;
}

.detail-price-box small {
    color: var(--teal-dark);
    font-weight: 700;
}

.detail-info h3 {
    margin: 0 0 12px;
    font-size: 21px;
    font-weight: 900;
}

.detail-info ul {
    list-style: none;
    padding: 0;
}

.detail-info li {
    position: relative;
    margin-bottom: 9px;
    padding-left: 28px;
    color: #5e5e5e;
}

.detail-info li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    color: #fff;
    background: var(--teal);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 900;
}

.detail-info p {
    margin: 0 0 12px;
    color: #666;
}


/* ---------- 方案 FAQ ---------- */

.plan-faq {
    padding: 90px 0;
    background: var(--cream);
}


/* ---------- 方案 CTA ---------- */

.plans-cta {
    background:
        radial-gradient(circle at 8% 18%, rgba(255, 214, 107, 0.28), transparent 20%),
        linear-gradient(180deg, #fff 0%, var(--pink-light) 100%);
}

.plans-cta-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 54px 36px;
    text-align: center;
    background: #fff;
    border-radius: 48px;
    box-shadow: var(--shadow);
}

.plans-cta-inner h2 {
    margin: 18px 0 14px;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.3;
    font-weight: 900;
}

.plans-cta-inner p {
    max-width: 620px;
    margin: 0 auto 24px;
    color: #666;
    font-size: 17px;
}



/* ---------- Footer ---------- */

.site-footer {
    color: #fff;
    background: var(--dark);
}

.footer-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    padding: 54px 0;
}

.footer-brand img {
    width: 210px;
    margin-bottom: 18px;
    padding: 12px;
    background: #fff;
    border-radius: 20px;
}

.footer-brand p,
.footer-info p {
    margin: 5px 0;
    color: rgba(255, 255, 255, 0.82);
}

.footer-bottom {
    padding: 18px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}


/* ---------- 無障礙與互動 ---------- */

a:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 4px;
}


/* ---------- RWD：平板 ---------- */

@media (max-width: 1024px) {
    .header-inner {
        flex-direction: column;
        padding: 18px 0;
    }

    .site-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-inner,
    .notice-inner,
    .booking-inner {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero h1::after {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-visual {
        min-height: auto;
    }

    .hero-visual {
        min-height: auto;
        justify-content: center;
    }

    .hero-photo-wrap {
        width: min(100%, 520px);
    }

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

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

    .plan-simple-layout,
    .plan-featured-layout {
        grid-template-columns: 1fr;
    }

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


/* ---------- RWD：手機 ---------- */

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

    .site-header {
        position: relative;
    }

    .header-inner {
        gap: 14px;
        min-height: auto;
    }

    .logo img {
        width: 200px;
    }

    .site-header {
        position: sticky;
    }

    .header-inner {
        position: relative;
        flex-direction: row;
        justify-content: space-between;
        min-height: 78px;
        padding: 12px 0;
    }

    .logo img {
        width: 170px;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 16px;
        background: #fff;
        border: 2px solid var(--pink-light);
        border-radius: 24px;
        box-shadow: var(--shadow);
    }

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

    .site-nav a {
        width: 100%;
        padding: 14px 16px;
        text-align: center;
        border-radius: 16px;
    }

    .site-nav a:hover {
        background: var(--pink-light);
    }

    .site-nav a:not(.nav-button)::after {
        display: none;
    }

    .nav-button {
        margin-top: 8px;
        padding: 12px 18px !important;
    }

    .nav-button {
        padding: 8px 16px !important;
    }

    .hero {
        padding: 54px 0 68px;
    }

    .hero-inner {
        gap: 38px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-inner,
    .hero-content {
        width: 100%;
        min-width: 0;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
        width: min(100%, 360px);
        min-width: 0;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin: 0;
        padding: 14px 18px;
        box-sizing: border-box;
        white-space: normal;
        text-align: center;
    }

    .hero-tags {
        max-width: 100%;
        box-sizing: border-box;
        white-space: normal;
    }

    .hero-photo-wrap {
        width: 100%;
        min-height: 390px;
        padding: 30px 22px 0;
        border-width: 7px;
    }

    .bubble-green {
        top: 10px;
        right: 4px;
        width: 94px;
        height: 94px;
        font-size: 14px;
    }

    .sticker-pink {
        right: 20px;
        bottom: 50px;
    }

    .sticker-yellow {
        left: 2px;
        top: 58px;
    }

    .intro,
    .features,
    .plans,
    .works,
    .process,
    .notice,
    .faq,
    .booking {
        padding: 64px 0;
    }

    .intro-text,
    .notice-inner,
    .booking-inner {
        padding: 30px 22px;
        border-radius: 30px;
    }

    .feature-grid,
    .work-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .plan-card {
        padding: 28px 22px;
    }

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

    .plan-simple-layout,
    .plan-featured-layout {
        grid-template-columns: 1fr;
    }

    .plan-info {
        display: flex;
        flex-direction: column;
    }

    .plan-action {
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 8px;
    }

    .plan-action .btn {
        width: auto;
    }

    .plan-featured-layout {
        grid-template-columns: 1fr;
    }

    .plan-image {
        max-width: 260px;
        margin: 10px auto 0;
    }

    .plan-price {
        font-size: 16px;
    }

    .plan-price strong {
        font-size: 28px;
    }


    .plan-quick-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-bottom: 28px;
    }

    .plan-quick-nav a {
        width: 100%;
        padding: 10px 12px;
        text-align: center;
        line-height: 1.45;
    }

    .table-scroll-hint {
        display: block;
        margin-bottom: 12px;
        color: var(--pink-dark);
        font-size: 14px;
        font-weight: 800;
        text-align: center;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand img {
        margin-left: auto;
        margin-right: auto;
    }

}


/* ---------- RWD：小手機 ---------- */

@media (max-width: 420px) {
    .hero h1 {
        font-size: 34px;
    }

    .section-heading h2,
    .intro h2,
    .notice-text h2 {
        font-size: 30px;
    }

    .booking-content h2 {
        font-size: 34px;
    }

    .site-nav {
        font-size: 13px;
    }

    .hero-photo-wrap {
        width: min(100%, 330px);
    }

    .hero-dog-photo {
        object-position: center 38%;
    }

    .bubble-green {
        width: 82px;
        height: 82px;
        font-size: 13px;
    }

    .sticker {
        padding: 8px 14px;
        font-size: 12px;
    }

    .hero-photo-frame {
        border-width: 7px;
    }

    .hero-dog-photo {
        object-position: center 35%;
    }

    .bubble-green {
        top: 8px;
        right: -2px;
        width: 94px;
        height: 94px;
        font-size: 14px;
    }

    .sticker-pink {
        right: 16px;
        bottom: 52px;
    }

    .sticker-yellow {
        left: -6px;
        top: 62px;
    }

    .section-label {
        font-size: 13px;
    }
}

@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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


@media (max-width: 768px) {
    .plans-hero {
        padding: 64px 0 54px;
    }

    .plans-overview,
    .plan-compare,
    .plan-details,
    .plan-faq,
    .plans-cta {
        padding: 64px 0;
    }

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

    .detail-card {
        padding: 30px 22px;
    }

    .detail-header {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .detail-number {
        width: 62px;
        height: 62px;
        font-size: 21px;
    }

    .compare-table-wrap {
        padding: 8px;
    }

    .plans-cta-inner {
        padding: 40px 24px;
        border-radius: 34px;
    }
}

@media (max-width: 768px) {
    .detail-info-grid {
        grid-template-columns: 1fr;
    }

    .detail-info-wide {
        grid-column: auto;
    }
}