/* 時光冰室 — 品牌視覺（對應 HappyHour_Logo） */

:root {
  --hh-slate: #434c5e;
  --hh-slate-deep: #363e4d;
  --hh-yellow: #f5c518;
  --hh-yellow-soft: #ffe566;
  --hh-red: #d62828;
  --hh-blue: #1d4e89;
  --hh-bg: #f4f1ea;
  --hh-bg-panel: #ebe6dc;
  --hh-text: #2a2420;
  --hh-text-muted: #5c5650;
  --hh-text-on-dark: rgba(255, 255, 255, 0.88);
  --hh-border: #d9d2c6;
  --hh-serif: "Noto Serif TC", "Noto Sans TC", serif;
  --hh-sans: "Noto Sans TC", sans-serif;
  --hh-header: 76px;
  --hh-radius: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body.hh-body {
  font-family: var(--hh-sans);
  background: var(--hh-bg);
  color: var(--hh-text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--hh-blue);
  text-decoration: none;
}

a:hover {
  color: var(--hh-red);
}

.hh-container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hh-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hh-red);
  margin-bottom: 0.5rem;
}

.hh-title {
  font-family: var(--hh-serif);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--hh-slate);
  line-height: 1.25;
}

.hh-title--light {
  color: var(--hh-yellow);
}

/* Header */
.hh-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--hh-header);
  background: var(--hh-slate);
  border-bottom: 3px solid var(--hh-yellow);
  z-index: 100;
}

.hh-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.hh-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}

.hh-logo__img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

.hh-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}

.hh-logo__main {
  font-family: var(--hh-serif);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--hh-yellow);
  white-space: nowrap;
}

.hh-logo__sub {
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.hh-nav {
  display: flex;
  gap: 1.25rem;
  list-style: none;
}

.hh-nav a {
  font-size: 0.8125rem;
  color: var(--hh-text-on-dark);
  font-weight: 500;
}

.hh-nav a:hover {
  color: var(--hh-yellow);
}

.hh-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hh-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--hh-yellow);
  margin: 5px 0;
}

/* Stripe banner */
.hh-stripe {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding: 0.65rem 1rem;
  background: repeating-linear-gradient(
    90deg,
    var(--hh-red) 0,
    var(--hh-red) 28px,
    var(--hh-blue) 28px,
    var(--hh-blue) 56px
  );
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.hh-stripe span {
  background: rgba(0, 0, 0, 0.2);
  padding: 0.2rem 0.65rem;
  border-radius: 2px;
}

.hh-stripe--footer {
  margin-bottom: 1.5rem;
}

/* Hero */
.hh-hero {
  padding-top: var(--hh-header);
  background: var(--hh-slate);
  color: #fff;
}

.hh-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 0 2rem;
}

.hh-hero__logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hh-hero__logo {
  display: block;
  width: min(100%, 360px);
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25));
}

.hh-hero__text-logo {
  text-align: center;
}

.hh-hero__text-logo-main {
  display: block;
  font-family: var(--hh-serif);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 2.75rem);
  color: var(--hh-yellow);
  line-height: 1.1;
}

.hh-hero__text-logo-en {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.35rem;
}

.hh-hero__text-logo-tag {
  display: block;
  font-family: var(--hh-serif);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--hh-yellow-soft);
  margin-top: 0.5rem;
}

.hh-hero__copy {
  text-align: left;
}

.hh-hero__tag {
  font-family: var(--hh-serif);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--hh-yellow);
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.hh-hero__en {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  color: var(--hh-yellow-soft);
  opacity: 0.85;
  margin-bottom: 1.25rem;
}

.hh-hero__lead {
  font-size: 0.9375rem;
  color: var(--hh-text-on-dark);
  margin-bottom: 1.5rem;
  max-width: 26rem;
}

.hh-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hh-btn {
  display: inline-block;
  padding: 0.65rem 1.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--hh-radius);
  transition: transform 0.15s, background 0.2s, color 0.2s;
}

.hh-btn:hover {
  transform: translateY(-1px);
}

.hh-btn--primary {
  background: var(--hh-yellow);
  color: var(--hh-slate-deep);
}

.hh-btn--primary:hover {
  background: var(--hh-yellow-soft);
  color: var(--hh-slate-deep);
}

.hh-btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.hh-btn--ghost:hover {
  border-color: var(--hh-yellow);
  color: var(--hh-yellow);
}

