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

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

:root {
  --ink: #0d0b0b;
  --ink-2: #151111;
  --ink-3: #211616;
  --card: rgba(255, 244, 223, 0.065);
  --card-2: rgba(255, 244, 223, 0.095);
  --cream: #fff4df;
  --soft: rgba(255, 244, 223, 0.76);
  --muted: rgba(255, 244, 223, 0.56);
  --red: #b31822;
  --red-2: #7d1018;
  --gold: #c59a54;
  --gold-2: #efd29a;
  --line: rgba(255, 244, 223, 0.14);
  --line-strong: rgba(239, 210, 154, 0.24);
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
  --radius: 28px;
}

body {
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  color: var(--cream);
  background:
    radial-gradient(circle at top left, rgba(179, 24, 34, 0.18), transparent 34%),
    radial-gradient(circle at right top, rgba(197, 154, 84, 0.11), transparent 32%),
    linear-gradient(135deg, var(--ink) 0%, #160d0c 48%, #080707 100%);
  line-height: 1.75;
  overflow-x: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.container {
  width: min(1220px, 88%);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 0;
  background: rgba(13, 11, 11, 0.82);
  background-image: none;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.site-header::before,
.site-header::after {
  display: none;
  content: none;
}

.nav {
  position: relative;
  z-index: 2;
  width: min(1220px, 88%);
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  font-weight: 900;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(239, 210, 154, 0.40);
  box-shadow: 0 0 28px rgba(197, 154, 84, 0.18);
  cursor: pointer;
}

.brand span {
  font-size: clamp(20px, 2vw, 30px);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: clamp(10px, 2vw, 30px);
  color: rgba(255, 244, 223, 0.86);
  font-weight: 900;
}

.nav-links a {
  position: relative;
  white-space: nowrap;
  transition: 0.25s ease;
}

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

.nav-links a:hover {
  color: var(--gold-2);
}

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

.nav-cta {
  padding: 9px 18px;
  border-radius: 999px;
  color: var(--cream);
  background: var(--red);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  pointer-events: none;
  cursor: zoom-in;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 7, 7, 0.96) 0%, rgba(8, 7, 7, 0.82) 34%, rgba(8, 7, 7, 0.55) 58%, rgba(8, 7, 7, 0.74) 100%),
    linear-gradient(0deg, rgba(8, 7, 7, 0.92) 0%, rgba(8, 7, 7, 0.24) 42%, rgba(8, 7, 7, 0.76) 100%);
  pointer-events: none;
}

.hero::after {
  content: "春蘭茶室";
  position: absolute;
  right: 5vw;
  bottom: 4vh;
  z-index: 1;
  writing-mode: vertical-rl;
  color: rgba(255, 244, 223, 0.13);
  font-size: clamp(96px, 16vw, 100px);
  font-weight: 900;
  letter-spacing: 0.08em;
  pointer-events: none;
}

.hero-content,
.hero-content-slider {
  position: relative;
  z-index: 2;
}

.hero-content {
  width: min(1220px, 88%);
  min-height: 100vh;
  margin: 0 auto;
  padding: 132px 0 82px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.85fr);
  gap: clamp(36px, 5vw, 78px);
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
  padding: 8px 15px;
  border: 1px solid rgba(205, 164, 94, 0.45);
  border-radius: 999px;
  color: #f3d08b;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.hero h1 {
  max-width: 760px;
  color: var(--cream);
  font-size: clamp(35px, 5vw, 35px);
  line-height: 1.12;
  letter-spacing: -0.06em;
  font-weight: 900;
  text-shadow:
    0 24px 80px rgba(0, 0, 0, 0.68),
    0 0 1px rgba(255, 244, 223, 0.92);
}

.hero-subtitle {
  display: inline-flex;
  margin: 26px 0 24px;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--cream);
  background: rgba(179, 24, 34, 0.82);
  border: 1px solid rgba(239, 210, 154, 0.24);
  font-size: clamp(20px, 2.4vw, 34px);
  font-weight: 900;
  letter-spacing: 0.08em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-desc {
  max-width: 650px;
  margin-top: 28px;
  margin-bottom: 36px;
  color: rgba(255, 244, 223, 0.82);
  font-size: 19px;
  line-height: 1.95;
  font-weight: 600;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.58);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-note {
  align-self: end;
  margin-bottom: 34px;
  padding: 22px;
  border-radius: 26px;
  color: var(--cream);
  background: rgba(17, 16, 15, 0.56);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-note span {
  display: block;
  color: var(--gold-2);
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 8px;
}

.hero-note strong {
  font-size: 22px;
}

.hero-slider {
  position: relative;
  display: block;
  width: 100%;
  height: min(68vh, 620px);
  min-height: 480px;
  overflow: hidden;
  border-radius: 38px;
  border: 1px solid rgba(239, 210, 154, 0.28);
  background: linear-gradient(135deg, rgba(255, 244, 223, 0.10), rgba(255, 244, 223, 0.035));
  box-shadow:
    0 38px 120px rgba(0, 0, 0, 0.58),
    inset 0 0 0 1px rgba(255, 244, 223, 0.06);
}

.hero-slider::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 3;
  border-radius: 28px;
  border: 1px solid rgba(255, 244, 223, 0.14);
  pointer-events: none;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: heroFade 25s linear infinite;
}

