/* ============================================================
   日日好日商務中心 — Global Stylesheet  v2
   style.css  (shared across all pages)
   ============================================================ */

/* ── 1. Design Tokens ─────────────────────────────────────── */
:root {
  /* Brand palette */
  --white:      #FFFFFF;
  --off-white:  #FDFBF8;
  --gray:       #F6F3EE;
  --gray-deep:  #EDE8DF;
  --oak:        #C9A96E;
  --oak-soft:   #E5D0AD;
  --oak-deep:   #9E7848;
  --brand:      #6B4F3A;
  --brand-deep: #573F2D;
  --text:       #2E2A26;
  --text-sub:   #6B6560;
  --text-light: #9E9994;
  --border:     #E8E1D7;
  --border-lt:  #F0EBE3;

  /* Shadows */
  --shadow-xs:  0 2px 8px  rgba(46,42,38,.05);
  --shadow-sm:  0 4px 16px rgba(46,42,38,.07);
  --shadow-md:  0 12px 36px rgba(46,42,38,.10);
  --shadow-lg:  0 24px 56px rgba(46,42,38,.14);

  /* Shape */
  --radius-sm:  10px;
  --radius:     16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  /* Layout */
  --nav-h:      80px;
  --section-py: 96px;

  /* Animation */
  --ease:       cubic-bezier(.22,.61,.36,1);
  --ease-in:    cubic-bezier(.4,0,1,1);
  --ease-out:   cubic-bezier(0,0,.2,1);
  --dur:        .32s;
}

/* ── 2. Reset & Base ─────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body  {
  font-family: 'Noto Sans TC', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1,h2,h3,h4 {
  font-family: 'Noto Serif TC', serif;
  line-height: 1.3;
  letter-spacing: .02em;
  color: var(--text);
}
a   { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul  { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── 3. Layout Utilities ─────────────────────────────────── */
.container   { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section     { padding: var(--section-py) 0; }
.section-sm  { padding: calc(var(--section-py) * .65) 0; }
.text-center { text-align: center; }

/* ── 4. Typography Components ────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--oak-deep);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  margin-bottom: 14px;
  color: var(--brand);
}
.section-title::after {
  content: '';
  display: block;
  width: 52px; height: 2px;
  background: linear-gradient(90deg, var(--oak), transparent);
  margin-top: 14px;
}
.text-center .section-title::after { margin-left: auto; margin-right: auto; }
.section-lead {
  font-size: 1.02rem;
  color: var(--text-sub);
  line-height: 1.9;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.divider {
  width: 52px; height: 2px;
  background: linear-gradient(90deg, var(--oak), transparent);
  margin: 14px auto 22px;
}

/* ── 5. Scroll Reveal ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .09s; }
.reveal-delay-2 { transition-delay: .18s; }
.reveal-delay-3 { transition-delay: .27s; }

/* ── 6. Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  transition: background var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 8px 24px rgba(107,79,58,.22);
}
.btn-primary:hover {
  background: var(--brand-deep);
  border-color: var(--brand-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(107,79,58,.28);
}
.btn-ghost-white {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.45);
  backdrop-filter: blur(8px);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.65);
}
.btn-outline-dark {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.btn-outline-dark:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: .86rem; }

/* ── 7. Navigation ────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(232,225,215,.85);
  transition: box-shadow var(--dur) var(--ease);
}
#nav.scrolled { box-shadow: 0 4px 20px rgba(46,42,38,.07); }

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 3px 10px rgba(0,0,0,.09);
}
.nav-logo-text { display: flex; flex-direction: column; gap: 1px; }
.nav-logo-zh {
  font-size: .98rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .04em;
  line-height: 1.2;
}
.nav-logo-en {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--brand);
  line-height: 1.2;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--dur);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--oak);
  border-radius: 1px;
  transition: width var(--dur) var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--brand); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 6px 18px rgba(107,79,58,.2);
  transition: background var(--dur), transform var(--dur), box-shadow var(--dur);
}
.nav-cta:hover {
  background: var(--brand-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(107,79,58,.26);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transition: transform .28s var(--ease), opacity .28s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  z-index: 899;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 16px 28px 28px;
  box-shadow: 0 16px 32px rgba(46,42,38,.08);
  animation: slideDown .24s ease;
}
.mobile-menu.open { display: block; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 0; }
.mobile-menu a {
  display: block;
  padding: 13px 0;
  font-size: .97rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border-lt);
  transition: color var(--dur);
}
.mobile-menu a:hover { color: var(--brand); }
.mobile-cta { margin-top: 16px; }
.mobile-cta a {
  display: flex;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  letter-spacing: .05em;
}

/* ── 8. Page Hero (sub-pages) ─────────────────────────────── */
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8f4ee 0%, #ffffff 100%);
  padding: calc(var(--nav-h) + 72px) 0 92px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at top right, rgba(190,160,127,.16), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.32), transparent 56%);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.page-hero-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: .84rem;
  color: var(--text-light);
  margin-bottom: 20px;
}
.page-hero-breadcrumb a { color: var(--text-sub); transition: color var(--dur); }
.page-hero-breadcrumb a:hover { color: var(--brand); }
.page-hero-breadcrumb .sep { color: var(--border); }
.page-hero h1 {
  font-size: clamp(34px, 4vw, 46px);
  color: #7a5737;
  line-height: 1.28;
  letter-spacing: .04em;
  margin: 16px 0 16px;
}
.page-hero p {
  color: rgba(111,83,58,.88);
  max-width: 640px;
  font-size: clamp(16px,1.7vw,18px);
  line-height: 1.85;
  margin: 0 0 28px;
}

