/* ===== 宇康復健科診所 U-Kan Rehabilitation Clinic ===== */

:root {
  --dark: #0f2f33;
  --brand: #147a82;
  --brand-dark: #0e5b61;
  --brand-light: #e5f4f3;
  --mint: #f4faf9;
  --cream: #fbfdfc;
  --text: #2c3e3f;
  --muted: #5f7476;
  --accent: #ef7d3c;
  --accent-dark: #d9631f;
  --shadow: 0 10px 30px rgba(15, 47, 51, 0.1);
  --radius: 14px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
}

body {
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.8;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Noto Serif TC", "Microsoft JhengHei", serif;
  color: var(--dark);
  line-height: 1.4;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-label {
  display: inline-block;
  color: var(--brand);
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 18px;
  text-wrap: balance;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.divider {
  width: 56px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 20px;
  border-radius: 2px;
}

/* ===== Reveal on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-grid .reveal:nth-child(4n+2) { transition-delay: 0.08s; }
.service-grid .reveal:nth-child(4n+3) { transition-delay: 0.16s; }
.service-grid .reveal:nth-child(4n+4) { transition-delay: 0.24s; }

.philosophy-list .reveal:nth-child(2) { transition-delay: 0.1s; }
.philosophy-list .reveal:nth-child(3) { transition-delay: 0.2s; }

.review-grid .reveal:nth-child(2n) { transition-delay: 0.12s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 12px 26px rgba(217, 99, 31, 0.35);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-call {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 22px rgba(20, 122, 130, 0.3);
}

.btn-call:hover {
  background: var(--brand-dark);
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(251, 253, 252, 0.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 18px rgba(15, 47, 51, 0.08);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-text {
  font-family: "Noto Serif TC", serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--brand-dark);
}

.nav-logo-text em {
  font-style: normal;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  margin-left: 4px;
}

.nav-links {
  display: flex;
  gap: 26px;
}

.nav-links a {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

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

.nav-cta .btn {
  padding: 10px 20px;
  font-size: 0.88rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  height: calc(100% - 64px);
  overflow-y: auto;
  background: var(--cream);
  box-shadow: 0 12px 20px rgba(15, 47, 51, 0.1);
  padding: 20px 24px 30px;
  z-index: 998;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu > a {
  display: block;
  padding: 14px 0;
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
  border-bottom: 1px solid rgba(15, 47, 51, 0.08);
}

.mobile-menu-actions {
  margin-top: 24px;
}

.btn-call-block {
  width: 100%;
  justify-content: center;
  padding: 16px 14px;
  font-size: 1rem;
}

/* ===== Notice Bar ===== */
.notice-bar {
  margin-top: 64px;
  background: #0d0d0d;
  color: #ff3b3b;
}

.notice-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  color: #ff3b3b;
  cursor: pointer;
  padding: 16px 16px 11px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.88rem;
}

.notice-marquee {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

.notice-marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: noticeMarquee 12s linear infinite;
}

.notice-marquee-track span {
  padding-right: 60px;
}

@keyframes noticeMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .notice-marquee-track {
    animation: none;
  }

  .notice-marquee-track span:last-child {
    display: none;
  }
}

/* ===== Notice Modal ===== */
.notice-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1300;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.notice-modal.open {
  display: flex;
}

.notice-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 20, 22, 0.6);
}

.notice-modal-box {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  padding: 34px 26px 28px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  text-align: center;
}

.notice-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 47, 51, 0.08);
  color: var(--dark);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notice-modal-title {
  font-size: 1.15rem;
  margin-bottom: 18px;
}

.notice-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.notice-tab {
  border: 1px solid rgba(15, 47, 51, 0.18);
  background: #fff;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.notice-tab.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.notice-images {
  max-width: 480px;
  margin: 0 auto;
}