/* Sections */
.hh-section {
  padding: 4rem 0;
}

.hh-section--panel {
  background: var(--hh-bg-panel);
  border-top: 1px solid var(--hh-border);
  border-bottom: 1px solid var(--hh-border);
}

.hh-section__head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.hh-section__head h2 {
  font-family: var(--hh-serif);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--hh-slate);
  margin-bottom: 0.35rem;
}

.hh-section__head p {
  color: var(--hh-text-muted);
  font-size: 0.9375rem;
}

/* Story */
.hh-story {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 2rem;
  align-items: start;
}

.hh-story__highlight {
  font-family: var(--hh-serif);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--hh-red);
  margin-bottom: 1rem;
}

.hh-story__main p {
  color: var(--hh-text-muted);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.hh-quote {
  background: var(--hh-slate);
  color: var(--hh-yellow);
  padding: 1.25rem 1.5rem;
  border-radius: var(--hh-radius);
  margin-bottom: 1.25rem;
  border-left: 4px solid var(--hh-yellow);
}

.hh-quote p {
  font-family: var(--hh-serif);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.55;
}

.hh-story__meta {
  font-size: 0.8125rem;
  color: var(--hh-text-muted);
}

/* —— 招牌餐飲 —— */
.hh-section--menu {
  padding: 0 0 4rem;
  background: var(--hh-bg);
}

.hh-menu-intro {
  background: var(--hh-slate);
  color: #fff;
  text-align: center;
  padding: 2.75rem 0 2.25rem;
  margin-bottom: 2.5rem;
  border-bottom: 4px solid var(--hh-yellow);
}

.hh-menu-intro .hh-label {
  color: var(--hh-yellow-soft);
}

.hh-menu-intro .hh-title {
  color: var(--hh-yellow);
  margin-bottom: 0.35rem;
}

.hh-menu-intro__sub {
  font-size: 0.9375rem;
  color: var(--hh-text-on-dark);
}

.hh-menu-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.hh-menu-panel {
  background: #fff;
  border: 1px solid var(--hh-border);
  border-radius: var(--hh-radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(67, 76, 94, 0.07);
}

.hh-menu-panel__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  background: linear-gradient(135deg, var(--hh-slate) 0%, var(--hh-slate-deep) 100%);
  color: #fff;
}

.hh-menu-panel--food .hh-menu-panel__head {
  background: linear-gradient(135deg, #5c3d2e 0%, #3d2819 100%);
}

.hh-menu-panel__mark {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--hh-serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--hh-slate-deep);
  background: var(--hh-yellow);
  border-radius: 50%;
}

.hh-menu-panel__mark--food {
  color: #3d2819;
  background: #ffcba4;
}

.hh-menu-panel__title {
  font-family: var(--hh-serif);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--hh-yellow);
  line-height: 1.2;
}

.hh-menu-panel__sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.15rem;
}

.hh-menu-list {
  list-style: none;
  padding: 0.5rem 0;
}

.hh-menu-item {
  padding: 0.85rem 1.35rem;
  border-bottom: 1px dashed var(--hh-border);
  transition: background 0.15s;
}

.hh-menu-item:last-child {
  border-bottom: none;
}

.hh-menu-item:hover {
  background: rgba(245, 197, 24, 0.06);
}

.hh-menu-item--star {
  background: linear-gradient(90deg, rgba(245, 197, 24, 0.12) 0%, transparent 100%);
}

.hh-menu-item--more {
  background: var(--hh-bg-panel);
}

.hh-menu-item__row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.15rem;
}

.hh-menu-item__badge {
  flex-shrink: 0;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hh-slate-deep);
  background: var(--hh-yellow);
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
}

.hh-menu-item__name {
  display: block;
  font-family: var(--hh-serif);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--hh-text);
}

.hh-menu-item__desc {
  font-size: 0.8125rem;
  color: var(--hh-text-muted);
  line-height: 1.45;
  padding-left: 0;
}

.hh-menu-item--star .hh-menu-item__desc {
  padding-left: 0;
}

.hh-menu-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--hh-text-muted);
}

/* —— 24H 售賣機 —— */
.hh-section--vending {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--hh-bg-panel) 0%, var(--hh-bg) 100%);
}