/* ── 9. Service Cards ─────────────────────────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
  counter-reset: svc;
}
.svc-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 32px 28px 28px;
  overflow: hidden;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur);
}
.svc-card::before {
  counter-increment: svc;
  content: counter(svc, decimal-leading-zero);
  position: absolute;
  top: 20px; right: 24px;
  font-family: 'Noto Serif TC', serif;
  font-size: .72rem;
  font-weight: 700;
  color: var(--oak-soft);
  letter-spacing: .08em;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--oak-soft);
}
.svc-chip {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--oak-deep);
  background: var(--gray);
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 16px;
}
.svc-card h3 {
  font-size: 1.08rem;
  color: var(--brand);
  margin-bottom: 12px;
  line-height: 1.4;
}
.svc-card p {
  font-size: .875rem;
  color: var(--text-sub);
  line-height: 1.85;
}

/* ── 10. Office Type Cards ────────────────────────────────── */
.otype-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.otype-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-xs);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur);
}
.otype-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.otype-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.otype-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.otype-card:hover .otype-img img { transform: scale(1.05); }
.otype-body { padding: 24px 26px 28px; }
.otype-tag {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--gray);
  color: var(--brand);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.otype-body h3 {
  font-size: 1.1rem;
  color: var(--brand);
  margin-bottom: 14px;
}
.otype-features {
  list-style: none;
  display: grid;
  gap: 9px;
  color: var(--text-sub);
}
.otype-features li {
  padding-left: 18px;
  position: relative;
  font-size: .875rem;
}
.otype-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--oak-deep);
  font-weight: 700;
}