.hero-slider .slide:nth-child(1) {
  animation-delay: 0s;
}

.hero-slider .slide:nth-child(2) {
  animation-delay: 5s;
}

.hero-slider .slide:nth-child(3) {
  animation-delay: 10s;
}

.hero-slider .slide:nth-child(4) {
  animation-delay: 15s;
}

.hero-slider .slide:nth-child(5) {
  animation-delay: 20s;
}

.hero-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  animation: heroZoom 25s linear infinite;
}

.hero-slider .slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(0deg, rgba(8, 7, 7, 0.64) 0%, rgba(8, 7, 7, 0.12) 45%, rgba(8, 7, 7, 0.22) 100%);
  pointer-events: none;
}

@keyframes heroFade {
  0% { opacity: 0; }
  4% { opacity: 1; }
  20% { opacity: 1; }
  24% { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes heroZoom {
  0% { transform: scale(1.08); }
  100% { transform: scale(1.18); }
}

.btn {
  min-height: 54px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition: 0.28s ease;
  white-space: nowrap;
}

.btn-primary {
  color: var(--cream);
  background: linear-gradient(135deg, #cf202c, var(--red-2));
  border-color: rgba(239, 210, 154, 0.26);
  box-shadow: 0 18px 44px rgba(179, 24, 34, 0.34);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 60px rgba(179, 24, 34, 0.44);
}

.btn-outline {
  color: var(--cream);
  background: rgba(255, 244, 223, 0.08);
  border-color: rgba(255, 244, 223, 0.24);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(16px);
}

.btn-outline:hover {
  transform: translateY(-3px);
  color: var(--gold-2);
  border-color: rgba(239, 210, 154, 0.46);
}

.quick-nav {
  position: relative;
  z-index: 5;
  margin-top: -46px;
  padding-bottom: 40px;
}

.quick-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.quick-nav-grid a {
  padding: 24px;
  border-radius: 26px;
  color: var(--cream);
  background: linear-gradient(135deg, rgba(255, 244, 223, 0.12), rgba(255, 244, 223, 0.055));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: 0.28s ease;
}

.quick-nav-grid a:hover {
  transform: translateY(-5px);
  color: var(--gold-2);
  border-color: rgba(239, 210, 154, 0.45);
}

.quick-nav-grid span {
  display: block;
  color: var(--gold-2);
  font-weight: 900;
  margin-bottom: 4px;
}

.quick-nav-grid strong {
  font-size: 20px;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 12%, rgba(179, 24, 34, 0.12), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(197, 154, 84, 0.08), transparent 32%);
}

.section > .container {
  position: relative;
  z-index: 2;
}

.environment::after,
.today::after,
.gallery::after,
.contact::after {
  position: absolute;
  right: 5vw;
  bottom: 3vh;
  z-index: 1;
  pointer-events: none;
  color: rgba(239, 210, 154, 0.045);
  font-size: clamp(72px, 12vw, 180px);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
}

.environment::after { content: "ENVIRONMENT"; }
.today::after { content: "TODAY"; }
.gallery::after { content: "BEAUTY"; }
.contact::after { content: "CONTACT"; }

.section-head,
.section-head.center,
.section-head.split,
.today .section-head,
.contact .section-head {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 52px;
  text-align: center;
}

.section-head.split,
.today .section-head.split,
.contact .section-head.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  justify-items: center;
}

.environment .section-head,
.today .section-head,
.gallery .section-head,
.contact .section-head,
.section-head-fancy {
  position: relative;
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 244, 223, 0.070), rgba(255, 244, 223, 0.024));
  border: 1px solid rgba(255, 244, 223, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}

.section-head-fancy::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 154, 84, 0.18), transparent 64%);
  pointer-events: none;
}

.section-head-fancy::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: min(220px, 52%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(239, 210, 154, 0.72), transparent);
  pointer-events: none;
}

.section-badge {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-badge span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--cream);
  background: var(--red);
  border-radius: 50%;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(179, 24, 34, 0.32);
}

.section-badge em {
  color: var(--gold-2);
  font-size: 13px;
  font-style: normal;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 900;
}

.section-head h2,
.section-head h2 span,
.today .section-head h2,
.today .section-head h2 span,
.gallery .section-head h2,
.gallery .section-head h2 span,
.environment .section-head h2,
.environment .section-head h2 span,
.contact .section-head h2,
.contact .section-head h2 span {
  color: var(--cream);
}

.section-head h2 {
  font-size: clamp(38px, 5.6vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.07em;
  font-weight: 900;
}

.section-head p,
.section-head.split > p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: var(--soft);
  font-size: 17px;
  text-align: center;
}

