/* 챗 베이커 — 재즈 LP 베이커리 테마 */
:root {
  /* 카페 벽면 — 연한 에메랄드·세이지 */
  --emerald-rgb: 168, 214, 200;
  --emerald: #a8d6c8;
  --emerald-light: #c8e8de;
  --emerald-mint: #e4f3ee;
  --emerald-dark: #3a7d6f;
  --emerald-rich: #7eb5a6;
  --cream: #f7f3ed;
  --cream-dark: #ebe4d6;
  --ink: #1a1714;
  --ink-muted: #5c564e;
  --gold: #c9a227;
  --white: #ffffff;
  --shadow: 0 8px 32px rgba(var(--emerald-rgb), 0.14);
  --radius: 12px;
  --font-serif: "Playfair Display", "Noto Serif KR", Georgia, serif;
  --font-sans: "Pretendard", "Noto Sans KR", -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
}

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

a {
  color: var(--emerald-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(247, 243, 237, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(var(--emerald-rgb), 0.12);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: var(--shadow);
}

/* 로고 있을 때 — 벽면색 연에메랄드 헤더 */
.site-header.has-brand-logo {
  background: rgba(var(--emerald-rgb), 0.97);
  border-bottom-color: rgba(58, 125, 111, 0.1);
}

.site-header.has-brand-logo .logo-ko,
.site-header.has-brand-logo .logo-en {
  color: var(--emerald-dark);
}

.site-header.has-brand-logo .logo-en {
  color: rgba(58, 125, 111, 0.85);
}

.site-header.has-brand-logo .nav-desktop a {
  color: var(--emerald-dark);
}

.site-header.has-brand-logo .nav-desktop a:hover {
  color: var(--ink);
}

.site-header.has-brand-logo .menu-toggle {
  color: var(--emerald-dark);
}

.site-header.has-brand-logo .logo-img {
  filter: none;
}

.logo.has-logo-img .logo-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

.logo-img {
  width: auto;
  height: 36px;
  max-width: 140px;
  object-fit: contain;
  object-position: left center;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo:hover {
  text-decoration: none;
}

.logo-ko {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.logo-en {
  font-size: 0.72rem;
  color: var(--emerald);
  letter-spacing: 0.12em;
  text-transform: lowercase;
  font-weight: 500;
}

.nav-desktop {
  display: none;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-desktop a {
  color: var(--ink-muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-desktop a:hover {
  color: var(--emerald);
  text-decoration: none;
}

.menu-toggle {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--emerald-dark);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 0 1.25rem;
  border-top: 1px solid var(--cream-dark);
}

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

.nav-mobile a {
  padding: 0.5rem 0;
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  .nav-mobile {
    display: none !important;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--emerald-light) 0%,
    var(--emerald) 42%,
    var(--emerald-mint) 100%
  );
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero.has-photo {
  background: var(--emerald);
}

.hero.has-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(var(--emerald-rgb), 0.72) 0%,
    rgba(var(--emerald-rgb), 0.38) 45%,
    rgba(0, 0, 0, 0.18) 100%
  );
  pointer-events: none;
}

.hero:not(.has-photo)::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(201, 162, 39, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(0, 0, 0, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero-vinyl {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle at center,
    #111 0px,
    #111 2px,
    #222 3px,
    #222 4px
  );
  border: 12px solid #0a0a0a;
  opacity: 0.35;
  animation: spin 24s linear infinite;
}

@keyframes spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 0 4rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.hero-title {
  margin: 0 0 0.35rem;
  line-height: 1.1;
}

.hero-title-ko {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
}

.hero-title-en {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  opacity: 0.92;
  margin-top: 0.15rem;
}

.hero-fullname {
  opacity: 0.88;
  font-size: 0.95rem;
  margin: 0 0 0.5rem;
  letter-spacing: 0.04em;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  opacity: 0.85;
  max-width: 36ch;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat strong {
  display: block;
  font-size: 1.5rem;
  font-family: var(--font-serif);
}

.stat span {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 1rem;
  color: var(--ink);
}

.section-lead {
  color: var(--ink-muted);
  max-width: 52ch;
  margin-bottom: 2.5rem;
}

/* About */
.about-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.about-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.about-card h3 {
  font-family: var(--font-serif);
  margin-top: 0;
  color: var(--emerald-dark);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li::before {
  content: "♪";
  position: absolute;
  left: 0;
  color: var(--emerald);
}

/* Menu */
.menu-boards-hint {
  margin: -0.5rem 0 1rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.menu-boards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.menu-board {
  margin: 0;
  width: 10rem;
  flex-shrink: 0;
}

.menu-board-thumb {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  cursor: zoom-in;
  transition: box-shadow 0.2s, transform 0.2s;
}

.menu-board-thumb:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.menu-board-thumb:focus-visible {
  outline: 2px solid var(--emerald);
  outline-offset: 2px;
}

.menu-board-thumb img {
  width: 100%;
  height: 7.5rem;
  object-fit: cover;
  object-position: top center;
}

.menu-board-thumb-label {
  display: block;
  padding: 0.35rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--emerald);
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
}

.menu-board-caption {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: var(--ink-muted);
  text-align: center;
  line-height: 1.3;
}

/* 이미지 라이트박스 */
body.lightbox-open {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.image-lightbox[hidden] {
  display: none !important;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  border: none;
  background: rgba(var(--emerald-rgb), 0.88);
  cursor: pointer;
}

.image-lightbox-inner {
  position: relative;
  z-index: 1;
  max-width: min(960px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.image-lightbox-inner img {
  max-width: 100%;
  max-height: calc(100vh - 6rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.image-lightbox-caption {
  margin: 0.75rem 0 0;
  color: var(--white);
  font-size: 0.95rem;
  text-align: center;
}

.menu-section {
  background: var(--white);
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.menu-tab {
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--cream-dark);
  background: var(--cream);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--ink-muted);
  transition: all 0.2s;
}

.menu-tab.active,
.menu-tab:hover {
  background: var(--emerald);
  color: var(--white);
  border-color: var(--emerald);
}

.menu-panel {
  display: none;
}

.menu-panel.active {
  display: block;
}

.menu-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 600px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid transparent;
}

.menu-item.highlight {
  border-left-color: var(--gold);
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.08), var(--cream));
}

.menu-item-info h4 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.menu-item-info p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.menu-price {
  font-weight: 600;
  color: var(--emerald-dark);
  white-space: nowrap;
}

.menu-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

/* Events */
.events-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.event-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.event-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 0.25rem 0.65rem;
  background: var(--emerald);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.event-date {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
}

.event-card h3 {
  font-family: var(--font-serif);
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
}

.event-card p {
  margin: 0;
  flex: 1;
  font-size: 0.95rem;
  color: var(--ink-muted);
}

/* Location */
.location-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.store-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}

.store-card h3 {
  font-family: var(--font-serif);
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.store-flagship {
  font-size: 0.7rem;
  background: var(--gold);
  color: var(--ink);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-weight: 600;
}

.store-meta {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

@media (min-width: 600px) {
  .store-meta {
    grid-template-columns: 1fr 1fr;
  }
}

.store-landmark {
  color: var(--ink-muted);
  margin: 0 0 1rem;
}

.store-meta dt,
.store-meta-item h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--emerald);
  margin: 0 0 0.25rem;
}

.store-meta dd,
.store-meta-item p {
  margin: 0;
}

.store-meta-item h4 {
  font-family: var(--font-sans);
  font-weight: 600;
}

.about-meta {
  margin-top: 1rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
}


/* Channels bar */
.channels-section {
  background: var(--white);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--cream-dark);
  margin-top: -1px;
}

.channels-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .channels-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}

.channel-card {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.1rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.2s, transform 0.2s;
}

.channel-card:hover {
  text-decoration: none;
  border-color: var(--emerald-light);
  transform: translateY(-2px);
}

.channel-card strong {
  font-size: 0.95rem;
  color: var(--emerald-dark);
}

.channel-card span {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-top: 0.25rem;
}

/* Instagram */
.ig-accounts {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .ig-accounts {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ig-account {
  padding: 1.5rem;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.ig-account-title {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  color: var(--emerald);
}

.ig-account-handle {
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.ig-account-bio {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--ink-muted);
}

.ig-account .ig-highlights {
  margin-bottom: 1rem;
}

.ig-account .btn {
  width: 100%;
}

.instagram-section {
  background: var(--white);
}

.ig-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 600px) {
  .ig-highlights {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ig-highlight {
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: var(--cream);
  border-radius: var(--radius);
}

.ig-highlight-ring {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--emerald);
  background: var(--cream-dark);
  box-shadow: 0 2px 8px rgba(var(--emerald-rgb), 0.25);
}

.ig-highlight-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ig-highlight-ring--fallback {
  background: linear-gradient(135deg, var(--emerald), var(--gold));
}

.ig-highlight strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.ig-highlight p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.ig-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.ig-btn-outline {
  color: var(--emerald);
  border-color: var(--emerald);
}

.map-btn-naver,
.review-btn-naver {
  color: var(--emerald);
  border-color: var(--emerald);
}

.review-stat-link {
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s;
}

.review-stat-link:hover {
  text-decoration: none;
  transform: translateY(-3px);
}

.review-platform {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--emerald);
  letter-spacing: 0.05em;
}

.review-card cite {
  display: block;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
}

.reviews-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.gallery-link {
  text-decoration: none;
  color: inherit;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-link:hover {
  text-decoration: none;
  transform: scale(1.02);
  box-shadow: var(--shadow);
}

.gallery-emoji {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.gallery-label {
  font-weight: 600;
  font-size: 0.95rem;
}

.gallery-more {
  font-size: 0.75rem;
  opacity: 0.85;
  margin-top: 0.5rem;
}

.contact-phone a {
  color: var(--gold);
  font-weight: 500;
}

.form-submit {
  width: 100%;
}

.float-cta {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 90;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.float-cta:hover {
  text-decoration: none;
  transform: scale(1.08);
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  padding: 0.35rem 0;
  font-size: 0.95rem;
}

.hours-list small {
  display: block;
  color: var(--ink-muted);
  font-size: 0.8rem;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 1.5rem;
  aspect-ratio: 16/9;
  background: var(--cream-dark);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

/* Contact */
.contact-section {
  background: var(--emerald-rich);
  color: var(--white);
}

.contact-section .section-label {
  color: rgba(255, 255, 255, 0.7);
}

.contact-section .section-title {
  color: var(--white);
}

.contact-section .section-lead {
  color: rgba(255, 255, 255, 0.85);
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }
}

.contact-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.contact-type {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.contact-type.active {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.contact-form {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 500px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-message {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: none;
}

.form-message.success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
}

.form-message.error {
  display: block;
  background: #ffebee;
  color: #c62828;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-top: 1rem;
}

/* Reviews */
.reviews-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.review-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
  .review-stats-row {
    grid-template-columns: 1fr;
  }
}

.review-stat-card {
  text-align: center;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.review-stat-platform {
  display: block;
  font-size: 0.75rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.review-stat-rating {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--emerald-dark);
  line-height: 1.1;
}

.review-stat-meta {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.review-tag {
  padding: 0.35rem 0.85rem;
  background: rgba(var(--emerald-rgb), 0.12);
  color: var(--emerald-dark);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
}

.reviews-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.review-card {
  margin: 0;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--emerald);
}

.review-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.review-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.review-card cite {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.review-card p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.7;
}

.review-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.review-card-tags span {
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  background: var(--cream);
  color: var(--ink-muted);
  border-radius: 4px;
}

.reviews-cta {
  text-align: center;
  margin-top: 2rem;
}

.reviews-cta p {
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.about-photo-pending {
  padding: 1rem 1.25rem;
  background: rgba(var(--emerald-rgb), 0.1);
  border-radius: var(--radius);
  border: 1px dashed var(--emerald-light);
  color: var(--ink-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.about-visual {
  margin: 0 0 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-height: 420px;
  position: relative;
}

.about-visual-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0.5rem 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  color: var(--white);
  font-size: 0.85rem;
}

.about-visual img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
}

/* External photo links (Naver / Google) */
.external-photos {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 600px) {
  .external-photos {
    grid-template-columns: 1fr 1fr;
  }
}

.external-photo-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  border: 2px solid var(--cream-dark);
  background: var(--white);
  transition: transform 0.2s, box-shadow 0.2s;
}

.external-photo-card:hover {
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.external-photo-naver {
  border-color: #03c75a;
}

.external-photo-google {
  border-color: #4285f4;
}

.external-photo-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
}

.external-photo-naver .external-photo-icon {
  background: #03c75a;
}

.external-photo-google .external-photo-icon {
  background: #4285f4;
}

.external-photo-card strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.external-photo-card p {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.external-photo-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--emerald);
}

/* Gallery */
.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.gallery-tab {
  padding: 0.5rem 1rem;
  border: 1px solid var(--cream-dark);
  background: var(--white);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--ink-muted);
  transition: all 0.2s;
}

.gallery-tab.active,
.gallery-tab:hover {
  background: var(--emerald);
  color: var(--white);
  border-color: var(--emerald);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  position: relative;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}

.gallery-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.gallery-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  color: var(--emerald-dark);
}

.gallery-videos-wrap {
  margin-bottom: 1.5rem;
}

.gallery-video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-video {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--ink);
}

.gallery-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #111;
}

.gallery-video figcaption {
  padding: 0.6rem 0.85rem;
  background: var(--cream-dark);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0 2rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand-names {
  margin: 0 0 0.5rem;
  line-height: 1.35;
}

.footer-brand .logo-ko {
  display: block;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

.footer-logo-en {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  font-weight: 500;
  margin-top: 0.15rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

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

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.8rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: var(--gold);
  font-weight: 500;
}