/* Highlight box */
.highlight-box {
  background: linear-gradient(135deg, var(--gray) 0%, var(--gray-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.hl-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.highlight-box h3 {
  font-size: 1.05rem;
  color: var(--brand);
  margin-bottom: 8px;
}
.highlight-box p {
  font-size: .875rem;
  color: var(--text-sub);
  line-height: 1.85;
}

/* ── 11. Gallery & Lightbox ───────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xs);
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.36));
  display: flex;
  align-items: flex-end;
  padding: 16px 18px;
  color: #fff;
  font-size: .84rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity var(--dur);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

#lightbox {
  display: none;
  position: fixed; inset: 0;
  z-index: 999;
  background: rgba(18,14,10,.94);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: 92vw;
  max-height: 90vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: var(--shadow-lg);
}
#lb-close {
  position: absolute;
  top: 20px; right: 24px;
  color: rgba(255,255,255,.7);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: color var(--dur);
}
#lb-close:hover { color: var(--oak-soft); }

/* ── 12. Amenities Bar ────────────────────────────────────── */
.amenities-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.amenity {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: transform var(--dur), box-shadow var(--dur);
}
.amenity:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.amenity-ico { font-size: 1.5rem; margin-bottom: 9px; }
.amenity-lbl {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text);
}

/* ── 13. CTA Banner ───────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(140deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 48px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: var(--shadow-md);
}
.cta-banner h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #fff;
  margin-bottom: 8px;
}
.cta-banner p {
  color: rgba(255,255,255,.82);
  font-size: .96rem;
  max-width: 440px;
}
.cta-banner-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* Alert Banner */
.alert-banner {
  background: linear-gradient(135deg, #7B3F1E, #9B5528);
  padding: 18px 0;
}
.alert-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.alert-text { color: #fff; font-size: .92rem; line-height: 1.6; }
.alert-text strong { display: block; font-size: .98rem; margin-bottom: 2px; }

/* ── 14. News Cards ───────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
  transition: transform var(--dur), box-shadow var(--dur);
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.news-card-body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-tag {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 12px;
}
.tag-announce { background: #FDF0E2; color: #9E5F18; }
.tag-promo    { background: #E8F4EA; color: #2D7A3A; }
.tag-event    { background: #E8EFF8; color: #2855A0; }
.news-date {
  font-size: .8rem;
  color: var(--oak-deep);
  font-weight: 700;
  margin-bottom: 8px;
}
.news-card h3 {
  font-size: 1.05rem;
  color: var(--brand);
  margin-bottom: 10px;
  line-height: 1.45;
}
.news-card p {
  font-size: .875rem;
  color: var(--text-sub);
  line-height: 1.85;
  flex: 1;
}
.readmore {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  font-size: .84rem;
  font-weight: 700;
  color: var(--oak-deep);
  transition: color var(--dur), gap var(--dur);
}
.readmore:hover { color: var(--brand); gap: 8px; }

/* Pinned banner */
.pinned-banner {
  background: linear-gradient(135deg, #7B3F1E, #9B5528);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.pinned-ico { font-size: 2rem; flex-shrink: 0; }
.pinned-text { flex: 1; min-width: 200px; }
.pinned-text h3 { font-size: 1.05rem; color: #fff; margin-bottom: 6px; }
.pinned-text p  { font-size: .875rem; color: rgba(255,255,255,.8); line-height: 1.7; }

/* ── 15. FAQ Accordion ────────────────────────────────────── */
.faq-list { display: grid; gap: 12px; margin-top: 32px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--dur);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: 'Noto Sans TC', sans-serif;
  font-size: .96rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: background var(--dur), color var(--dur);
}
.faq-q:hover { background: var(--gray); }
.faq-q.open  { background: var(--gray); color: var(--brand); }
.faq-icon {
  font-size: 1.2rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform .3s var(--ease);
  color: var(--oak);
}
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s var(--ease);
}
.faq-a.open { max-height: 500px; }
.faq-a-inner {
  padding: 4px 24px 22px;
  font-size: .9rem;
  color: var(--text-sub);
  line-height: 1.9;
  border-top: 1px solid var(--border-lt);
  padding-top: 18px;
}

/* ── 16. Contact Form ─────────────────────────────────────── */
.form-box {
  background: var(--gray);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  border: 1px solid var(--border);
}
.form-box h3 {
  font-size: 1.3rem;
  color: var(--brand);
  margin-bottom: 28px;
}
.f-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.f-group label {
  font-size: .84rem;
  font-weight: 700;
  color: var(--text);
}
.f-group label .req { color: var(--oak-deep); margin-left: 2px; }
input, textarea, select {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-family: 'Noto Sans TC', sans-serif;
  font-size: .93rem;
  outline: none;
  transition: border-color var(--dur), box-shadow var(--dur);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--oak);
  box-shadow: 0 0 0 3px rgba(201,169,110,.18);
}
textarea { min-height: 130px; resize: vertical; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
  width: 100%;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: .97rem;
  font-weight: 700;
  letter-spacing: .05em;
  box-shadow: 0 8px 22px rgba(107,79,58,.2);
  transition: background var(--dur), transform var(--dur), box-shadow var(--dur);
  margin-top: 4px;
}
.btn-submit:hover {
  background: var(--brand-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(107,79,58,.26);
}
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success .s-ico { font-size: 2.8rem; margin-bottom: 14px; }
.form-success h4 { font-size: 1.2rem; color: var(--brand); margin-bottom: 8px; }
.form-success p  { font-size: .9rem; color: var(--text-sub); }

/* ── 17. Contact Info ─────────────────────────────────────── */
.c-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-lt);
}
.c-item:last-child { border-bottom: none; }
.c-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gray);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--brand);
}
.c-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--oak-deep);
  margin-bottom: 5px;
}
.c-value {
  font-size: .92rem;
  color: var(--text);
  line-height: 1.7;
}
.c-value a { color: var(--brand); transition: color var(--dur); }
.c-value a:hover { color: var(--oak-deep); }
.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  margin-top: 4px;
}
.h-day { font-size: .87rem; font-weight: 700; color: var(--text); }
.h-time { font-size: .87rem; color: var(--text-sub); }
.h-off  { font-size: .87rem; color: var(--text-light); }
.social-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}
.soc-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: grid;
  place-items: center;
  color: var(--brand);
  transition: background var(--dur), border-color var(--dur), transform var(--dur);
}
.soc-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}
.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--brand);
  font-size: .88rem;
  font-weight: 700;
  box-shadow: var(--shadow-xs);
  transition: all var(--dur);
  margin-top: 18px;
}
.map-btn:hover {
  border-color: var(--oak);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

/* Map placeholder */
.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}
.map-placeholder iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