.section-kicker {
  color: var(--gold-2);
  letter-spacing: 0.28em;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section-rule,
.section-head.center .section-rule,
.section-head.split .section-rule,
.today .section-rule,
.contact .section-rule {
  width: min(260px, 78%);
  height: 1px;
  margin: 22px auto 18px;
  background: linear-gradient(90deg, transparent, rgba(239, 210, 154, 0.74), rgba(179, 24, 34, 0.72), transparent);
}

.notice {
  position: relative;
  z-index: 4;
  padding: 82px 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(179, 24, 34, 0.22), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(197, 154, 84, 0.12), transparent 34%),
    linear-gradient(135deg, #0b0909 0%, #18100f 52%, #090707 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.notice .container {
  width: min(1080px, 88%);
}

.notice-title-block {
  margin-bottom: 34px;
  text-align: center;
}

.notice-title-block .section-badge-redonly {
  gap: 0;
  justify-content: center;
}

.notice-title-block .section-badge-redonly em,
.notice-card > span,
.notice-card > .tag,
.notice-card > .notice-tag,
.notice-card > .notice-category,
.notice-card > .category,
.notice-meta span,
.notice-meta .tag,
.notice-meta .notice-tag,
.notice-meta .notice-category,
.notice-meta .category {
  display: none !important;
}

.notice-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
}

.notice-card,
.notice-card.has-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: clamp(26px, 4vw, 44px);
  border-radius: 30px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 244, 223, 0.10), rgba(255, 244, 223, 0.042));
  border: 1px solid var(--line);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.notice-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(197, 154, 84, 0.12), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(179, 24, 34, 0.12), transparent 34%);
  pointer-events: none;
}

.notice-meta,
.notice-content,
.notice-media {
  position: relative;
  z-index: 2;
}

.notice-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 12px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.notice-meta time {
  display: inline-flex;
  margin: 0;
  color: var(--gold-2);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.notice-content {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.notice-content h3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: min(100%, 760px);
  margin: 0 auto 12px;
  padding: 8px 18px;
  border-radius: 999px;
  color: var(--cream);
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #cf202c, var(--red-2));
  border: 1px solid rgba(239, 210, 154, 0.32);
  box-shadow:
    0 12px 30px rgba(179, 24, 34, 0.28),
    inset 0 0 0 1px rgba(255, 244, 223, 0.10);
  text-align: center;
}

.notice-content p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: var(--soft);
  font-size: 16px;
  line-height: 1.9;
  text-align: center;
}

.notice-media {
  max-width: 820px;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 244, 223, 0.11), rgba(255, 244, 223, 0.035));
  border: 1px solid rgba(239, 210, 154, 0.22);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.notice-media img {
  width: 100%;
  height: auto;
  max-height: 680px;
  object-fit: contain;
  object-position: center center;
  border-radius: 22px;
  background: rgba(13, 11, 11, 0.42);
  transform: none;
  transition: 0.3s ease;
  cursor: zoom-in;
}

.notice-media:hover img {
  transform: none;
  filter: brightness(1.04);
}

.environment {
  background:
    radial-gradient(circle at 18% 12%, rgba(179, 24, 34, 0.26), transparent 32%),
    radial-gradient(circle at 86% 24%, rgba(197, 154, 84, 0.13), transparent 34%),
    linear-gradient(135deg, #080707 0%, #1a0f0f 48%, #090808 100%);
}

.environment-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: 300px;
  gap: 20px;
}

.environment-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.environment-feature {
  grid-row: span 2;
}

.environment-wide {
  grid-column: span 2;
}

.environment-info {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: #fff;
}

.environment-card img {
  width: 100%;
  height: 100%;
  filter: brightness(0.78) saturate(0.98);
  transition: 0.42s ease;
  cursor: zoom-in;
}

.environment-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.58) saturate(1.04);
}

.environment-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 11, 11, 0.90), rgba(13, 11, 11, 0.12) 58%);
}

.environment-card div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  color: var(--cream);
}

.environment-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--cream);
  background: var(--red);
  border-radius: 999px;
  padding: 5px 12px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.environment-card h3 {
  font-size: 29px;
  margin-bottom: 6px;
}

.environment-card p {
  color: var(--soft);
}

.today {
  background:
    radial-gradient(circle at 12% 18%, rgba(197, 154, 84, 0.14), transparent 34%),
    radial-gradient(circle at 92% 10%, rgba(179, 24, 34, 0.18), transparent 30%),
    linear-gradient(135deg, #0a0808 0%, #1b1110 52%, #090707 100%);
}

.today-grid {
  display: none;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.today-carousel {
  position: relative;
}

.today-viewport {
  width: 100%;
  overflow: hidden;
}

.today-track {
  display: flex;
  gap: 18px;
  width: max-content;
  min-width: max-content;
  animation: todayMarquee 52s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

.today-carousel:hover .today-track {
  animation-play-state: paused;
}

@keyframes todayMarquee {
  0% { transform: translate3d(0, 0, 0); -webkit-transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); -webkit-transform: translate3d(-50%, 0, 0); }
}

.today-card,
.staff-card {
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 244, 223, 0.09), rgba(255, 244, 223, 0.045));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: 0.28s ease;
}

