
:root {
  --bg: #fbf5e9;
  --cream: #fffaf0;
  --card: rgba(255, 251, 242, .76);
  --text: #4c281a;
  --muted: #8d7566;
  --line: rgba(159, 118, 85, .22);
  --coffee: #7a3f1f;
  --coffee-soft: #a06b43;
  --max: 1480px;
  --font-sans: "Inter", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Helvetica Neue", Arial, sans-serif;
  --text-base: clamp(16px, .95vw, 18px);
  --text-small: clamp(13px, .78vw, 14px);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--text-base);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 14% 30%, rgba(255,255,255,.78), transparent 26rem),
    radial-gradient(circle at 86% 58%, rgba(224,196,154,.24), transparent 24rem),
    var(--bg);
  min-width: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { display: block; height: auto; max-width: 100%; }
h1, h2, h3, p, figure { margin: 0; }
p { letter-spacing: 0; line-height: 1.72; }
.site-shell { overflow: hidden; }

.hero {
  min-height: clamp(620px, 52vw, 760px);
  position: relative;
}

.hero-bg {
  inset: 0;
  position: absolute;
}

.hero-bg::after {
  background:
    linear-gradient(180deg, rgba(37,22,13,.18), rgba(37,22,13,.02) 56%, rgba(251,245,233,.24) 100%),
    linear-gradient(90deg, rgba(36,20,12,.04), rgba(36,20,12,.18));
  content: "";
  inset: 0;
  position: absolute;
}

.hero-bg img {
  filter: brightness(1.04) contrast(.92) saturate(.92);
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.top-line {
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.28);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  left: 0;
  padding: 42px clamp(28px, 7vw, 110px) 36px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
}

.top-brand,
.top-room {
  font-size: clamp(1rem, 1.08vw, 1.18rem);
  font-weight: 800;
  letter-spacing: .06em;
  text-shadow: 0 2px 20px rgba(0,0,0,.24);
}

.top-room { justify-self: center; }

.top-contact {
  border: 1px solid rgba(255,255,255,.76);
  border-radius: 999px;
  font-size: var(--text-small);
  font-weight: 700;
  justify-self: end;
  min-width: 92px;
  padding: 10px 20px;
  text-align: center;
}

.hero-center {
  align-items: center;
  color: #fff;
  display: grid;
  inset: 0;
  justify-items: center;
  padding: 170px 28px 180px;
  position: absolute;
  text-align: center;
  z-index: 2;
}