/* ── 18. Stats row ────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-xs);
}
.stat-num {
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--oak-deep);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl {
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-sub);
}

/* ── 19. Process Steps ────────────────────────────────────── */
.proc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.proc-step {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
}
.proc-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--oak), var(--oak-deep));
  color: #fff;
  font-family: 'Noto Serif TC', serif;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 16px rgba(158,120,72,.3);
}
.proc-step h3 { font-size: 1rem; color: var(--brand); margin-bottom: 10px; }
.proc-step p  { font-size: .87rem; color: var(--text-sub); line-height: 1.85; }

/* ── 20. Footer ───────────────────────────────────────────── */
footer {
  background: var(--gray);
  border-top: 1px solid var(--border);
  padding: 72px 0 28px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.f-brand-name {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.3rem;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 4px;
}
.f-brand-en {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .18em;
  color: var(--brand);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.f-brand-desc {
  font-size: .875rem;
  color: var(--text-sub);
  line-height: 1.85;
  max-width: 30ch;
}
.f-col h4 {
  font-size: .84rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: .02em;
}
.f-col ul { display: grid; gap: 10px; }
.f-col li, .f-col a {
  font-size: .875rem;
  color: var(--text-sub);
  transition: color var(--dur);
}
.f-col a:hover { color: var(--brand); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-size: .8rem;
  color: var(--text-light);
}
.footer-soc { display: flex; align-items: center; gap: 10px; }
.footer-soc a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  display: grid;
  place-items: center;
  color: var(--brand);
  transition: all var(--dur);
}
.footer-soc a:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}

/* ── 21. Scroll-top button ────────────────────────────────── */
#scrollTop {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 8px 22px rgba(107,79,58,.3);
  opacity: 0;
  pointer-events: none;
  z-index: 200;
  transition: opacity var(--dur), transform var(--dur);
}
#scrollTop.show { opacity: 1; pointer-events: auto; }
#scrollTop:hover { transform: translateY(-3px); }