.today-card {
  width: 280px;
  flex: 0 0 280px;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.today-card:hover,
.staff-card:hover {
  transform: translateY(-8px);
  border-color: rgba(239, 210, 154, 0.36);
}

.today-card img,
.staff-card img {
  object-position: center top;
  filter: brightness(0.92);
  cursor: zoom-in;
}

.today-card img {
  height: 280px;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.today-card div {
  padding: 20px;
}

.today-card span {
  display: inline-flex;
  color: var(--cream);
  background: var(--red);
  border-radius: 999px;
  padding: 4px 11px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
}

.today-card h3 {
  color: var(--gold-2);
  font-size: 26px;
  margin-bottom: 5px;
}

.today-card p,
.today-card .measure,
.today-card .beauty-measure,
.today-card .beauty-info {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 8px;
  max-width: 100%;
  margin-top: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--cream);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, rgba(179, 24, 34, 0.36), rgba(13, 11, 11, 0.72));
  border: 1px solid rgba(239, 210, 154, 0.48);
  box-shadow:
    0 0 0 1px rgba(179, 24, 34, 0.26),
    0 12px 30px rgba(0, 0, 0, 0.26),
    inset 0 0 18px rgba(239, 210, 154, 0.08);
  text-shadow:
    0 0 8px rgba(239, 210, 154, 0.38),
    0 2px 0 rgba(0, 0, 0, 0.72),
    1px 0 0 rgba(179, 24, 34, 0.82),
    -1px 0 0 rgba(179, 24, 34, 0.82),
    0 1px 0 rgba(179, 24, 34, 0.82),
    0 -1px 0 rgba(179, 24, 34, 0.82);
  -webkit-text-stroke: 0.35px rgba(239, 210, 154, 0.72);
}

.today-card p::before,
.today-card .measure::before,
.today-card .beauty-measure::before,
.today-card .beauty-info::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  border: 1px solid rgba(255, 244, 223, 0.08);
  pointer-events: none;
}

.today-card:hover p,
.today-card:hover .measure,
.today-card:hover .beauty-measure,
.today-card:hover .beauty-info {
  border-color: rgba(239, 210, 154, 0.72);
  box-shadow:
    0 0 0 1px rgba(239, 210, 154, 0.22),
    0 18px 42px rgba(0, 0, 0, 0.32),
    0 0 26px rgba(179, 24, 34, 0.22),
    inset 0 0 20px rgba(239, 210, 154, 0.12);
}

.carousel-btn {
  display: none;
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(13, 11, 11, 0.76);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  transform: translateY(-50%);
}

.carousel-prev { left: 0; }
.carousel-next { right: 0; }
.carousel-btn i { font-size: 18px; }

.gallery {
  background:
    radial-gradient(circle at 80% 12%, rgba(197, 154, 84, 0.15), transparent 34%),
    radial-gradient(circle at 8% 28%, rgba(179, 24, 34, 0.16), transparent 32%),
    linear-gradient(135deg, #090808 0%, #191010 54%, #0a0808 100%);
}

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

.staff-card img {
  height: 390px;
}

.staff-card div {
  color: var(--gold-2);
  padding: 24px;
}

.staff-info h1,
.staff-card h3 {
  color: var(--gold-2);
  font-size: 30px;
  margin-bottom: 8px;
}

.staff-card div > p:not(:last-child),
.staff-card .measure,
.staff-card .beauty-measure,
.staff-card .staff-measure,
.staff-card .body-measure,
.staff-card .work-time,
.staff-card .service-time,
.staff-card .time,
.staff-card .info-pill,
.staff-card .profile-pill,
.staff-card .staff-meta span,
.staff-card .profile-meta span {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 4px 8px !important;
  max-width: 100% !important;
  margin: 6px 6px 8px 0 !important;
  padding: 8px 13px !important;
  border-radius: 999px !important;
  color: var(--cream) !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1.55 !important;
  letter-spacing: 0.06em !important;
  background: linear-gradient(135deg, rgba(179, 24, 34, 0.36), rgba(13, 11, 11, 0.72)) !important;
  border: 1px solid rgba(239, 210, 154, 0.48) !important;
  box-shadow:
    0 0 0 1px rgba(179, 24, 34, 0.26),
    0 12px 30px rgba(0, 0, 0, 0.26),
    inset 0 0 18px rgba(239, 210, 154, 0.08) !important;
  text-shadow:
    0 0 8px rgba(239, 210, 154, 0.38),
    0 2px 0 rgba(0, 0, 0, 0.72),
    1px 0 0 rgba(179, 24, 34, 0.82),
    -1px 0 0 rgba(179, 24, 34, 0.82),
    0 1px 0 rgba(179, 24, 34, 0.82),
    0 -1px 0 rgba(179, 24, 34, 0.82) !important;
  -webkit-text-stroke: 0.35px rgba(239, 210, 154, 0.72) !important;
  vertical-align: middle !important;
}

.staff-card div > p:not(:last-child)::before,
.staff-card .measure::before,
.staff-card .beauty-measure::before,
.staff-card .staff-measure::before,
.staff-card .body-measure::before,
.staff-card .work-time::before,
.staff-card .service-time::before,
.staff-card .time::before,
.staff-card .info-pill::before,
.staff-card .profile-pill::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  border: 1px solid rgba(255, 244, 223, 0.08);
  pointer-events: none;
}