.notice-image {
  display: none;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.notice-image.is-active {
  display: block;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url("../images/banner.jpg") center 35%/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  padding: 140px 24px 80px;
  color: #fff;
}

.hero-glass {
  max-width: 580px;
  background: rgba(15, 47, 51, 0.22);
  backdrop-filter: blur(7px) saturate(110%);
  -webkit-backdrop-filter: blur(7px) saturate(110%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 32px 36px;
  box-shadow: 0 16px 40px rgba(6, 20, 22, 0.25);
}

.hero-eyebrow {
  color: #ffb37e;
  letter-spacing: 0.25em;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 24px;
  max-width: 720px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.hero p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 36px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-actions .btn {
  padding: 12px 24px;
  font-size: 0.9rem;
}

/* ===== About ===== */
.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: stretch;
}

.about-text p {
  margin-bottom: 18px;
  color: var(--muted);
}

.about-text p:first-of-type {
  font-size: 1.06rem;
  color: var(--text);
}

.about-badges {
  display: flex;
  gap: 30px;
  margin-top: 34px;
  flex-wrap: wrap;
  align-items: center;
}

.about-badges div {
  text-align: left;
}

.badge-text {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-dark);
  background: var(--brand-light);
  padding: 10px 16px;
  border-radius: 10px;
  line-height: 1.5;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Services ===== */
.services {
  background: var(--brand-light);
  position: relative;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 22px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 3px solid transparent;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-6px);
  border-top-color: var(--accent);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: #fff;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
}

.service-card h3 {
  font-size: 1.02rem;
}

/* ===== Philosophy ===== */
.philosophy {
  background: var(--brand-light);
}

.philosophy-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.philosophy-quote-card {
  position: relative;
  background: #fff;
  border-left: 6px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 46px 44px;
  overflow: hidden;
}

.quote-mark {
  position: absolute;
  top: -20px;
  right: 20px;
  font-family: "Noto Serif TC", serif;
  font-size: 8rem;
  font-weight: 900;
  color: var(--brand-light);
  line-height: 1;
  z-index: 0;
  user-select: none;
}

.philosophy-quote-card .section-label,
.philosophy-quote-card .section-title,
.philosophy-quote {
  position: relative;
  z-index: 1;
}

.philosophy-quote-card .section-title {
  margin-bottom: 22px;
}

.philosophy-quote {
  font-family: "Noto Serif TC", serif;
  font-size: 1.3rem;
  color: var(--brand-dark);
  line-height: 1.8;
  text-wrap: balance;
}

.philosophy-list {
  display: flex;
  flex-direction: column;
}

.philosophy-item {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(15, 47, 51, 0.12);
}

.philosophy-item:first-child {
  padding-top: 0;
}

.philosophy-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.philosophy-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.philosophy-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
}

.philosophy-item h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.philosophy-item p {
  font-size: 0.92rem;
  color: var(--muted);
}

/* ===== Hours ===== */
.hours {
  background: var(--cream);
}

.hours-table {
  max-width: 780px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.hours-row {
  display: grid;
  grid-template-columns: 90px 1fr 1fr;
  align-items: center;
}

.hours-row:not(:last-child) {
  border-bottom: 1px solid rgba(15, 47, 51, 0.08);
}

.hours-head {
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 14px 0;
}

.hours-head .hours-slot {
  text-align: center;
  letter-spacing: 0.03em;
}

.hours-day {
  font-family: "Noto Serif TC", serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
  padding: 18px 8px;
  color: var(--dark);
}

.hours-head .hours-day {
  color: #fff;
}

.hours-cell {
  text-align: center;
  padding: 18px 12px;
  font-size: 0.95rem;
  font-weight: 700;
  border-left: 1px solid rgba(15, 47, 51, 0.08);
}

.hours-cell.is-open {
  color: var(--brand-dark);
}

.hours-cell.is-open::before {
  content: "●";
  color: var(--accent);
  font-size: 0.6rem;
  margin-right: 6px;
  vertical-align: middle;
}

.hours-cell.is-closed {
  color: #a9b6b7;
  font-weight: 500;
}

.hours-cell span {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 2px;
}

.hours-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--muted);
}

.hours-secondary {
  max-width: 780px;
  margin: 40px auto 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 36px;
}

.hours-secondary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hours-secondary-head h3 {
  font-size: 1.1rem;
}

.hours-secondary-label {
  color: var(--brand);
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.hours-secondary-label-standalone {
  text-align: center;
  margin: 32px 0 0;
}

.hours-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-dark);
  background: rgba(239, 125, 60, 0.12);
  padding: 6px 14px;
  border-radius: 100px;
}

.hours-secondary-list {
  display: flex;
  flex-direction: column;
}

.hours-secondary-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.hours-secondary-row:not(:last-child) {
  border-bottom: 1px solid rgba(15, 47, 51, 0.1);
}

.hours-secondary-day {
  font-weight: 700;
  color: var(--dark);
}

.hours-secondary-time {
  font-weight: 700;
  color: var(--brand-dark);
  text-align: right;
}

