/* ==============================================
   おぷす整骨院 Premium V2
   Design: レイクサイド動物病院 inspired
   ============================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

/* --- Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* --- CSS Variables --- */
:root {
  --primary: #2B5D8C;
  --primary-dark: #1E4468;
  --primary-light: #F0F5FA;
  --accent: #E8A87C;
  --accent-light: #FFF5EE;
  --bg: #FFFFFF;
  --bg-sub: #F8FAFB;
  --text: #333333;
  --text-sub: #666666;
  --text-light: #999999;
  --border: #E8ECF0;
  --font-main: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  --font-sub: 'Noto Sans JP', sans-serif;
  --max-width: 1280px;
  --header-h: 88px;
  --radius: 8px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --transition: 0.3s ease;
}

/* --- Base --- */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

/* --- Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}


/* ==============================================
   HEADER / NAV
   ============================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  pointer-events: none;
  padding: 10px 20px 0 0;
}

.header-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

/* Logo — floating white card */
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  background: var(--bg);
  padding: 0 24px 0 32px;
  border-radius: 0 20px 20px 0;
  pointer-events: all;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.header-logo-icon {
  width: 44px;
  height: 36px;
  background: var(--primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-sub);
  letter-spacing: 0.5px;
}

.header-logo-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.05em;
}

/* Nav + Phone — floating white card on the right */
.header-right {
  display: flex;
  align-items: center;
  background: var(--bg);
  padding: 0 28px;
  border-radius: 20px;
  pointer-events: all;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-right: 24px;
}

.header-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.06em;
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

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

/* Phone — separated by vertical divider */
.header-phone-area {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  padding-left: 28px;
  border-left: 1px solid var(--border);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-phone-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-phone-icon svg {
  width: 17px;
  height: 17px;
  fill: #fff;
}

.header-phone-info {
  display: flex;
  flex-direction: column;
}

.header-phone-number {
  font-family: var(--font-sub);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.header-phone-hours {
  font-size: 10.5px;
  color: var(--text-light);
  line-height: 1.4;
  margin-top: 2px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 999;
  padding: 100px 40px 40px;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  display: block;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.mobile-menu-phone {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
}


/* ==============================================
   HERO SECTION — Lakeside style
   ============================================== */
.hero {
  padding-top: var(--header-h);
  height: 100vh;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #E8F0F6 0%, #EEF4F8 40%, #F5EDE4 100%);
}

/* Left side (40%) */
.hero-left {
  width: 42%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0 40px 60px;
  position: relative;
}

/* Vertical text — main catchcopy */
.hero-catchcopy {
  writing-mode: vertical-rl;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.6;
  color: var(--text);
  position: relative;
  z-index: 2;
}

/* Sub text (horizontal, next to vertical) */
.hero-left-content {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex: 1;
}

.hero-subtext {
  writing-mode: horizontal-tb;
  align-self: flex-start;
  margin-top: 40px;
  max-width: 180px;
}

.hero-subtext p {
  font-size: 13px;
  line-height: 2;
  color: var(--text-sub);
  letter-spacing: 0.04em;
}

/* Sun decoration — animated */
.hero-sun {
  position: absolute;
  top: 30px;
  right: -10px;
  z-index: 1;
  opacity: 0.25;
}

.sun-rotate {
  animation: sunSpin 30s linear infinite;
  transform-origin: 45px 45px;
}

.sun-core {
  animation: sunPulse 4s ease-in-out infinite;
}

@keyframes sunSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes sunPulse {
  0%, 100% { r: 18; opacity: 1; }
  50% { r: 20; opacity: 0.85; }
}

/* Illustration area */
.hero-illustration {
  position: absolute;
  bottom: 130px;
  left: 60px;
  z-index: 2;
}

.hero-illustration svg {
  width: 260px;
  height: auto;
}

/* --- SVG Illustration Animations --- */

/* Person gentle bobbing */
.person-bob {
  animation: personBob 3s ease-in-out infinite;
}

@keyframes personBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Waving arm */
.wave-arm {
  animation: waveArm 2.5s ease-in-out infinite;
  transform-origin: 140px 95px;
}

@keyframes waveArm {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(-8deg); }
}

/* Grass sway */
.sway-left {
  animation: swayLeft 4s ease-in-out infinite;
  transform-origin: center bottom;
}

.sway-right {
  animation: swayRight 4.5s ease-in-out infinite;
  transform-origin: center bottom;
}

@keyframes swayLeft {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(-3deg); }
}

@keyframes swayRight {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(3deg); }
}