.staff-card div > p:last-child,
.staff-card .staff-desc,
.staff-card .beauty-desc,
.staff-card .description,
.staff-card .intro,
.staff-card .profile-desc {
  position: static !important;
  display: block !important;
  width: 100% !important;
  margin: 8px 0 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  color: var(--soft) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.85 !important;
  letter-spacing: normal !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  text-shadow: none !important;
  -webkit-text-stroke: 0 !important;
}

.staff-card div > p:last-child::before,
.staff-card .staff-desc::before,
.staff-card .beauty-desc::before,
.staff-card .description::before,
.staff-card .intro::before,
.staff-card .profile-desc::before {
  display: none !important;
  content: none !important;
}

.contact {
  color: var(--cream);
  background:
    radial-gradient(circle at 20% 20%, rgba(179, 24, 34, 0.24), transparent 32%),
    radial-gradient(circle at right top, rgba(197, 154, 84, 0.18), transparent 34%),
    linear-gradient(135deg, #080707 0%, #211111 50%, #0d0b0b 100%);
}

.contact .section-kicker {
  color: var(--gold-2);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 24px;
}

.contact-panel {
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 244, 223, 0.085), rgba(255, 244, 223, 0.04));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-row {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row:first-child {
  padding-top: 0;
}

.contact-row span {
  display: block;
  color: var(--gold-2);
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 900;
  margin-bottom: 6px;
}

.contact-row strong {
  font-size: 21px;
}

.contact-actions {
  margin-top: 30px;
}

.map-panel {
  min-height: 530px;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  filter: grayscale(30%) invert(90%) contrast(90%);
}

.floating-buttons {
  position: fixed;
  right: 24px;
  bottom: 26px;
  z-index: 999;
  display: grid;
  gap: 12px;
}

.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: rgba(13, 11, 11, 0.76);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

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

.float-btn i {
  font-size: 24px;
}

.line-btn {
  background: #06c755;
  border-color: transparent;
}

.phone-btn {
  background: var(--red);
  border-color: transparent;
}

.footer {
  padding: 36px 7%;
  text-align: center;
  color: rgba(255, 244, 223, 0.62);
  background: #070605;
  border-top: 1px solid var(--line);
}

.footer p + p {
  margin-top: 8px;
  font-size: 13px;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at center, rgba(197, 154, 84, 0.14), transparent 34%),
    rgba(5, 4, 4, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.image-lightbox.is-active {
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox img {
  width: auto;
  max-width: min(1180px, 92vw);
  height: auto;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 24px;
  border: 1px solid rgba(239, 210, 154, 0.28);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.70);
  cursor: default;
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 2001;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(239, 210, 154, 0.28);
  color: var(--cream);
  background: rgba(13, 11, 11, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.lightbox-close i {
  font-size: 22px;
}

@supports (-webkit-touch-callout: none) {
  .today-track,
  .today-card,
  .today-card img {
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
  }

  .today-viewport {
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1180px) {
  .today-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .hero-content {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
    gap: 36px;
  }

  .hero-slider {
    height: min(62vh, 560px);
    min-height: 420px;
  }
}

@media (max-width: 960px) {
  .section-head.split,
  .statement-inner,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-note {
    width: fit-content;
    align-self: auto;
    margin-bottom: 0;
  }

  .notice .container {
    width: min(100% - 36px, 720px);
  }

  .notice-card,
  .notice-card.has-image {
    gap: 16px;
  }

  .notice-media {
    max-width: 100%;
    border-radius: 26px;
  }

  .notice-media img {
    max-height: none;
    border-radius: 20px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: calc(clamp(160px, 48.1vw, 360px) + 20px);
  }

  .container {
    width: min(100% - 36px, 560px);
  }

  .site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    height: clamp(160px, 48.1vw, 160px);
    min-height: clamp(160px, 48.1vw, 160px);
    padding: 0 !important;
    display: block;
    align-items: stretch;
    overflow: hidden;
    background: #090707 !important;
    border-bottom: 1px solid rgba(239, 210, 154, 0.24);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .site-header::before {
    content: "" !important;
    display: block !important;
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url("images/banner/title-banner.png") center top / 100% auto no-repeat;
    opacity: 0.55;
    pointer-events: none;
  }

  .site-header::after {
    content: "" !important;
    display: block !important;
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(8, 7, 7, 0.04) 0%, rgba(8, 7, 7, 0.05) 44%, rgba(8, 7, 7, 0.34) 78%, rgba(8, 7, 7, 0.58) 100%);
    pointer-events: none;
  }

  .nav {
    position: relative;
    z-index: 2;
    width: 100% !important;
    max-width: 760px;
    height: 100%;
    min-height: 100%;
    margin: 0 auto;
    padding: 10px 14px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }

  .brand {
    align-self: center;
    padding: 10px 0 0 !important;
    margin: 0 !important;
    gap: 5px;
    color: var(--cream);
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    text-shadow:
      0 3px 12px rgba(0, 0, 0, 0.92),
      0 0 18px rgba(0, 0, 0, 0.86);
  }

  .brand-logo {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 244, 223, 0.46);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.36);
  }

  .brand span {
    font-size: 35px;
    letter-spacing: 0.08em;
  }

  .nav-links {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px 16px;
    color: var(--cream);
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .nav-links a,
  .nav-links a.nav-cta,
  .nav-cta {
    position: relative;
    padding: 6px 12px !important;
    margin: 0 !important;
    border: 1px solid rgba(239, 210, 154, 0.42) !important;
    border-radius: 999px !important;
    color: var(--cream) !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-shadow:
      0 2px 8px rgba(0, 0, 0, 0.96),
      0 0 16px rgba(0, 0, 0, 0.90),
      0 0 1px rgba(255, 244, 223, 0.92);
  }

  .nav-links a::before,
  .nav-links a::after,
  .nav-links a.nav-cta::before,
  .nav-links a.nav-cta::after {
    display: none !important;
    content: none !important;
  }

  .nav-links a:hover,
  .nav-links a.nav-cta:hover {
    color: var(--gold-2) !important;
    border-color: rgba(239, 210, 154, 0.78) !important;
    background: transparent !important;
  }

  .hero-bg,
  .hero-shade {
    display: none !important;
  }

  .hero {
    min-height: auto !important;
    height: auto !important;
    padding: 0 !important;
    display: block !important;
    background:
      radial-gradient(circle at 50% 0%, rgba(179, 24, 34, 0.20), transparent 38%),
      linear-gradient(135deg, #0d0b0b 0%, #1a0f0f 52%, #080707 100%) !important;
  }

  .hero::after {
    display: none !important;
  }

  .hero-content.hero-content-slider,
  .hero-content {
    width: min(100% - 34px, 560px);
    min-height: auto !important;
    height: auto !important;
    padding: 198px 0 72px !important;
    margin: 0 auto;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 34px;
    text-align: center;
  }

  .hero-copy {
    width: 100%;
    max-width: 560px;
    display: grid;
    justify-items: center;
  }

  .hero-kicker {
    margin-bottom: 18px;
    font-size: 12px;
    letter-spacing: 0.22em;
  }

  .hero h1 {
    width: 100%;
    max-width: 560px;
    font-size: clamp(23px, 7.5vw, 23px);
    line-height: 1.38;
    letter-spacing: -0.03em;
    text-align: center;
  }

  .hero-desc {
    width: 100%;
    margin: 20px auto 30px;
    color: rgba(255, 244, 223, 0.84);
    font-size: 17px;
    line-height: 1.9;
    text-align: center;
  }

  .hero-actions {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 14px;
  }

  .hero-actions .btn {
    width: auto;
    min-width: 132px;
    padding: 0 22px;
  }

  .hero-slider {
    display: block !important;
    width: 100%;
    height: clamp(320px, 86vw, 470px);
    min-height: 320px;
    border-radius: 26px;
    border: 1px solid rgba(239, 210, 154, 0.24);
    background: rgba(255, 244, 223, 0.045);
    box-shadow:
      0 28px 90px rgba(0, 0, 0, 0.52),
      inset 0 0 0 1px rgba(255, 244, 223, 0.06);
  }

  .hero-slider .slide img {
    object-fit: cover;
    object-position: center;
    filter: brightness(0.9) saturate(1.02) contrast(1.04);
  }

  .btn {
    width: 100%;
  }

  .quick-nav {
    margin-top: 0;
    padding: 28px 0;
    background: #0d0b0b;
  }

  .quick-nav-grid,
  .today-grid,
  .staff-grid {
    grid-template-columns: 1fr;
  }

  .quick-nav-grid a {
    padding: 18px;
  }

  .section {
    padding: 82px 0;
  }

  .section-head,
  .section-head.center,
  .section-head.split {
    text-align: center;
  }

  .section-head h2 {
    letter-spacing: -0.045em;
  }

  .notice {
    padding: 72px 0;
    margin-top: 0;
  }

  .notice-head,
  .notice-card,
  .notice-card.has-image,
  .section-head-fancy {
    border-radius: 24px;
    padding: 22px;
  }

  .notice-content h3 {
    padding: 8px 14px;
    font-size: clamp(18px, 5.8vw, 24px);
    letter-spacing: 0.04em;
  }

  .notice-content p {
    font-size: 15px;
  }

  .notice-meta {
    gap: 8px 10px;
  }

  .notice-media {
    padding: 8px;
    border-radius: 24px;
  }

  .notice-media img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    border-radius: 18px;
  }

  .today-carousel {
    padding: 0 46px;
  }

  .today-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y pinch-zoom;
    overscroll-behavior-x: contain;
    padding: 4px 0 14px;
    scrollbar-width: none;
  }

  .today-viewport::-webkit-scrollbar {
    display: none;
  }

  .today-track {
    gap: 16px;
    animation: none;
    -webkit-animation: none;
    padding: 0 2px;
  }

  .today-card,
  .staff-card {
    max-width: 430px;
    margin: 0 auto;
    width: 100%;
  }

  .today-card {
    width: min(72vw, 310px);
    flex: 0 0 min(72vw, 310px);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .today-card:hover {
    transform: none;
  }

  .today-card img {
    height: 330px;
  }

  .today-card p,
  .today-card .measure,
  .today-card .beauty-measure,
  .today-card .beauty-info,
  .staff-card div > p:not(:last-child),
  .staff-card .measure,
  .staff-card .beauty-measure,
  .staff-card .staff-measure,
  .staff-card .body-measure,
  .staff-card .work-time,
  .staff-card .service-time,
  .staff-card .time,
  .staff-card .info-pill,
  .staff-card .profile-pill,
  .staff-card .staff-meta span,
  .staff-card .profile-meta span {
    font-size: 13px !important;
    padding: 8px 11px !important;
  }

  .staff-card img {
    height: 430px;
  }

  .staff-info h1 {
    font-size: 40px;
  }

  .staff-card div > p:last-child,
  .staff-card .staff-desc,
  .staff-card .beauty-desc,
  .staff-card .description,
  .staff-card .intro,
  .staff-card .profile-desc {
    font-size: 15px !important;
    padding: 0 !important;
  }

  .carousel-btn {
    display: grid;
    place-items: center;
  }

  #environment .environment-grid,
  .environment-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-auto-rows: auto !important;
    gap: 18px;
  }

  #environment .environment-card,
  #environment .environment-feature,
  #environment .environment-wide,
  .environment-card,
  .environment-feature,
  .environment-wide {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: auto !important;
    border-radius: 24px;
    padding: 8px;
    background: linear-gradient(135deg, rgba(255, 244, 223, 0.10), rgba(255, 244, 223, 0.035));
  }

  #environment .environment-wide,
  .environment-wide {
    order: -100 !important;
  }

  #environment .environment-feature,
  .environment-feature {
    order: 0 !important;
  }

  #environment .environment-card:not(.environment-wide):not(.environment-feature),
  .environment-card:not(.environment-wide):not(.environment-feature) {
    order: 1 !important;
  }

  .environment-card img {
    width: 100%;
    height: auto !important;
    max-height: none;
    object-fit: contain !important;
    object-position: center center;
    border-radius: 18px;
    background: rgba(13, 11, 11, 0.45);
    filter: brightness(0.88) saturate(0.98);
  }

  .environment-card::after {
    display: block;
    content: "";
    position: absolute;
    inset: 8px;
    z-index: 1;
    border-radius: 18px;
    pointer-events: none;
    background: linear-gradient(0deg, rgba(13, 11, 11, 0.88) 0%, rgba(13, 11, 11, 0.58) 24%, rgba(13, 11, 11, 0.12) 58%, rgba(13, 11, 11, 0.10) 100%);
  }

  .environment-card div {
    position: absolute;
    inset: 8px;
    z-index: 3;
    padding: 0;
    text-align: left;
    color: var(--cream);
    pointer-events: none;
  }

  .environment-card span {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    color: var(--cream);
    background: linear-gradient(135deg, #cf202c, var(--red-2));
    border: 1px solid rgba(239, 210, 154, 0.28);
    border-radius: 999px;
    padding: 5px 12px;
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 0.14em;
    box-shadow:
      0 10px 24px rgba(0, 0, 0, 0.38),
      inset 0 0 0 1px rgba(255, 244, 223, 0.10);
  }

  .environment-card p {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    margin: 0;
    padding-right: 0;
    color: rgba(255, 244, 223, 0.90);
    font-size: 18px;
    line-height: 1.7;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
  }

  .environment-card:hover img {
    transform: none;
    filter: brightness(0.88) saturate(0.98);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    padding: 26px;
    text-align: center;
  }

  .contact-actions {
    width: 100%;
    flex-direction: column;
  }

  .map-panel {
    min-height: 360px;
  }

  .floating-buttons {
    right: 14px;
    bottom: 16px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
  }

  .float-btn i {
    font-size: 21px;
  }

  .image-lightbox {
    padding: 18px;
  }

  .image-lightbox img {
    max-width: 94vw;
    max-height: 82vh;
    border-radius: 18px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
    width: 48px;
    height: 48px;
  }

  .today,
  .today-carousel,
  .today-marquee,
  .today-viewport,
  .today-track,
  .today-card,
  body.is-mobile-today-swiper .today-carousel,
  body.is-mobile-today-swiper .today-marquee,
  body.is-mobile-today-swiper .today-viewport,
  body.is-mobile-today-swiper .today-track,
  body.is-mobile-today-swiper .today-card {
    touch-action: pan-y pinch-zoom !important;
  }

  body.is-mobile-today-swiper .today-carousel,
  body.is-mobile-today-swiper .today-marquee {
    position: relative;
    width: 100%;
    min-height: 560px;
    padding: 0 0 58px;
    overflow: hidden;
    overscroll-behavior-y: auto;
  }

  body.is-mobile-today-swiper .today-viewport {
    overflow: visible !important;
    padding: 0 !important;
    scroll-snap-type: none !important;
  }

  body.is-mobile-today-swiper .today-track {
    position: relative;
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 520px;
    gap: 0 !important;
    padding: 0 !important;
    animation: none !important;
    -webkit-animation: none !important;
    transform: none !important;
    -webkit-transform: none !important;
  }

  body.is-mobile-today-swiper .today-card {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(76vw, 320px) !important;
    max-width: 320px;
    margin: 0 !important;
    flex: none !important;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) scale(0.82);
    transition: opacity 0.38s ease, transform 0.42s ease, filter 0.42s ease;
  }

  body.is-mobile-today-swiper .today-card.is-active {
    z-index: 4;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) scale(1);
    filter: brightness(1);
  }

  body.is-mobile-today-swiper .today-card.is-prev {
    z-index: 2;
    opacity: 0.36;
    transform: translateX(calc(-50% - 54vw)) scale(0.84);
    filter: brightness(0.68);
  }

  body.is-mobile-today-swiper .today-card.is-next {
    z-index: 2;
    opacity: 0.36;
    transform: translateX(calc(-50% + 54vw)) scale(0.84);
    filter: brightness(0.68);
  }

  body.is-mobile-today-swiper .today-card img {
    height: 370px !important;
    object-fit: cover;
    object-position: center top;
  }

  body.is-mobile-today-swiper .today-card:hover {
    transform: translateX(-50%) scale(1);
  }

  body.is-mobile-today-swiper .today-card.is-prev:hover {
    transform: translateX(calc(-50% - 54vw)) scale(0.84);
  }

  body.is-mobile-today-swiper .today-card.is-next:hover {
    transform: translateX(calc(-50% + 54vw)) scale(0.84);
  }

  body.is-mobile-today-swiper .carousel-btn {
    display: none !important;
  }

  body.is-mobile-today-swiper .today-swiper-btn,
  body.is-mobile-today-swiper .today-swiper-dot {
    touch-action: manipulation !important;
  }

  .today-swiper-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 38%;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
  }

  .today-swiper-btn {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(239, 210, 154, 0.34);
    border-radius: 50%;
    color: var(--cream);
    background: rgba(13, 11, 11, 0.78);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    font-size: 34px;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    pointer-events: auto;
  }

  .today-swiper-prev {
    margin-left: 0;
    padding: 0 2px 5px 0;
  }

  .today-swiper-next {
    margin-right: 0;
    padding: 0 0 5px 2px;
  }

  .today-swiper-dots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    z-index: 12;
    display: flex;
    justify-content: center;
    gap: 8px;
    transform: translateX(-50%);
  }

  .today-swiper-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 244, 223, 0.34);
    cursor: pointer;
    transition: 0.25s ease;
  }

  .today-swiper-dot.is-active {
    width: 24px;
    background: var(--gold-2);
  }
}

