:root {
  --bg: #f6f1ea;
  --surface: #fffaf4;
  --surface-2: #efe7dd;
  --text: #1f1d1a;
  --muted: #6f6a63;
  --line: #d8cdc1;
  --primary: #12332b;
  --primary-2: #1c4f43;
  --accent: #c6a56b;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(18, 51, 43, 0.08);
  --radius: 20px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  background: var(--primary);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 999;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(246, 241, 234, 0.88);
  border-bottom: 1px solid rgba(31, 29, 26, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 4px;
}

.brand-logo {
  width: 54px;
  height: 54px;
  color: var(--primary);
}

.logo-ring,
.logo-line,
.smoke-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-ring {
  stroke: rgba(18, 51, 43, 0.18);
  stroke-width: 4;
}

.logo-line {
  stroke: var(--primary);
  stroke-width: 5;
}

.smoke-line {
  stroke: rgba(18, 51, 43, 0.45);
  stroke-width: 3;
}

.logo-fill {
  fill: var(--primary);
}

.site-nav {
  display: flex;
  gap: 22px;
}

.site-nav a {
  color: var(--muted);
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.hero {
  padding: 72px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  color: var(--primary-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.03;
  max-width: 10ch;
}

.hero-text {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 58ch;
  margin: 20px 0 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-2);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(18, 51, 43, 0.18);
}

.btn-secondary:hover {
  background: rgba(18, 51, 43, 0.05);
}

.hero-art {
  display: flex;
  justify-content: center;
}

.art-card {
  width: 100%;
  max-width: 460px;
  background: linear-gradient(180deg, var(--surface), #f1e8dd);
  border: 1px solid rgba(18, 51, 43, 0.08);
  border-radius: 32px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.art-caption {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hookah-illustration {
  position: relative;
  height: 360px;
}

.hookah-top,
.hookah-stem,
.hookah-base,
.hookah-hose {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.hookah-top {
  top: 76px;
  width: 86px;
  height: 20px;
  background: var(--accent);
  border-radius: 999px;
}

.hookah-stem {
  top: 96px;
  width: 14px;
  height: 124px;
  background: var(--primary);
  border-radius: 999px;
}

.hookah-base {
  top: 208px;
  width: 130px;
  height: 96px;
  background: linear-gradient(180deg, rgba(198,165,107,0.75), rgba(18,51,43,0.85));
  border-radius: 34px 34px 44px 44px;
}

.hookah-hose {
  top: 160px;
  width: 220px;
  height: 120px;
  border: 6px solid var(--primary);
  border-color: var(--primary) transparent transparent transparent;
  border-radius: 50%;
  transform: translateX(-6%);
}

.smoke {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(18, 51, 43, 0.18);
  border-color: rgba(18, 51, 43, 0.18) transparent transparent transparent;
  animation: floatSmoke 5s ease-in-out infinite;
}

.smoke-1 {
  top: 18px;
  left: 48%;
}

.smoke-2 {
  top: -8px;
  left: 56%;
  animation-delay: 1.2s;
}

.smoke-3 {
  top: 28px;
  left: 63%;
  animation-delay: 2.4s;
}

@keyframes floatSmoke {
  0%, 100% {
    transform: translateY(0) rotate(10deg);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-16px) rotate(16deg);
    opacity: 0.8;
  }
}

.section {
  padding: 72px 0;
}

.alt-section {
  background: rgba(255,255,255,0.45);
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2,
.intro-card h2,
.why-item h3,
.instagram-box h2,
.site-footer h3,
.site-footer h4 {
  margin: 0;
}

.intro-grid,
.topic-grid,
.article-grid,
.footer-grid {
  display: grid;
  gap: 20px;
}

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

.intro-card,
.topic-card,
.article-card,
.faq-item,
.instagram-box {
  background: var(--surface);
  border: 1px solid rgba(18, 51, 43, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.intro-card,
.topic-card,
.article-card {
  padding: 24px;
}

.intro-card p,
.topic-card p,
.article-card p,
.why-item p,
.instagram-box p,
.site-footer p,
.faq-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.topic-grid {
  grid-template-columns: repeat(4, 1fr);
}

.topic-number {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--primary-2);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

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

.tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(18, 51, 43, 0.08);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
}

.article-card a {
  display: inline-block;
  margin-top: 18px;
  color: var(--primary);
  font-weight: 700;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.why-grid h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  max-width: 12ch;
}

.why-points {
  display: grid;
  gap: 22px;
}

.why-item {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 20px 22px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-item p {
  margin-top: 12px;
}

.instagram-box {
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid rgba(18, 51, 43, 0.08);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.7fr 1fr;
  align-items: start;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a {
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--primary);
}

@media (max-width: 960px) {
  .hero-grid,
  .why-grid,
  .intro-grid,
  .topic-grid,
  .article-grid,
  .footer-grid,
  .instagram-box {
    grid-template-columns: 1fr;
  }

  .instagram-box {
    display: grid;
  }

  .hero h1,
  .why-grid h2 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    background: var(--surface);
    border: 1px solid rgba(18, 51, 43, 0.08);
    border-radius: 18px;
    padding: 12px;
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 10px;
  }

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

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    padding-top: 40px;
  }

  .section {
    padding: 56px 0;
  }

  .art-card {
    padding: 22px;
  }

  .hookah-illustration {
    height: 300px;
  }

  .hookah-top {
    top: 60px;
  }

  .hookah-stem {
    top: 80px;
    height: 108px;
  }

  .hookah-base {
    top: 182px;
  }
}
.brand img,
.brand-logo-img {
  width: 54px; !important;
  height: 54px;!important;
  object-fit: cover; !important;
  border-radius: 50%; !important;
  display: block; !important;
}
.page-hero {
  padding: 72px 0 24px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
}
.article-hero .hero-text {
  max-width: 70ch;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.article-layout-section {
  padding-top: 32px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.article-content {
  background: var(--surface);
  border: 1px solid rgba(18, 51, 43, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}

.article-content h2 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.5rem;
}

.article-content p {
  color: var(--muted);
  margin: 0 0 16px;
}

.article-block + .article-block {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.article-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.article-list li + li {
  margin-top: 10px;
}

.article-list-numbered {
  padding-left: 22px;
}

.article-note {
  background: rgba(18, 51, 43, 0.04);
  border-radius: 16px;
  padding: 24px;
}

.article-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 110px;
}

.sidebar-card {
  background: var(--surface);
  border: 1px solid rgba(18, 51, 43, 0.08);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.sidebar-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.sidebar-card p,
.sidebar-card li,
.sidebar-card a {
  color: var(--muted);
}

.sidebar-card a:hover {
  color: var(--primary);
}

@media (max-width: 960px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .article-content {
    padding: 24px;
  }
}