/* Sparkles twinkling */
.sparkle-1 {
  animation: sparkle 2s ease-in-out infinite;
}

.sparkle-2 {
  animation: sparkle 2.5s ease-in-out 0.5s infinite;
}

.sparkle-3 {
  animation: sparkle 3s ease-in-out 1s infinite;
}

@keyframes sparkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* Floating hearts */
.float-up-1 {
  animation: floatUp 4s ease-in-out infinite;
}

.float-up-2 {
  animation: floatUp 5s ease-in-out 1.5s infinite;
}

@keyframes floatUp {
  0%, 100% { opacity: 0.4; transform: translateY(0); }
  50% { opacity: 0.7; transform: translateY(-8px); }
}

/* Right side — photo block */
.hero-right {
  width: 50%;
  position: absolute;
  right: 0;
  top: calc(var(--header-h) + 24px);
  bottom: 190px;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px 0 0 20px;
}

/* Badge on photo */
.hero-badge {
  position: absolute;
  top: 32px;
  left: -20px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  z-index: 3;
  box-shadow: var(--shadow-md);
}


/* ==============================================
   HERO BOTTOM — hours + news stack
   ============================================== */
.hero-bottom {
  position: absolute;
  bottom: 28px;
  left: 32px;
  width: 75%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Business hours table — positioned left of hero image */
.hero-hours {
  position: absolute;
  right: calc(50% + 16px);
  bottom: 190px;
  z-index: 5;
  background: var(--bg);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  width: 380px;
}

.hero-hours-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11.5px;
  text-align: center;
}

.hours-table th {
  font-weight: 600;
  color: var(--primary);
  padding: 5px 0;
  font-size: 11px;
  background: var(--primary-light);
}

.hours-table th:first-child {
  text-align: left;
  padding-left: 8px;
  font-size: 10.5px;
  width: 90px;
  border-radius: 4px 0 0 4px;
}

.hours-table th:last-child {
  border-radius: 0 4px 4px 0;
}

.hours-table td {
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-sub);
}

.hours-table td:first-child {
  text-align: left;
  padding-left: 8px;
  font-weight: 500;
  color: var(--text);
  font-size: 11px;
}

.hours-table .open {
  color: var(--primary);
  font-weight: 700;
}

.hours-table .closed {
  color: var(--text-light);
}

.hours-table .half {
  color: var(--accent);
  font-weight: 600;
}

.hours-note {
  font-size: 10px;
  color: var(--text-light);
  margin-top: 6px;
  line-height: 1.5;
}

/* NEWS card */
.hero-news {
  padding: 20px 28px;
  background: var(--bg);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.hero-news-label {
  font-family: var(--font-sub);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.hero-news-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-news-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-size: 13px;
  line-height: 1.7;
}

.hero-news-item time {
  font-family: var(--font-sub);
  font-size: 12.5px;
  color: var(--text-light);
  flex-shrink: 0;
}

.hero-news-item a {
  color: var(--text);
  font-weight: 600;
}

.hero-news-item a:hover {
  color: var(--primary);
}


/* ==============================================
   SECTION COMMON
   ============================================== */
.section {
  padding: 100px 0;
}

.section-bg {
  background: var(--primary-light);
}

.section-header {
  margin-bottom: 56px;
}

.section-header.center {
  text-align: center;
}

.section-en {
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.section-desc {
  font-size: 14px;
  color: var(--text-sub);
  margin-top: 12px;
  line-height: 1.8;
}


/* ==============================================
   ABOUT SECTION
   ============================================== */
.about {
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius);
  width: 100%;
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--accent-light);
  border-radius: var(--radius);
  z-index: -1;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-text h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--text);
}

.about-text p {
  font-size: 14.5px;
  line-height: 2;
  color: var(--text-sub);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--primary);
}


/* ==============================================
   SERVICES SECTION
   ============================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body {
  padding: 28px 24px;
}

.service-card-label {
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 12px;
}

.service-card-desc {
  font-size: 13.5px;
  color: var(--text-sub);
  line-height: 1.8;
}

.service-card-price {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.service-card-price small {
  font-weight: 400;
  font-size: 12px;
  color: var(--text-light);
}


/* ==============================================
   WHY SECTION — numbered rows
   ============================================== */