@media (max-width: 420px) {
  html {
    scroll-padding-top: calc(clamp(156px, 48.1vw, 210px) + 18px);
  }

  .container {
    width: min(100% - 28px, 420px);
  }

  .site-header {
    height: clamp(156px, 48.1vw, 210px);
    min-height: clamp(156px, 48.1vw, 210px);
  }

  .nav {
    padding: 8px 10px 12px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand span {
    font-size: 19px;
  }

  .nav-links {
    gap: 7px 11px;
  }

  .nav-links a,
  .nav-links a.nav-cta,
  .nav-cta {
    font-size: 12px;
    letter-spacing: 0.02em;
  }

  .hero-content.hero-content-slider,
  .hero-content {
    width: min(100% - 28px, 420px);
    padding-top: 186px !important;
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(25px, 7.2vw, 32px);
    line-height: 1.4;
  }

  .hero-desc {
    font-size: 16px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    min-width: 124px;
    padding: 0 18px;
  }

  .hero-slider {
    height: clamp(300px, 88vw, 420px);
    border-radius: 24px;
  }

  .today-carousel {
    padding: 0 42px;
  }

  .today-card {
    width: min(74vw, 290px);
    flex-basis: min(74vw, 290px);
  }

  .today-card img {
    height: 300px;
  }

  .staff-card img {
    height: 390px;
  }

  .environment .container {
    width: min(100% - 28px, 420px);
  }

  .environment-grid {
    gap: 16px;
  }

  .environment-card,
  .environment-feature,
  .environment-wide {
    aspect-ratio: auto !important;
    padding: 7px;
  }

  #environment .environment-wide,
  .environment-wide {
    order: -100 !important;
  }

  .environment-card img {
    border-radius: 16px;
  }

  .environment-card::after {
    inset: 7px;
    border-radius: 16px;
  }

  .environment-card div {
    inset: 7px;
  }

  .environment-card span {
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    font-size: 11px;
  }

  .environment-card p {
    left: 10px;
    right: 10px;
    bottom: 10px;
    font-size: 13px;
    line-height: 1.6;
  }

  .notice-card,
  .notice-card.has-image {
    padding: 20px;
  }

  .notice-media {
    padding: 7px;
  }

  body.is-mobile-today-swiper .today-carousel,
  body.is-mobile-today-swiper .today-marquee {
    min-height: 540px;
  }

  body.is-mobile-today-swiper .today-track {
    height: 486px;
  }

  body.is-mobile-today-swiper .today-card {
    width: min(78vw, 300px) !important;
  }

  body.is-mobile-today-swiper .today-card img {
    height: 350px !important;
  }

  body.is-mobile-today-swiper .today-card.is-prev {
    transform: translateX(calc(-50% - 58vw)) scale(0.82);
  }

  body.is-mobile-today-swiper .today-card.is-next {
    transform: translateX(calc(-50% + 58vw)) scale(0.82);
  }
}