.hero-center h1 {
  font-size: clamp(2.5rem, 4.2vw, 4.2rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.24;
  text-shadow: 0 5px 24px rgba(0,0,0,.22);
}

.hero-center p {
  font-size: clamp(1.06rem, 1.85vw, 1.72rem);
  font-weight: 800;
  line-height: 1.45;
  margin-top: 18px;
  text-shadow: 0 4px 18px rgba(0,0,0,.22);
}

.home-hero .top-line,
.home-hero .hero-center {
  opacity: 0;
}

.glass-nav {
  align-items: center;
  backdrop-filter: blur(22px);
  background: linear-gradient(180deg, rgba(130,112,96,.66), rgba(92,72,58,.46));
  border: 1px solid rgba(255,255,255,.64);
  border-radius: 16px;
  bottom: -42px;
  box-shadow: 0 26px 70px rgba(68, 40, 24, .18);
  color: #fff;
  display: grid;
  gap: 22px;
  grid-template-columns: 1.05fr 2fr auto;
  left: 50%;
  max-width: min(calc(100vw - 96px), 1320px);
  min-height: 82px;
  padding: 0 22px 0 30px;
  position: absolute;
  transform: translateX(-50%);
  transition: top .24s ease, bottom .24s ease, box-shadow .24s ease, background .24s ease;
  width: 100%;
  z-index: 20;
}

.glass-nav.is-stuck {
  background: linear-gradient(180deg, rgba(126,103,84,.82), rgba(86,65,52,.74));
  bottom: auto;
  box-shadow: 0 20px 54px rgba(68,40,24,.18);
  position: fixed;
  top: 18px;
  z-index: 50;
}

.glass-brand {
  font-size: .96rem;
  font-weight: 800;
  letter-spacing: .07em;
}

.glass-links {
  align-items: center;
  display: flex;
  gap: clamp(16px, 3vw, 42px);
  justify-content: center;
}

.glass-links a {
  font-size: .94rem;
  font-weight: 700;
  padding: 20px 0;
  position: relative;
}

.glass-links a::after {
  background: #fff;
  bottom: 14px;
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  transform: scaleX(.45);
  transition: opacity .2s ease, transform .2s ease;
  width: 100%;
}

.glass-links a:hover::after,
.glass-links a[aria-current="page"]::after {
  opacity: .9;
  transform: scaleX(1);
}

.glass-cta {
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 700;
  padding: 12px 25px;
}

.section {
  margin: 0 auto;
  max-width: var(--max);
  padding: 92px clamp(28px, 7vw, 110px);
}

.intro {
  padding-top: 124px;
  text-align: center;
}

.section-title {
  margin: 0 auto 52px;
  max-width: 760px;
  text-align: center;
}

.section-title small {
  color: var(--coffee-soft);
  display: block;
  font-size: var(--text-small);
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-title h2 {
  color: var(--text);
  font-size: clamp(1.55rem, 1.8vw, 1.78rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.32;
}

.section-title p {
  color: #765f50;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.72;
  margin-top: 14px;
}

.feature-strip {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.05fr .95fr;
  margin-bottom: 68px;
}

.feature-strip figure,
.wide-photo {
  border-radius: 18px;
  overflow: hidden;
}

.feature-strip img,
.wide-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.feature-strip figure { min-height: 430px; }

.feature-card {
  align-content: center;
  background: rgba(255, 251, 242, .7);
  border: 1px solid var(--line);
  border-radius: 18px;
  display: grid;
  padding: clamp(34px, 5vw, 72px);
}

.feature-card h2 {
  font-size: clamp(1.7rem, 2.35vw, 2.5rem);
  line-height: 1.28;
}

.feature-card p {
  color: #765f50;
  font-weight: 600;
  margin-top: 20px;
}

.product-grid {
  display: grid;
  gap: 34px 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  min-height: 372px;
  padding: 28px 24px 34px;
  position: relative;
  text-align: center;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.product-card:hover {
  border-color: rgba(159,118,85,.42);
  box-shadow: 0 18px 42px rgba(75,42,24,.08);
  transform: translateY(-3px);
}

.product-card .num {
  color: #bc9069;
  font-size: var(--text-small);
  font-weight: 800;
  position: absolute;
  right: 26px;
  top: 24px;
}

.product-card figure {
  align-items: center;
  display: flex;
  height: 230px;
  justify-content: center;
  margin: 10px auto 18px;
}

.product-card img {
  max-height: 100%;
  object-fit: contain;
  width: min(100%, 390px);
}

.product-card h3 {
  color: var(--text);
  font-size: clamp(1.2rem, 1.35vw, 1.38rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.42;
}

.product-card p {
  color: var(--muted);
  font-size: var(--text-small);
  font-weight: 700;
  letter-spacing: .08em;
  margin-top: 6px;
  text-transform: uppercase;
}

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

.album-grid figure {
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
}

.album-grid.wide figure {
  aspect-ratio: 4 / 3;
}

.album-grid img {
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
  width: 100%;
}

.album-grid figure:hover img {
  transform: scale(1.04);
}

.dots {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.dots span {
  background: #d9cdbf;
  border-radius: 999px;
  height: 10px;
  width: 10px;
}

.dots span:first-child {
  background: var(--coffee);
  width: 22px;
}

.story-split {
  align-items: center;
  display: grid;
  gap: 68px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
}

.story-photo {
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
}

.story-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.story-copy h2 {
  font-size: clamp(1.55rem, 1.8vw, 1.78rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.34;
}

.story-copy p {
  color: #765f50;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.72;
  margin-top: 22px;
}

.info-band {
  background: linear-gradient(180deg, rgba(250,239,219,.55), rgba(255,249,237,.82));
  margin-top: 16px;
}

.info-layout {
  display: grid;
  gap: 90px;
  grid-template-columns: 1fr 1fr;
}

.info-block h2,
.info-block h3 {
  color: var(--text);
  font-size: clamp(1.35rem, 1.55vw, 1.62rem);
  font-weight: 800;
  letter-spacing: 0;
}

.info-block strong {
  color: var(--text);
  display: block;
  font-size: clamp(2rem, 2.8vw, 3rem);
  font-weight: 800;
  letter-spacing: 0;
  margin: 12px 0 14px;
}

.info-block p {
  color: #6d5545;
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  font-weight: 700;
  line-height: 1.72;
}

.reserve-now {
  background: var(--coffee);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 26px;
  padding: 17px 52px;
  transition: background-color .2s ease, transform .2s ease;
}

.reserve-now:hover {
  background: #633217;
  transform: translateY(-2px);
}

.site-footer {
  border-top: 1px solid var(--line);
  margin: 0 auto;
  max-width: var(--max);
  padding: 34px clamp(28px, 7vw, 110px) 46px;
}

.footer-row {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr 1fr;
}

.footer-row a,
.footer-row p {
  color: #684f3e;
  font-size: var(--text-small);
  font-weight: 700;
  line-height: 1.55;
}

.footer-row p:last-child { justify-self: end; }

.page-hero { min-height: 540px; }
.page-hero .hero-center { padding-bottom: 110px; }
.page-hero .glass-nav { bottom: -42px; }
.page-hero .glass-nav.is-stuck { bottom: auto; }

@media (prefers-reduced-motion: no-preference) {
  .section { animation: fadeUp .32s ease both; }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

@media (max-width: 1100px) {
  .hero { min-height: 620px; }
  .top-line { padding-left: 34px; padding-right: 34px; }
  .glass-nav {
    bottom: -42px;
    max-width: calc(100vw - 72px);
  }
  .glass-nav.is-stuck {
    bottom: auto;
    top: 14px;
  }
  .page-hero .glass-nav { bottom: -42px; }
  .page-hero .glass-nav.is-stuck { bottom: auto; }
  .intro { padding-top: 124px; }
  .product-grid,
  .album-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .story-split,
  .info-layout,
  .feature-strip { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .hero { min-height: 650px; }
  .top-line {
    gap: 18px;
    grid-template-columns: 1fr auto;
    padding: 28px 20px 24px;
  }
  .top-room { display: none; }
  .top-brand { font-size: 1rem; }
  .top-contact { min-width: 78px; padding: 8px 14px; }
  .hero-center { padding: 150px 20px 160px; }
  .hero-center h1 {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
    line-height: 1.28;
  }
  .glass-nav {
    border-radius: 22px;
    bottom: -136px;
    gap: 12px;
    grid-template-columns: 1fr;
    max-width: calc(100vw - 40px);
    padding: 18px 18px;
  }
  .glass-nav.is-stuck {
    bottom: auto;
    max-height: calc(100vh - 24px);
    overflow: auto;
    top: 12px;
  }
  .page-hero .glass-nav { bottom: -108px; }
  .page-hero .glass-nav.is-stuck { bottom: auto; }
  .glass-links {
    flex-wrap: wrap;
    gap: 10px 22px;
  }
  .glass-brand { font-size: .95rem; text-align: center; }
  .glass-links a,
  .glass-cta { font-size: .88rem; }
  .glass-cta { justify-self: center; }
  .section { padding: 86px 20px; }
  .intro { padding-top: 232px; }
  .product-grid,
  .home-products,
  .album-grid,
  .footer-row { grid-template-columns: 1fr; }
  .product-card { min-height: 390px; }
  .product-card figure { height: 260px; }
  .album-grid figure,
  .album-grid.wide figure { aspect-ratio: 4 / 3; }
  .footer-row p:last-child { justify-self: start; }
}


.case-page {
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.8), transparent 28rem),
    radial-gradient(circle at 86% 70%, rgba(217,200,180,.28), transparent 32rem),
    #f7f4f0;
  color: #3a2a20;
  font-family: var(--font-sans);
}

.case-header,
.case-section,
.case-footer {
  margin: 0 auto;
  max-width: 1480px;
  padding-left: clamp(22px, 6vw, 120px);
  padding-right: clamp(22px, 6vw, 120px);
}

.case-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 28px;
  padding-top: 30px;
}

.case-brand {
  align-items: center;
  color: #4c3427;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  letter-spacing: .03em;
}

.case-brand::before {
  border: 1px solid #9d7f68;
  border-radius: 999px;
  content: "";
  height: 26px;
  width: 26px;
}

.case-nav {
  align-items: center;
  display: flex;
  gap: clamp(16px, 2.6vw, 38px);
}

.case-nav a {
  color: #5c4b3e;
  font-size: .95rem;
  font-weight: 700;
}

.case-nav .case-nav-cta {
  background: #7a563d;
  border-radius: 999px;
  color: #fffaf0;
  padding: 12px 22px;
}

.case-hero {
  display: grid;
  gap: clamp(34px, 5vw, 78px);
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  min-height: 680px;
  padding-bottom: 84px;
  padding-top: 56px;
}

.case-hero-copy {
  align-self: center;
}

.case-eyebrow {
  color: #9d7f68;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.case-hero h1,
.case-section h2,
.case-panel h3,
.case-card h3,
.case-step h3 {
  color: #3a2a20;
  font-weight: 800;
  letter-spacing: 0;
}

.case-hero h1 {
  font-size: clamp(2.4rem, 4.2vw, 5rem);
  line-height: 1.15;
}

.case-subtitle {
  color: #6c5849;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  font-weight: 700;
  line-height: 1.7;
  margin-top: 24px;
}

.case-lead {
  color: #715f52;
  font-size: 1.02rem;
  line-height: 1.9;
  margin-top: 28px;
  max-width: 720px;
}

.case-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.case-button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
}

.case-button.primary {
  background: #7a563d;
  color: #fffaf0;
}

.case-button.ghost {
  border: 1px solid rgba(122,86,61,.34);
  color: #5c4b3e;
}

.case-hero-media {
  align-self: stretch;
  border-radius: 26px;
  box-shadow: 0 34px 80px rgba(76,40,26,.14);
  min-height: 560px;
  overflow: hidden;
  position: relative;
}

.case-hero-media img,
.case-image img,
.case-shot img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.case-hero-media figcaption {
  backdrop-filter: blur(18px);
  background: rgba(255,250,240,.78);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 18px;
  bottom: 24px;
  left: 24px;
  padding: 18px 22px;
  position: absolute;
  right: 24px;
}

.case-hero-media strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.case-hero-media span,
.case-hero-media p {
  color: #7c6758;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.6;
}

.case-section {
  padding-bottom: 86px;
  padding-top: 86px;
}

.case-section-head {
  margin: 0 auto 44px;
  max-width: 820px;
  text-align: center;
}

.case-section h2 {
  font-size: clamp(1.8rem, 2.5vw, 3rem);
  line-height: 1.28;
}

.case-section-head p {
  color: #715f52;
  font-weight: 700;
  line-height: 1.85;
  margin-top: 18px;
}

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

.case-card,
.case-panel,
.case-shot,
.case-step,
.case-value,
.case-quote {
  background: rgba(255,252,247,.78);
  border: 1px solid rgba(157,127,104,.22);
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(76,40,26,.06);
}

.case-card {
  padding: 32px;
}

.case-card h3 {
  font-size: 1.22rem;
  line-height: 1.45;
  margin-bottom: 14px;
}

.case-card p,
.case-card li,
.case-panel p,
.case-shot p,
.case-step p,
.case-value p {
  color: #705d4f;
  font-size: .98rem;
  font-weight: 600;
  line-height: 1.82;
}

.case-card ul,
.case-panel ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.case-card li,
.case-panel li {
  border-top: 1px solid rgba(157,127,104,.18);
  padding-top: 10px;
}

.case-panel-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
}

.case-panel {
  padding: clamp(32px, 5vw, 58px);
}

.case-panel h3 {
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  line-height: 1.34;
}

.case-panel p {
  margin-top: 20px;
}

.case-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.case-keywords span {
  background: #f4eadc;
  border: 1px solid rgba(157,127,104,.2);
  border-radius: 999px;
  color: #765541;
  font-size: .88rem;
  font-weight: 800;
  padding: 9px 13px;
}

.case-image,
.case-shot figure {
  border-radius: 18px;
  overflow: hidden;
}

.case-image {
  min-height: 520px;
}

.case-shots {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-shot {
  overflow: hidden;
}

.case-shot figure {
  aspect-ratio: 4 / 3;
}

.case-shot div {
  padding: 26px;
}

.case-shot h3 {
  font-size: 1.18rem;
  margin-bottom: 12px;
}

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

.case-step {
  padding: 26px;
  position: relative;
}

.case-step strong {
  color: #9d7f68;
  display: block;
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: 22px;
}

.case-step h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.case-value {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  padding: clamp(34px, 5vw, 64px);
}

.case-value h2 {
  margin-bottom: 18px;
}

.case-quote {
  padding: 30px;
}

.case-quote strong {
  color: #7a563d;
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 14px;
}

.case-footer {
  border-top: 1px solid rgba(157,127,104,.22);
  color: #826b5a;
  display: flex;
  flex-wrap: wrap;
  font-size: .9rem;
  font-weight: 700;
  gap: 16px;
  justify-content: space-between;
  padding-bottom: 42px;
  padding-top: 30px;
}

@media (prefers-reduced-motion: no-preference) {
  .case-section,
  .case-hero-copy,
  .case-hero-media {
    animation: caseFade .32s ease both;
  }
  @keyframes caseFade {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

@media (max-width: 1100px) {
  .case-hero,
  .case-panel-grid,
  .case-value {
    grid-template-columns: 1fr;
  }
  .case-hero-media { min-height: 460px; }
  .case-grid,
  .case-shots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .case-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .case-header {
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
  }
  .case-nav {
    flex-wrap: wrap;
  }
  .case-hero {
    min-height: 0;
    padding-bottom: 56px;
    padding-top: 34px;
  }
  .case-hero-media { min-height: 360px; }
  .case-section {
    padding-bottom: 62px;
    padding-top: 62px;
  }
  .case-grid,
  .case-shots,
  .case-process {
    grid-template-columns: 1fr;
  }
  .case-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .case-button {
    width: 100%;
  }
}