.why-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.why-row:last-child {
  border-bottom: none;
}

.why-num {
  font-family: var(--font-sub);
  font-size: 48px;
  font-weight: 300;
  color: var(--primary);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
}

.why-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.why-content p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-sub);
}


/* ==============================================
   STAFF SECTION
   ============================================== */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}

.staff-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.staff-card-img {
  width: 100%;
  aspect-ratio: 3 / 5;
  object-fit: cover;
  object-position: center 20%;
}

.staff-card.main .staff-card-img {
  aspect-ratio: 3 / 5;
}

.staff-card-body {
  padding: 24px;
}

.staff-card-role {
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.staff-card-name {
  font-size: 18px;
  font-weight: 700;
  margin-top: 6px;
  margin-bottom: 8px;
}

.staff-card-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.staff-cert-tag {
  font-size: 11px;
  padding: 3px 10px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 20px;
  font-weight: 500;
}

.staff-card-desc {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.8;
}


/* ==============================================
   COUPON SECTION
   ============================================== */
.coupon {
  padding: 80px 0;
}

.coupon-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 12px;
  padding: 60px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  color: #fff;
}

.coupon-text h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #fff;
}

.coupon-text p {
  font-size: 14px;
  line-height: 1.9;
  opacity: 0.85;
}

.coupon-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 40px;
  text-align: center;
  flex-shrink: 0;
  min-width: 220px;
}

.coupon-price {
  font-size: 56px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.coupon-price small {
  font-size: 20px;
}

.coupon-original {
  font-size: 13px;
  color: var(--text-light);
  text-decoration: line-through;
  margin-top: 4px;
}

.coupon-card-desc {
  font-size: 12px;
  color: var(--text-sub);
  margin-top: 8px;
  line-height: 1.6;
}

.coupon-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  transition: background var(--transition);
}

.coupon-cta:hover {
  background: var(--primary-dark);
}


/* ==============================================
   VOICES SECTION
   ============================================== */
.voices-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
}

.voice-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.voice-card.featured {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.voice-stars {
  color: #F5B731;
  font-size: 14px;
  margin-bottom: 12px;
}

.voice-text {
  font-size: 15px;
  line-height: 2;
  color: var(--text);
  margin-bottom: 16px;
}

.voice-card.featured .voice-text {
  font-size: 16px;
}

.voice-author {
  font-size: 12px;
  color: var(--text-light);
}


/* ==============================================
   JIKO (TRAFFIC ACCIDENT) SECTION
   ============================================== */
.jiko {
  padding: 100px 0;
  background: var(--bg-sub);
}

.jiko-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.jiko-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-light);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.jiko h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 16px;
}

.jiko h2 em {
  font-style: normal;
  color: var(--primary);
}

.jiko-desc {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 2;
  margin-bottom: 24px;
}

.jiko-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.jiko-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.jiko-point-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.jiko-point-body strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.jiko-point-body p {
  font-size: 13px;
  color: var(--text-sub);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-top: 24px;
  transition: gap var(--transition);
}

.btn-link:hover {
  gap: 10px;
}


/* ==============================================
   NEWS LIST SECTION
   ============================================== */
.news-list {
  display: flex;
  flex-direction: column;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.news-item:hover {
  background: var(--primary-light);
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 -16px;
  border-radius: 4px;
}

.news-date {
  font-family: var(--font-sub);
  font-size: 13px;
  color: var(--text-light);
  flex-shrink: 0;
  min-width: 90px;
}

.news-cat {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 12px;
  border-radius: 20px;
  background: var(--primary-light);
  color: var(--primary);
  flex-shrink: 0;
}

.news-cat.accent {
  background: var(--accent-light);
  color: #C4794F;
}

.news-title-text {
  font-size: 14px;
  color: var(--text);
  flex: 1;
}

.news-arrow {
  font-size: 18px;
  color: var(--text-light);
  flex-shrink: 0;
}

.more-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
}

.more-link:hover {
  text-decoration: underline;
}


/* ==============================================
   CTA SECTION
   ============================================== */
.cta {
  padding: 100px 0;
  text-align: center;
}

.cta h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 16px;
}