.hours-secondary-time small {
  display: block;
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ===== Call CTA ===== */
.reserve {
  position: relative;
  background: url("../images/cta.jpg") center/cover;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
  padding: 100px 0;
}

@media (max-width: 760px) {
  .reserve {
    background-attachment: scroll;
    background-position: 38% center;
  }
}

.reserve-glass {
  display: inline-block;
  max-width: 600px;
  background: rgba(6, 20, 22, 0.42);
  backdrop-filter: blur(8px) saturate(110%);
  -webkit-backdrop-filter: blur(8px) saturate(110%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 32px 36px;
}

.reserve h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.reserve p {
  color: rgba(255,255,255,0.92);
  max-width: 560px;
  margin: 0 auto 34px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.reserve-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Gallery ===== */
.gallery {
  background: var(--cream);
}

.tour-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.tour-title {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: var(--dark);
}

.tour-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.tour-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== Reviews ===== */
.reviews {
  background: var(--dark);
  text-align: center;
}

.reviews .section-head {
  margin-bottom: 24px;
}

.reviews .section-label {
  color: #ffb37e;
}

.reviews .section-title {
  color: #fff;
}

.maps-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffb37e;
  font-weight: 700;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255, 179, 126, 0.4);
  padding-bottom: 3px;
  transition: opacity 0.2s ease;
}

.maps-link:hover {
  opacity: 0.75;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 50px;
  text-align: left;
}

.review-card {
  border: 1px solid rgba(220, 236, 236, 0.14);
  background: rgba(220, 236, 236, 0.03);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.avatar {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
}

.review-role {
  font-size: 0.78rem;
  color: rgba(220, 236, 236, 0.45);
}

.review-card .review-stars {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.9rem;
  line-height: 1.85;
  color: rgba(220, 236, 236, 0.7);
  white-space: pre-line;
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}

.review-card.is-expanded .review-text {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.review-toggle {
  display: none;
  align-self: flex-start;
  margin-top: 10px;
  padding: 0;
  background: none;
  border: none;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
}

.review-toggle:hover {
  text-decoration: underline;
}

/* ===== Footer ===== */
.footer {
  background: #0b2427;
  color: rgba(220, 236, 236, 0.8);
  padding-top: 80px;
  border-top: 1px solid rgba(239, 125, 60, 0.25);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(220, 236, 236, 0.14);
}

.footer-logo {
  display: inline-block;
  font-family: "Noto Serif TC", serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 18px;
}

.footer-logo em {
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  color: rgba(220, 236, 236, 0.8);
  margin-left: 4px;
}

.footer p {
  font-size: 0.92rem;
  margin-bottom: 10px;
}

.footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}

.footer-list a,
.footer-list span {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  margin-bottom: 14px;
  color: rgba(220, 236, 236, 0.8);
}

.footer-list a:hover {
  color: var(--accent);
}

.footer-list svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  margin-top: 2px;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  min-height: 220px;
  filter: grayscale(0.25) contrast(1.05);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 220px;
}

.footer-bottom {
  padding: 26px 0 34px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(220, 236, 236, 0.55);
}

/* ===== Floating CTA ===== */
.fab-group {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 950;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.fab-top {
  background: var(--dark);
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, box-shadow 0.2s ease;
}

.fab-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fab-top svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
}

.fab-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  animation: fabPulse 2.4s infinite;
}

.fab-accent svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(217, 99, 31, 0.35); }
  50% { box-shadow: 0 4px 20px rgba(217, 99, 31, 0.6); }
}

@media (max-width: 760px) {
  .fab-group {
    right: 18px;
    bottom: 18px;
    gap: 10px;
  }

  .fab {
    width: 48px;
    height: 48px;
  }
}

/* ===== Responsive ===== */
@media (max-width: 1080px) {
  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 0.85rem;
  }
}

@media (max-width: 1000px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

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

  .philosophy-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 72px 0;
  }

  .nav-links,
  .nav-cta .btn-call {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    background-position: 35% center;
  }

  .hero-content {
    padding: 100px 16px 56px;
  }

  .hero-glass {
    padding: 22px 20px;
    border-radius: 16px;
  }

  .hero-eyebrow {
    font-size: 0.72rem;
    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: 1.9rem;
    margin-bottom: 14px;
  }

  .hero p {
    font-size: 1.08rem;
    margin-bottom: 20px;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-actions .btn {
    flex: 1 1 auto;
    padding: 10px 14px;
    font-size: 0.84rem;
    justify-content: center;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hours-row {
    grid-template-columns: 60px 1fr 1fr;
  }

  .hours-day {
    font-size: 0.92rem;
    padding: 14px 4px;
  }

  .hours-cell {
    font-size: 0.82rem;
    padding: 14px 8px;
  }

  .hours-head {
    font-size: 0.7rem;
  }

  .hours-secondary {
    padding: 22px 22px;
  }

  .hours-secondary-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .hours-secondary-time {
    text-align: left;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    text-align: left;
    width: fit-content;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .reserve-glass {
    padding: 22px 24px;
    border-radius: 14px;
  }

  .reserve h2 {
    margin-bottom: 10px;
  }

  .reserve p {
    margin: 0 0 20px;
    font-size: 0.92rem;
  }

  .reserve-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .reserve-actions .btn {
    flex: 1 1 auto;
    justify-content: center;
    padding: 11px 20px;
    font-size: 0.92rem;
  }
}