/* ── 22. About layout ─────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.about-img-wrap:hover img { transform: scale(1.03); }
.about-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(255,255,255,.97);
  border-radius: var(--radius);
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}
.about-badge .b-ico { font-size: 1.3rem; }
.about-badge strong { display: block; font-size: .82rem; color: var(--brand); font-weight: 700; }
.about-badge span   { font-size: .72rem; color: var(--text-sub); }
.about-vals { display: flex; flex-direction: column; gap: 22px; margin-top: 32px; }
.about-val  { display: flex; gap: 16px; align-items: flex-start; }
.av-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  background: var(--gray);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-top: 2px;
}
.about-val h4 { font-size: .95rem; color: var(--brand); margin-bottom: 4px; }
.about-val p  { font-size: .87rem; color: var(--text-sub); line-height: 1.82; }

/* ── 23. Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .amenities-bar { grid-template-columns: repeat(4, 1fr); }
  .news-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 72px;
    --section-py: 68px;
  }
  .container { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .page-hero { padding: calc(var(--nav-h) + 40px) 0 60px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .svc-grid  { grid-template-columns: 1fr 1fr; gap: 16px; }
  .otype-grid { grid-template-columns: 1fr; gap: 18px; }
  .proc-grid { grid-template-columns: 1fr; gap: 16px; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .amenities-bar { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px;
    border-radius: var(--radius-lg);
  }
  .cta-banner-btns { flex-direction: column; width: 100%; }
  .cta-banner-btns .btn { width: 100%; justify-content: center; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .f-row { grid-template-columns: 1fr; }
  .form-box { padding: 24px 20px; }
  .pinned-banner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  :root { --section-py: 56px; }
  .svc-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .amenities-bar { grid-template-columns: repeat(2, 1fr); }
  .page-hero h1 { font-size: 2.2rem; }
}

/* ── Liquid Glass Elements ────────────────────────────────── */
.glass {
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 8px 32px rgba(46,42,38,.10), inset 0 1px 0 rgba(255,255,255,.8);
}
.glass-dark {
  background: rgba(46,38,30,.42);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 8px 32px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.1);
}
.glass-warm {
  background: rgba(253,248,240,.62);
  backdrop-filter: blur(14px) saturate(1.5);
  -webkit-backdrop-filter: blur(14px) saturate(1.5);
  border: 1px solid rgba(232,217,190,.55);
  box-shadow: 0 6px 24px rgba(107,79,58,.08), inset 0 1px 0 rgba(255,252,246,.9);
}

/* Liquid glass nav upgrade */
#nav {
  background: rgba(255,255,255,.82) !important;
  backdrop-filter: blur(22px) saturate(1.8) !important;
  -webkit-backdrop-filter: blur(22px) saturate(1.8) !important;
  border-bottom: 1px solid rgba(232,225,215,.6) !important;
}
#nav.scrolled {
  background: rgba(255,255,255,.92) !important;
  box-shadow: 0 4px 24px rgba(46,42,38,.08), inset 0 -1px 0 rgba(232,217,190,.4) !important;
}

/* Glass card variant */
.glass-card {
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(14px) saturate(1.5);
  -webkit-backdrop-filter: blur(14px) saturate(1.5);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 28px rgba(46,42,38,.09), inset 0 1px 0 rgba(255,255,255,.9);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur);
}
.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(46,42,38,.13), inset 0 1px 0 rgba(255,255,255,.95);
}

/* Stat card glass */
.stat-card {
  background: rgba(255,255,255,.68) !important;
  backdrop-filter: blur(12px) saturate(1.4) !important;
  -webkit-backdrop-filter: blur(12px) saturate(1.4) !important;
  border: 1px solid rgba(255,255,255,.75) !important;
}

/* About badge glass */
.about-badge {
  background: rgba(255,255,255,.88) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255,255,255,.7) !important;
  box-shadow: 0 8px 24px rgba(46,42,38,.12) !important;
}

/* Pill/chip glass */
.hero-chip, .eyebrow-pill {
  backdrop-filter: blur(10px) saturate(1.3) !important;
  -webkit-backdrop-filter: blur(10px) saturate(1.3) !important;
}

/* Amenity card glass */
.amenity {
  background: rgba(255,255,255,.72) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255,255,255,.8) !important;
}

/* Mobile menu glass */
.mobile-menu {
  background: rgba(255,255,255,.92) !important;
  backdrop-filter: blur(20px) saturate(1.6) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.6) !important;
}

/* Liquid highlight box */
.highlight-box {
  background: linear-gradient(135deg, rgba(253,248,240,.85) 0%, rgba(240,230,215,.7) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(232,217,190,.6);
  box-shadow: 0 4px 20px rgba(107,79,58,.07), inset 0 1px 0 rgba(255,252,246,.85);
}

/* Liquid CTA banner */
.cta-banner {
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 55%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,.12) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero .eyebrow { color:#b08a5a; }