.cta p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.9;
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  background: var(--primary);
  color: #fff;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
  border: none;
  cursor: pointer;
}

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

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.cta-note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 16px;
}


/* ==============================================
   FOOTER
   ============================================== */
.footer {
  background: #1A1A2E;
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 40px;
  height: 32px;
  background: var(--primary);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-logo-text {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.footer-about {
  font-size: 13px;
  line-height: 1.9;
  opacity: 0.7;
}

.footer-heading {
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: #fff;
}

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  opacity: 0.7;
}

.footer-phone-num {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  opacity: 1;
}

.footer-bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  opacity: 0.5;
}


/* ==============================================
   FLOATING RESERVATION BUTTON
   ============================================== */
.floating-btns {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  padding: 18px 32px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(43,93,140,0.35);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.floating-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(43,93,140,0.45);
}

.floating-btn svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.floating-btn-line {
  background: #06C755;
  box-shadow: 0 4px 20px rgba(6,199,85,0.35);
}

.floating-btn-line:hover {
  box-shadow: 0 6px 28px rgba(6,199,85,0.45);
}


/* ==============================================
   ANIMATIONS
   ============================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}


/* ==============================================
   RESPONSIVE — 1140px
   ============================================== */
@media (max-width: 1140px) {
  .container {
    padding: 0 32px;
  }

  .header-nav {
    gap: 22px;
  }

  .header-right {
    padding: 0 20px;
  }

  .header-logo {
    padding: 0 20px;
  }

  .hero-left {
    padding-left: 40px;
  }

  .hero-catchcopy {
    font-size: 36px;
  }

  .about-grid {
    gap: 48px;
  }

  .services-grid {
    gap: 20px;
  }

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

  .footer-grid > div:first-child {
    grid-column: span 3;
  }
}


/* ==============================================
   RESPONSIVE — 940px
   ============================================== */
@media (max-width: 940px) {
  .header-right {
    display: none;
  }

  .header {
    pointer-events: all;
    background: var(--bg);
  }

  .header-logo {
    background: none;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
    margin-right: 20px;
  }

  .mobile-menu {
    display: flex;
  }

  .hero {
    flex-direction: column;
    min-height: auto;
  }

  .hero-left {
    width: 100%;
    padding: 40px 32px;
    min-height: 360px;
  }

  .hero-right {
    width: 100%;
    height: 400px;
  }

  .hero-photo {
    height: 400px;
  }

  .hero-catchcopy {
    font-size: 32px;
  }

  .hero-badge {
    top: 16px;
    left: 16px;
  }

  .hero-illustration {
    bottom: 20px;
    left: 20px;
  }

  .hero-illustration svg {
    width: 160px;
  }

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

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

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

  .staff-card.main {
    grid-column: span 2;
  }

  .staff-card.main .staff-card-img {
    aspect-ratio: 3 / 5;
  }

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

  .coupon-box {
    flex-direction: column;
    text-align: center;
    padding: 48px 32px;
  }

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

  .voice-card.featured {
    grid-row: auto;
  }

  .news-bar-inner {
    flex-wrap: wrap;
  }

  .news-bar-text {
    white-space: normal;
  }

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

  .footer-grid > div:first-child {
    grid-column: span 2;
  }
}


/* ==============================================
   RESPONSIVE — 540px
   ============================================== */
@media (max-width: 540px) {
  :root {
    --header-h: 64px;
  }

  .container {
    padding: 0 20px;
  }

  .header-logo {
    padding: 0 20px;
  }

  .section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 22px;
  }

  .hero-left {
    padding: 32px 20px;
    min-height: auto;
  }

  .hero-catchcopy {
    font-size: 28px;
  }

  .hero-subtext {
    margin-top: 20px;
  }

  .hero-subtext p {
    font-size: 12px;
  }

  .hero-right {
    height: 280px;
  }

  .hero-photo {
    height: 280px;
  }

  .hero-illustration {
    display: none;
  }

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

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

  .staff-card.main {
    grid-column: auto;
  }

  .news-bar-inner {
    gap: 12px;
  }

  .news-bar-more {
    display: none;
  }

  .news-item {
    flex-wrap: wrap;
    gap: 8px;
  }

  .news-title-text {
    width: 100%;
  }

  .cta h2 {
    font-size: 22px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .coupon-box {
    padding: 36px 24px;
  }

  .coupon-text h2 {
    font-size: 20px;
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .floating-btn {
    bottom: 16px;
    right: 16px;
    padding: 12px 20px;
    font-size: 13px;
  }
}


/* ==============================================
   SUBPAGES — Page Hero
   ============================================== */
.page-hero {
  padding: calc(var(--header-h) + 48px) 0 48px;
  background: linear-gradient(160deg, #E8F0F6 0%, #EEF4F8 40%, #F5EDE4 100%);
}

.page-hero-text {
  max-width: 640px;
}

.page-hero-text h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 8px;
  margin-bottom: 12px;
}

.page-hero-text p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.8;
}

