:root {
  --cream: #fff6e9;
  --peach: #ffe0b5;
  --orange: #ff9f5a;
  --orange-d: #f47b2a;
  --brown: #7a5230;
  --brown-l: #a77a4f;
  --pink: #ffd3c4;
  --ink: #4a3526;
  --white: #fff;
  --shadow: 0 12px 30px rgba(122, 82, 48, .15);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Noto Sans TC', 'Baloo 2', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, .brand { font-family: 'Baloo 2', 'Noto Sans TC', cursive; letter-spacing: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { margin: 0 auto; max-width: 1180px; padding: 0 22px; }
.paws { inset: 0; overflow: hidden; pointer-events: none; position: fixed; z-index: 0; }
.paws span { animation: floatUp linear infinite; font-size: 26px; opacity: .12; position: absolute; }
@keyframes floatUp {
  0% { opacity: 0; transform: translateY(110vh) rotate(0); }
  10%, 90% { opacity: .16; }
  100% { opacity: 0; transform: translateY(-12vh) rotate(360deg); }
}

header {
  backdrop-filter: blur(12px);
  background: rgba(255, 246, 233, .82);
  border-bottom: 1px solid transparent;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: .4s;
  z-index: 200;
}
header.scrolled { border-bottom-color: var(--peach); box-shadow: var(--shadow); }
.nav { align-items: center; display: flex; height: 74px; justify-content: space-between; }
.brand { align-items: center; color: var(--orange-d); display: flex; font-size: 1.4rem; font-weight: 800; gap: 10px; }
.brand .logo {
  animation: bob 3s ease-in-out infinite;
  border-radius: 50%;
  box-shadow: var(--shadow);
  display: block;
  flex-shrink: 0;
  height: 46px;
  overflow: hidden;
  width: 46px;
}
.brand .logo img { height: 100%; object-fit: cover; width: 100%; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.menu { align-items: center; display: flex; gap: 24px; list-style: none; }
.menu a { font-weight: 700; padding: 6px 0; position: relative; transition: .3s; }
.menu a::after {
  background: var(--orange);
  border-radius: 3px;
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  transition: .35s;
  width: 0;
}
.menu a:hover, .menu a.active { color: var(--orange-d); }
.menu a:hover::after, .menu a.active::after { width: 100%; }
.btn-book-nav {
  background: linear-gradient(135deg, var(--orange), var(--orange-d));
  border-radius: 50px;
  box-shadow: 0 8px 18px rgba(244, 123, 42, .4);
  color: #fff !important;
  padding: 10px 22px !important;
}
.btn-book-nav::after { display: none !important; }
.burger { background: none; border: 0; cursor: pointer; display: none; flex-direction: column; gap: 6px; height: 46px; justify-content: center; position: relative; width: 46px; z-index: 230; }
.burger span { background: var(--orange-d); border-radius: 3px; display: block; height: 3px; transition: .4s cubic-bezier(.68, -.55, .27, 1.55); width: 28px; }
.burger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.hero, .page-hero {
  background:
    radial-gradient(circle at 80% 20%, var(--pink) 0, transparent 45%),
    radial-gradient(circle at 15% 90%, var(--peach) 0, transparent 40%),
    var(--cream);
  position: relative;
  z-index: 1;
}
.hero { align-items: center; display: flex; min-height: 100vh; padding-top: 74px; }
.hero .container { max-width: 1580px; }
.hero-grid { align-items: center; display: grid; gap: 40px; grid-template-columns: 1.1fr .9fr; }
.tag {
  background: var(--white);
  border-radius: 50px;
  box-shadow: var(--shadow);
  color: var(--orange-d);
  display: inline-block;
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding: 8px 18px;
}
.hero h1 { color: var(--brown); font-size: clamp(2.3rem, 5vw, 3.8rem); line-height: 1.2; margin-bottom: 18px; }
.hero h1 .hl { color: var(--orange-d); position: relative; white-space: nowrap; }
.hero h1 .hl::after { background: var(--peach); border-radius: 6px; bottom: 6px; content: ""; height: 14px; left: 0; position: absolute; width: 100%; z-index: -1; }
.lead { color: var(--brown-l); font-size: 1.12rem; margin-bottom: 30px; max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; }
.btn {
  align-items: center;
  border: 0;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 700;
  gap: 8px;
  padding: 14px 30px;
  transition: .35s;
}
.btn-primary { background: linear-gradient(135deg, var(--orange), var(--orange-d)); box-shadow: 0 12px 26px rgba(244, 123, 42, .4); color: #fff; }
.btn-primary:hover, .btn-ghost:hover { transform: translateY(-4px); }
.btn-ghost { background: #fff; box-shadow: var(--shadow); color: var(--orange-d); }
.hero-visual, .story-visual { align-items: center; display: flex; justify-content: center; position: relative; }
.hero-banner, .story-banner { border-radius: 24px; box-shadow: var(--shadow); overflow: hidden; }
.hero-banner { width: min(800px, 92vw); }
.story-banner { width: min(520px, 92vw); }
.banner-slider { display: grid; gap: 14px; }
.banner-slide { display: none; }
.banner-slide:first-child, .banner-slide.active { display: block; }
.float-card {
  animation: bob 4s ease-in-out infinite;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  font-size: .9rem;
  font-weight: 700;
  gap: 8px;
  padding: 12px 18px;
  position: absolute;
  z-index: 2;
}
.fc1 { color: var(--orange-d); left: -4%; top: 8%; }
.fc2 { animation-delay: 1.2s; bottom: 12%; color: #5a8f3c; right: -6%; }
.fc3 { animation-delay: .6s; bottom: 40%; color: #c0578f; left: -8%; }

.page-hero { padding: 140px 0 70px; text-align: center; }
.page-hero .crumb { color: var(--orange-d); font-size: .9rem; font-weight: 700; margin-bottom: 10px; }
.page-hero h1 { color: var(--brown); font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero p { color: var(--brown-l); font-size: 1.08rem; margin: 14px auto 0; max-width: 660px; }

section.block { padding: 80px 0; position: relative; z-index: 1; }
section.compact { padding-top: 0; }
.head { margin: 0 auto 50px; max-width: 680px; text-align: center; }
.head .eyebrow { color: var(--orange-d); font-size: .85rem; font-weight: 800; letter-spacing: 0; text-transform: uppercase; }
.head h2 { color: var(--brown); font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 10px 0; }
.head p, .story-text p, .note { color: var(--brown-l); }
.grid3 { display: grid; gap: 26px; grid-template-columns: repeat(3, 1fr); }
.grid4 { display: grid; gap: 22px; grid-template-columns: repeat(4, 1fr); }
.card, .svc, .t-card, .stat, .msg-form, .price-card, .q {
  background: #fff;
  box-shadow: var(--shadow);
}
.card, .svc { border: 2px solid transparent; border-radius: 24px; padding: 34px 26px; text-align: center; transition: .4s; }
.svc { text-align: left; }
.card:hover, .svc:hover { border-color: var(--peach); transform: translateY(-10px); }
.card .ic { border-radius: 50%; height: 78px; margin: 0 auto 18px; overflow: hidden; width: 78px; }
.card .ic img { height: 100%; object-fit: cover; width: 100%; }
.svc .ic { align-items: center; background: linear-gradient(135deg, var(--pink), var(--peach)); border-radius: 20px; display: grid; font-size: 2.1rem; height: 74px; margin-bottom: 18px; place-items: center; width: 74px; }
.card h3, .svc h3, .step h3, .c-card h3 { color: var(--brown); }
.card p, .svc p, .step p, .t-card p, .c-card p { color: var(--brown-l); }
.price-strip, .promise, .ig-cta, .info-box {
  background: linear-gradient(135deg, var(--orange), var(--orange-d));
  border-radius: 30px;
  box-shadow: var(--shadow);
  color: #fff;
  overflow: hidden;
  padding: 46px;
  position: relative;
  text-align: center;
}
.price-tag, .price-card .num { font-family: 'Baloo 2'; font-size: 3.4rem; font-weight: 800; line-height: 1; }
.price-tag small, .price-card .num small { font-size: 1rem; font-weight: 500; opacity: .85; }
.promo { background: #fff; border-radius: 50px; color: var(--orange-d); display: inline-block; font-weight: 700; margin-top: 14px; padding: 8px 20px; }
.step { text-align: center; }
.step .num { background: #fff; border-radius: 50%; box-shadow: var(--shadow); color: var(--orange-d); display: grid; font-size: 1.6rem; font-weight: 800; height: 64px; margin: 0 auto 16px; place-items: center; width: 64px; }
.t-grid { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); }
.t-card { border-radius: 22px; padding: 28px; }
.stars { color: #ffb400; margin-bottom: 10px; }
.t-who { align-items: center; color: var(--brown); display: flex; font-weight: 700; gap: 12px; }
.t-who .av { border-radius: 50%; flex-shrink: 0; height: 44px; overflow: hidden; width: 44px; }
.t-who .av img { height: 100%; object-fit: cover; width: 100%; }
.split { align-items: center; display: grid; gap: 46px; grid-template-columns: .9fr 1.1fr; }
.story-text h2 { color: var(--brown); font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 18px; }
.story-text p { margin-bottom: 16px; }
.sig { color: var(--orange-d); font-family: 'Baloo 2'; font-size: 1.2rem; font-weight: 800; }
.p-list { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.p-item { align-items: flex-start; background: rgba(255, 255, 255, .12); border-radius: 16px; display: flex; gap: 12px; padding: 16px 18px; }
.price-wrap { display: grid; gap: 28px; grid-template-columns: repeat(2, 1fr); margin: 0 auto; max-width: 880px; }
.price-card { border: 2px solid transparent; border-radius: 28px; padding: 40px 32px; position: relative; text-align: center; }
.price-card.featured { background: linear-gradient(135deg, var(--orange), var(--orange-d)); color: #fff; }
.price-card .badge { background: #fff; border-radius: 50px; color: var(--orange-d); font-size: .78rem; font-weight: 700; padding: 5px 14px; position: absolute; right: 18px; top: 18px; }
.price-card ul { display: grid; gap: 10px; list-style: none; margin: 24px 0; text-align: left; }
.btn-x { border-radius: 50px; display: inline-flex; font-weight: 700; gap: 8px; padding: 13px 30px; }
.price-card.featured .btn-x { background: #fff; color: var(--orange-d); }
.price-card:not(.featured) .btn-x { background: linear-gradient(135deg, var(--orange), var(--orange-d)); color: #fff; }
.faq { display: grid; gap: 14px; margin: 0 auto; max-width: 780px; }
.q { border: 2px solid transparent; border-radius: 18px; overflow: hidden; }
.q button { align-items: center; background: none; border: 0; color: var(--brown); cursor: pointer; display: flex; font-family: 'Noto Sans TC'; font-size: 1.05rem; font-weight: 700; justify-content: space-between; padding: 20px 24px; text-align: left; width: 100%; }
.q .a { color: var(--brown-l); max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.q .a div { padding: 0 24px 20px; }
.q.open { border-color: var(--peach); }
.q.open .ar { transform: rotate(135deg); }
.ar { color: var(--orange-d); font-size: 1.3rem; transition: .4s; }

.gallery-grid { display: grid; gap: 18px; grid-template-columns: repeat(4, 1fr); }
.filters { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 30px; }
.filters button { background: #fff; border: 2px solid var(--peach); border-radius: 50px; color: var(--brown); cursor: pointer; font-family: inherit; font-weight: 700; padding: 9px 22px; }
.filters button.active { background: var(--orange-d); border-color: var(--orange-d); color: #fff; }
.g-item { border-radius: 20px; box-shadow: var(--shadow); cursor: pointer; overflow: hidden; position: relative; }
.g-item .ph { aspect-ratio: 1 / 1; background: var(--peach); }
.g-item .ph.tall { aspect-ratio: 3 / 4; }
.g-item .ph.wide { aspect-ratio: 4 / 3; }
.g-item img { height: 100%; object-fit: cover; width: 100%; }
.tagbadge { background: rgba(255, 255, 255, .9); border-radius: 50px; color: var(--orange-d); font-size: .75rem; font-weight: 700; left: 12px; padding: 4px 12px; position: absolute; top: 12px; }
.cap { background: linear-gradient(transparent, rgba(74, 53, 38, .78)); bottom: 0; color: #fff; font-weight: 700; left: 0; padding: 24px 16px 14px; position: absolute; right: 0; }
.lightbox { align-items: center; background: rgba(74, 53, 38, .75); display: none; inset: 0; justify-content: center; padding: 30px; position: fixed; z-index: 300; }
.lightbox.show { display: flex; }
.lb-card { max-width: 820px; position: relative; width: min(92vw, 820px); }
.lb-card img { border-radius: 24px; max-height: 78vh; object-fit: contain; width: 100%; }
.lb-close { background: #fff; border: 0; border-radius: 50%; color: var(--orange-d); cursor: pointer; font-size: 1.6rem; height: 46px; position: absolute; right: -18px; top: -18px; width: 46px; }
.lb-cap { background: linear-gradient(transparent, rgba(74, 53, 38, .8)); border-radius: 0 0 24px 24px; bottom: 0; color: #fff; font-weight: 700; left: 0; padding: 30px 20px 18px; position: absolute; right: 0; }
.ig-cta a { background: #fff; border-radius: 50px; color: var(--orange-d); display: inline-flex; font-weight: 700; margin-top: 14px; padding: 13px 30px; }

.c-grid { align-items: start; display: grid; gap: 36px; grid-template-columns: 1fr 1fr; }
.c-methods { display: grid; gap: 18px; }
.c-card { align-items: center; background: #fff; border: 2px solid transparent; border-radius: 20px; box-shadow: var(--shadow); display: flex; gap: 18px; padding: 22px 24px; transition: .4s; }
.c-card:hover { border-color: var(--peach); transform: translateX(8px); }
.c-card .ic { align-items: center; background: linear-gradient(135deg, var(--pink), var(--peach)); border-radius: 16px; display: grid; flex-shrink: 0; font-size: 1.8rem; height: 60px; place-items: center; width: 60px; }
.info-box { border-radius: 24px; margin-top: 18px; padding: 32px; text-align: left; }
.info-box .row { display: flex; gap: 10px; margin-bottom: 12px; }
.msg-form { border-radius: 24px; padding: 36px; }
.field { margin-bottom: 18px; }
.field label { color: var(--brown); display: block; font-size: .95rem; font-weight: 700; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  background: var(--cream);
  border: 2px solid var(--peach);
  border-radius: 14px;
  color: var(--ink);
  font: inherit;
  padding: 13px 16px;
  width: 100%;
}
.field textarea { min-height: 110px; resize: vertical; }
.form-note { color: var(--brown-l); font-size: .85rem; margin-top: 14px; text-align: center; }
.alert { border-radius: 16px; margin-bottom: 18px; padding: 14px 16px; }
.alert-ok { background: #e9f8ee; color: #28683c; }
.alert-error { background: #fff0ed; color: #9b3325; }

.blog-grid { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); }
.blog-card { background: #fff; border-radius: 22px; box-shadow: var(--shadow); overflow: hidden; }
.blog-card .cover { aspect-ratio: 16 / 10; background: var(--peach); }
.blog-card .cover img { height: 100%; object-fit: cover; width: 100%; }
.blog-card .content { padding: 24px; }
.blog-card h3 { color: var(--brown); margin-bottom: 8px; }
.blog-card p { color: var(--brown-l); }
.blog-body { background: #fff; border-radius: 24px; box-shadow: var(--shadow); color: var(--brown-l); padding: 34px; }
.blog-body h2, .blog-body h3 { color: var(--brown); margin: 24px 0 10px; }
.pagination { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 34px; }
.pagination a {
  background: #fff;
  border: 2px solid var(--peach);
  border-radius: 50px;
  color: var(--brown);
  font-weight: 700;
  padding: 9px 18px;
}
.pagination a.active, .pagination a:hover { background: var(--orange-d); border-color: var(--orange-d); color: #fff; }

.cta { padding: 80px 0; position: relative; z-index: 1; }
.cta-box { background: #fff; border: 3px dashed var(--peach); border-radius: 30px; box-shadow: var(--shadow); padding: 60px 40px; text-align: center; }
.cta-box h2 { color: var(--brown); font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; }
.cta-box p { color: var(--brown-l); margin-bottom: 26px; }
footer { background: var(--brown); color: #fff; margin-top: 40px; padding: 56px 0 26px; position: relative; z-index: 1; }
.f-grid { display: grid; gap: 36px; grid-template-columns: 2fr 1fr 1fr; margin-bottom: 30px; }
footer h4 { color: var(--peach); margin-bottom: 14px; }
footer a, footer p { color: #e8dccf; font-size: .95rem; margin-bottom: 8px; }
.socials { display: flex; gap: 12px; margin-top: 12px; }
.socials a { background: rgba(255, 255, 255, .1); border-radius: 50%; display: grid; font-size: 1.2rem; height: 42px; place-items: center; width: 42px; }
.copy { border-top: 1px solid rgba(255, 255, 255, .15); color: #cbb9a6; font-size: .85rem; padding-top: 20px; text-align: center; }
.fab { animation: pulse 2.4s infinite; background: #25d366; border-radius: 50%; bottom: 24px; box-shadow: 0 10px 26px rgba(37, 211, 102, .5); display: grid; font-size: 1.7rem; height: 60px; place-items: center; position: fixed; right: 22px; width: 60px; z-index: 90; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); } 70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

@media (max-width: 980px) {
  .menu { gap: 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .burger { display: flex; }
  .menu {
    background: var(--cream);
    box-shadow: -12px 0 40px rgba(122, 82, 48, .2);
    flex-direction: column;
    gap: 26px;
    height: 100vh;
    justify-content: center;
    padding: 40px;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: transform .5s cubic-bezier(.77, 0, .18, 1);
    width: min(78vw, 320px);
    z-index: 220;
  }
  .menu.open { transform: translateX(0); }
  .overlay { backdrop-filter: blur(2px); background: rgba(74, 53, 38, .45); inset: 0; opacity: 0; pointer-events: none; position: fixed; transition: .4s; visibility: hidden; z-index: 150; }
  .overlay.show { opacity: 1; pointer-events: auto; visibility: visible; }
  .hero-grid, .split, .grid3, .grid4, .t-grid, .f-grid, .p-list, .price-wrap, .c-grid, .blog-grid { grid-template-columns: 1fr; }
  .hero-grid { text-align: center; }
  .lead { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-visual { margin-top: 30px; }
  .float-card { font-size: .78rem; padding: 8px 12px; }
  .page-hero { padding-top: 120px; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .price-tag, .price-card .num { font-size: 2.8rem; }
  .cta-box, .price-strip, .promise, .ig-cta { padding: 36px 22px; }
}