.hh-vending-card {
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: 0;
  background: var(--hh-slate-deep);
  border-radius: var(--hh-radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(54, 62, 77, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hh-vending-card__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(160deg, #2a3140 0%, #1e2430 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.hh-vending-machine {
  width: 160px;
  background: linear-gradient(180deg, #5a6478 0%, #434c5e 100%);
  border-radius: 10px;
  padding: 10px;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.15),
    0 8px 24px rgba(0, 0, 0, 0.35);
}

.hh-vending-machine__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding: 0 2px;
}

.hh-vending-machine__brand {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--hh-yellow);
}

.hh-vending-machine__clock {
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--hh-slate-deep);
  background: var(--hh-yellow);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  animation: hh-pulse 2.5s ease-in-out infinite;
}

@keyframes hh-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; }
}

.hh-vending-machine__window {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 6px;
  padding: 10px;
  margin-bottom: 8px;
  min-height: 100px;
}

.hh-vending-machine__slot {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hh-vending-machine__panel {
  height: 28px;
  background: #2a3140;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  position: relative;
}

.hh-vending-machine__panel::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--hh-red);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--hh-red);
}

.hh-vending-card__caption {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.08em;
}

.hh-vending-card__body {
  padding: 2rem 2.25rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hh-vending-card__body .hh-label {
  color: var(--hh-yellow-soft);
}

.hh-vending-card__lead {
  font-size: 0.9375rem;
  color: var(--hh-text-on-dark);
  margin: 0.75rem 0 1.25rem;
  line-height: 1.7;
}

.hh-vending-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hh-vending-list li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  padding-left: 1.1rem;
  position: relative;
}

.hh-vending-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--hh-yellow);
  border-radius: 50%;
}

.hh-vending-list strong {
  color: var(--hh-yellow);
  font-weight: 600;
}

/* Info */
.hh-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.hh-info-card {
  background: #fff;
  border: 1px solid var(--hh-border);
  padding: 1.1rem;
  border-radius: var(--hh-radius);
}

.hh-info-card__label {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hh-text-muted);
  margin-bottom: 0.3rem;
}

.hh-info-card__value {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.45;
}

.hh-info-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--hh-text-muted);
}

/* Map */
.hh-map {
  border: 2px solid var(--hh-slate);
  overflow: hidden;
  border-radius: var(--hh-radius);
}

.hh-map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* Footer */
.hh-footer {
  padding: 0 0 2rem;
  background: var(--hh-slate-deep);
  color: var(--hh-text-on-dark);
}

.hh-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding: 1.75rem 0 1rem;
}

.hh-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.hh-footer__logo {
  height: 56px;
  width: auto;
  max-width: 56px;
  object-fit: contain;
  opacity: 0.95;
  flex-shrink: 0;
}

.hh-footer__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hh-footer__name {
  font-family: var(--hh-serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--hh-yellow);
}

.hh-footer__tagline {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}

.hh-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.875rem;
  text-align: right;
}

.hh-footer__links a {
  color: var(--hh-yellow-soft);
}

.hh-footer__links a:hover {
  color: var(--hh-yellow);
}

.hh-footer__addr {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8125rem;
}

.hh-footer__parent {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.hh-footer__parent a {
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 900px) {
  .hh-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 1.5rem;
  }

  .hh-hero__copy {
    text-align: center;
  }

  .hh-hero__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hh-hero__actions {
    justify-content: center;
  }

  .hh-story {
    grid-template-columns: 1fr;
  }

  .hh-menu-board {
    grid-template-columns: 1fr;
  }

  .hh-vending-card {
    grid-template-columns: 1fr;
  }

  .hh-vending-card__visual {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.75rem 1rem;
  }

  .hh-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hh-footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .hh-footer__links {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hh-nav-toggle {
    display: block;
  }

  .hh-nav {
    position: fixed;
    top: var(--hh-header);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--hh-slate-deep);
    border-bottom: 3px solid var(--hh-yellow);
    padding: 0.75rem 1.5rem 1rem;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
  }

  .hh-nav--open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .hh-nav li {
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hh-info-grid {
    grid-template-columns: 1fr;
  }

  .hh-logo__sub {
    display: none;
  }

  .hh-logo__img {
    height: 40px;
    max-width: 44px;
  }

  .hh-vending-card__body {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hh-stripe {
    gap: 0.5rem 1rem;
    font-size: 0.6875rem;
  }
}