.page-hero--accent {
  background: linear-gradient(160deg, #FFF5EE 0%, #F5EDE4 40%, #E8F0F6 100%);
}

/* Current nav link */
.header-nav a.current {
  color: var(--primary);
}

.header-nav a.current::after {
  width: 100%;
}


/* ==============================================
   SERVICES PAGE — Menu Detail
   ============================================== */
.menu-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.menu-detail.reverse .menu-detail-img {
  order: 2;
}

.menu-detail.reverse .menu-detail-body {
  order: 1;
}

.menu-detail-img img {
  width: 100%;
  border-radius: var(--radius);
}

.menu-detail-label {
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-detail-body h2 {
  font-size: 26px;
  font-weight: 700;
  margin: 8px 0 16px;
}

.menu-detail-body p {
  font-size: 14.5px;
  line-height: 2;
  color: var(--text-sub);
}

.menu-detail-targets {
  margin-top: 24px;
}

.menu-detail-targets h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list span {
  font-size: 12px;
  padding: 4px 14px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 20px;
  font-weight: 500;
}

/* Price table */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.price-card {
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px;
}

.price-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-light);
}

.price-table {
  width: 100%;
}

.price-table tr {
  border-bottom: 1px solid var(--border);
}

.price-table tr:last-child {
  border-bottom: none;
}

.price-table td {
  padding: 12px 0;
  font-size: 14px;
}

.price-table .price-val {
  text-align: right;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}

.price-note {
  margin-top: 32px;
  padding: 24px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.price-note p {
  font-size: 13px;
  line-height: 2;
  color: var(--text-sub);
}

/* Insurance cards */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.insurance-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.insurance-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.insurance-card p {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--text-sub);
}

.insurance-card a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: underline;
}


/* ==============================================
   STAFF PAGE
   ============================================== */
.staff-detail {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: start;
}

.staff-detail-img img {
  width: 100%;
  border-radius: var(--radius);
}

.staff-detail-name {
  font-size: 28px;
  font-weight: 700;
  margin: 8px 0 12px;
}

.staff-detail-name small {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
  margin-left: 12px;
}

.staff-detail-body p {
  font-size: 14.5px;
  line-height: 2;
  color: var(--text-sub);
}

.staff-detail-message {
  margin-top: 28px;
  padding: 24px;
  background: var(--primary-light);
  border-radius: var(--radius);
}

.staff-detail-message h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.staff-detail-message p {
  font-size: 14px;
  line-height: 2;
  color: var(--text-sub);
}

/* Staff list cards */
.staff-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.staff-list-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.staff-list-card-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center 20%;
}

.staff-list-card-body {
  padding: 32px 32px 32px 0;
}

.staff-list-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 6px 0 10px;
}

.staff-list-card-body h3 small {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-light);
  margin-left: 10px;
}

.staff-list-card-body p {
  font-size: 14px;
  line-height: 2;
  color: var(--text-sub);
}


/* ==============================================
   JIKO PAGE — Feature Cards
   ============================================== */
.jiko-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.jiko-feature-card {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.jiko-feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.jiko-feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.jiko-feature-card p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-sub);
}

/* Flow steps */
.flow-steps {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow-step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.flow-step:last-child {
  border-bottom: none;
}

.flow-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sub);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.flow-step-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.flow-step-body p {
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--text-sub);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
}

.faq-q::before {
  content: 'Q';
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-sub);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}

.faq-a {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-sub);
  padding-left: 28px;
}


/* ==============================================
   CONTACT PAGE
   ============================================== */
.contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-method-card {
  text-align: center;
  padding: 48px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-method-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.contact-method-icon--line {
  background: #E6F9EC;
  color: #06C755;
}

.contact-method-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-method-num {
  font-family: var(--font-sub);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-method-hours {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.7;
}

.btn-line {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 28px;
  background: #06C755;
  color: #fff;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  transition: background var(--transition);
}

.btn-line:hover {
  background: #05a847;
}

/* Contact form */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.required {
  font-size: 11px;
  color: #E25C5C;
  margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
}

.form-submit {
  text-align: center;
  margin-top: 12px;
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 16px;
}

/* Access */
.access-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.map-placeholder {
  width: 100%;
  height: 360px;
  background: var(--bg-sub);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
}

.map-placeholder small {
  font-size: 12px;
  display: block;
  margin-top: 6px;
}

.access-table {
  width: 100%;
}

.access-table th,
.access-table td {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  vertical-align: top;
}

.access-table th {
  width: 80px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  padding-right: 20px;
}

.access-table td {
  color: var(--text-sub);
  line-height: 1.7;
}


/* ==============================================
   SUBPAGES — Responsive
   ============================================== */
@media (max-width: 940px) {
  .menu-detail {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .menu-detail.reverse .menu-detail-img,
  .menu-detail.reverse .menu-detail-body {
    order: unset;
  }

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

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

  .staff-detail {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .staff-detail-img img {
    max-width: 320px;
  }

  .staff-list-card {
    grid-template-columns: 1fr;
  }

  .staff-list-card-img {
    aspect-ratio: 3 / 5;
    min-height: auto;
  }

  .staff-list-card-body {
    padding: 24px;
  }

  .jiko-feature-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

@media (max-width: 540px) {
  .page-hero-text h1 {
    font-size: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .jiko-feature-grid {
    grid-template-columns: 1fr;
  }

  .staff-detail-name {
    font-size: 22px;
  }
}


/* ==============================================
   RESPONSIVE — 320px
   ============================================== */
@media (max-width: 360px) {
  .container {
    padding: 0 16px;
  }

  .hero-catchcopy {
    font-size: 24px;
  }

  .btn-primary,
  .btn-outline {
    padding: 12px 28px;
    font-size: 13px;
  }
}


/* ==============================================
   VIDEO INTEGRATION
   ============================================== */

/* About video */
.about-video {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  object-fit: cover;
  object-position: center 20%;
  aspect-ratio: 3 / 5;
}

.about-video-fallback {
  display: none;
}

@media (max-width: 768px) {
  .about-video {
    display: none;
  }
  .about-video-fallback {
    display: block;
    width: 100%;
    border-radius: var(--radius);
  }
}

/* Hero video */
video.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hover trigger container (service / staff cards) */
.video-hover-trigger {
  position: relative;
  overflow: hidden;
}

.video-hover-trigger img {
  transition: opacity 0.4s ease;
  position: relative;
  z-index: 1;
}

.video-hover-trigger video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

/* Service card media wrapper */
.service-card-media {
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

/* Staff card media wrapper */
.staff-card-media {
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

/* Movie section (LP video) */
.movie-section {
  padding: 100px 0;
}

.movie-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.movie-player {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}

/* services.html: menu detail video */
.menu-detail-video {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

/* staff.html: detail video */
.staff-detail-video {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center 20%;
  display: block;
  aspect-ratio: 3 / 5;
}

/* staff.html: list card video hover */
.staff-list-card-media {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.staff-list-card-media .staff-list-card-img {
  width: 100%;
  aspect-ratio: 3 / 5;
  object-fit: cover;
  object-position: center 20%;
  transition: opacity 0.4s ease;
  position: relative;
  z-index: 1;
}

.staff-list-card-media video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

/* Mobile: hide all videos */
@media (max-width: 768px) {
  .video-hover-trigger video,
  video.hero-photo,
  .about-video,
  .menu-detail-video,
  .staff-detail-video,
  .staff-list-card-media video,
  .movie-wrapper {
    display: none;
  }

  /* Show fallback img in hero on mobile */
  .hero-right .hero-photo-fallback {
    display: block;
  }
}

/* Hide hero fallback img on desktop */
.hero-right .hero-photo-fallback {
  display: none;
}

@media (max-width: 768px) {
  .hero-right .hero-photo-fallback {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 940px) {
  .staff-detail-video {
    max-width: 320px;
  }
}
