/* ============================================================
   欲望小镇 (Lust Town) - Small-Town Charm Theme
   Warm brick reds, vintage cream, rustic storefront aesthetic
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
  --brick: #c44d3a;
  --brick-dark: #a83227;
  --brick-light: #e07b5e;
  --cream: #faf5eb;
  --cream-warm: #f5ede0;
  --wood: #5d4037;
  --wood-dark: #3e2723;
  --wood-light: #8d6e63;
  --gold: #b8860b;
  --gold-light: #d4a843;
  --storefront-green: #5c7a4a;
  --storefront-blue: #4a6d7a;
  --text: #3e2723;
  --text-light: #6d5d52;
  --text-muted: #8d7d72;
  --bg: #faf5eb;
  --bg-card: #fffdf8;
  --bg-alt: #f5ede0;
  --border: #e0d5c5;
  --border-dark: #c4b5a0;
  --shadow-sm: 0 2px 8px rgba(62, 39, 35, 0.06);
  --shadow-md: 0 4px 16px rgba(62, 39, 35, 0.10);
  --shadow-lg: 0 8px 32px rgba(62, 39, 35, 0.12);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --font-heading: 'Noto Serif SC', 'STSong', 'SimSun', 'Songti SC', Georgia, serif;
  --font-body: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', sans-serif;
  --max-width: 1200px;
  --header-height: 64px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  min-height: 100vh;
}

a {
  color: var(--brick);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--brick-dark);
  text-decoration: underline;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--wood-dark);
  line-height: 1.3;
  margin-bottom: 0.5em;
}

h1 { font-size: 2.4rem; font-weight: 700; }
h2 { font-size: 1.8rem; font-weight: 600; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1em; }

ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--wood-dark);
  border-bottom: 3px solid var(--brick);
  box-shadow: var(--shadow-md);
  height: var(--header-height);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.site-logo:hover {
  color: var(--gold-light);
  text-decoration: none;
}
.site-logo .logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brick), var(--gold));
  color: var(--cream);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* --- Navigation --- */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  color: var(--cream);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transition);
  text-decoration: none;
}
.main-nav a:hover,
.main-nav a.active {
  background: rgba(255,255,255,0.1);
  color: var(--gold-light);
  text-decoration: none;
}
.main-nav a.active {
  background: rgba(196, 77, 58, 0.2);
  color: var(--gold-light);
}

/* Nav CTA Button */
.nav-cta {
  background: var(--brick) !important;
  color: var(--cream) !important;
  font-weight: 600 !important;
  border-radius: var(--radius) !important;
  padding: 8px 20px !important;
  margin-left: 8px;
  transition: all var(--transition) !important;
  border: 2px solid transparent;
}
.nav-cta:hover {
  background: var(--brick-light) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(196, 77, 58, 0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 101;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--cream);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, var(--wood-dark) 0%, #4e342e 30%, var(--cream-warm) 70%, var(--cream) 100%);
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196, 77, 58, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(184, 134, 11, 0.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brick), var(--gold), var(--storefront-green), var(--gold), var(--brick));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.8rem;
  color: var(--cream);
  margin-bottom: 0.3em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.hero h1 .accent {
  color: var(--gold-light);
}
.hero .subtitle {
  font-size: 1.15rem;
  color: rgba(250, 245, 235, 0.85);
  margin-bottom: 1.5em;
  font-weight: 400;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2em;
}
.hero-tags span {
  background: rgba(250, 245, 235, 0.12);
  color: var(--cream);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid rgba(250, 245, 235, 0.2);
  backdrop-filter: blur(4px);
}

.hero-visual {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 2em;
  height: 320px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--wood) 0%, var(--wood-light) 30%, var(--cream-warm) 60%, var(--bg-card) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--cream);
  position: relative;
  overflow: hidden;
  border: 3px solid var(--border-dark);
  box-shadow: var(--shadow-lg);
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(62,39,35,0.2) 100%),
    radial-gradient(circle at 30% 40%, rgba(196,77,58,0.15) 0%, transparent 60%);
}

.btn-hero {
  display: inline-block;
  background: var(--brick);
  color: #fff;
  padding: 14px 40px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
  border: 2px solid transparent;
  box-shadow: 0 4px 16px rgba(196, 77, 58, 0.4);
}
.btn-hero:hover {
  background: var(--brick-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 77, 58, 0.5);
  color: #fff;
  text-decoration: none;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, var(--wood-dark), #4e342e);
  padding: 40px 24px;
  text-align: center;
  position: relative;
  border-bottom: 3px solid var(--brick);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center, rgba(196,77,58,0.1) 0%, transparent 60%);
}
.page-hero h1 {
  color: var(--cream);
  font-size: 2.2rem;
  position: relative;
  z-index: 1;
}
.page-hero .page-subtitle {
  color: rgba(250, 245, 235, 0.8);
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.breadcrumbs a {
  color: var(--brick);
}
.breadcrumbs span {
  margin: 0 6px;
}

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

.section {
  margin-bottom: 56px;
}

.section-title {
  text-align: center;
  margin-bottom: 36px;
  position: relative;
}
.section-title h2 {
  display: inline-block;
  position: relative;
  font-size: 1.8rem;
  color: var(--wood-dark);
}
.section-title h2::after {
  content: '';
  display: block;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, var(--brick), var(--gold));
  margin: 8px auto 0;
  border-radius: 2px;
}
.section-title p {
  color: var(--text-light);
  margin-top: 8px;
}

/* --- Info Cards --- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--brick-light);
}
.info-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}
.info-card h3 {
  font-size: 1.1rem;
  color: var(--wood-dark);
  margin-bottom: 6px;
}
.info-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

/* --- Feature Cards --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 4px solid var(--brick);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--gold);
}
.feature-card h3 {
  font-size: 1.2rem;
  color: var(--wood-dark);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}
.feature-card .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream-warm);
  font-size: 1.4rem;
  margin-bottom: 14px;
}

/* --- Gallery / Screenshots --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--border);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 16/10;
  background: var(--cream-warm);
}
.gallery-item:hover {
  border-color: var(--brick);
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}
.gallery-item .gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--text-muted);
  background: linear-gradient(135deg, var(--cream-warm), var(--bg-card));
}

/* --- Guide Steps --- */
.guide-steps {
  counter-reset: guide-step;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.guide-step {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 24px 24px 80px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.guide-step:hover {
  border-color: var(--brick-light);
  box-shadow: var(--shadow-md);
}
.guide-step::before {
  counter-increment: guide-step;
  content: counter(guide-step);
  position: absolute;
  left: 20px;
  top: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brick);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.guide-step h3 {
  margin-bottom: 6px;
}
.guide-step p {
  color: var(--text-light);
  margin: 0;
}

/* --- Story Blocks --- */
.story-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 4px solid var(--gold);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.story-block:hover {
  border-left-color: var(--brick);
  box-shadow: var(--shadow-md);
}
.story-block h3 {
  color: var(--wood-dark);
  margin-bottom: 8px;
}
.story-block .chapter-label {
  display: inline-block;
  background: var(--cream-warm);
  color: var(--brick);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 12px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.story-block p {
  color: var(--text-light);
}

/* --- Character Cards --- */
.char-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.char-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.char-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--brick-light);
}
.char-avatar {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--cream-warm), var(--bg-card));
  border-bottom: 2px solid var(--border);
}
.char-card .char-info {
  padding: 20px;
}
.char-card h3 {
  font-size: 1.15rem;
  color: var(--wood-dark);
  margin-bottom: 4px;
}
.char-card .char-role {
  font-size: 0.85rem;
  color: var(--brick);
  font-weight: 600;
  margin-bottom: 8px;
}
.char-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}
.char-card .char-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

/* --- FAQ Accordion --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--wood-dark);
  text-align: left;
  transition: background var(--transition);
}
.faq-question:hover {
  background: var(--cream-warm);
}
.faq-question .faq-icon {
  font-size: 1.2rem;
  color: var(--brick);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item.active .faq-question .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.active .faq-answer {
  max-height: 500px;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--wood-dark), var(--wood));
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 32px;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(196,77,58,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(184,134,11,0.15) 0%, transparent 60%);
}
.cta-banner h2 {
  color: var(--cream);
  position: relative;
  z-index: 1;
}
.cta-banner p {
  color: rgba(250, 245, 235, 0.8);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.cta-banner .btn-hero {
  position: relative;
  z-index: 1;
}

/* --- Tip Box --- */
.tip-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--storefront-green);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
  box-shadow: var(--shadow-sm);
}
.tip-box h4 {
  color: var(--storefront-green);
  margin-bottom: 6px;
}
.tip-box p {
  color: var(--text-light);
  margin: 0;
}

/* --- Tags --- */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}
.tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 16px;
  font-size: 0.85rem;
  font-weight: 500;
}
.tag-red {
  background: rgba(196, 77, 58, 0.1);
  color: var(--brick);
  border: 1px solid rgba(196, 77, 58, 0.2);
}
.tag-gold {
  background: rgba(184, 134, 11, 0.1);
  color: var(--gold);
  border: 1px solid rgba(184, 134, 11, 0.2);
}
.tag-green {
  background: rgba(92, 122, 74, 0.1);
  color: var(--storefront-green);
  border: 1px solid rgba(92, 122, 74, 0.2);
}
.tag-wood {
  background: rgba(93, 64, 55, 0.08);
  color: var(--wood);
  border: 1px solid rgba(93, 64, 55, 0.15);
}

/* --- Table --- */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.info-table th,
.info-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.info-table th {
  background: var(--cream-warm);
  color: var(--wood-dark);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  width: 30%;
}
.info-table td {
  color: var(--text-light);
  font-size: 0.95rem;
}
.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

/* --- Blockquote --- */
blockquote {
  background: var(--bg-alt);
  border-left: 4px solid var(--brick);
  padding: 16px 24px;
  margin: 20px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-light);
  font-style: italic;
}

/* --- Divider --- */
.storefront-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 2px;
}
.storefront-divider::before,
.storefront-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* --- Lightbox --- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 201;
  transition: color var(--transition);
}
.lightbox-close:hover {
  color: var(--brick-light);
}

/* --- Footer --- */
.site-footer {
  background: var(--wood-dark);
  color: rgba(250, 245, 235, 0.7);
  text-align: center;
  padding: 24px;
  font-size: 0.85rem;
  border-top: 3px solid var(--brick);
}

/* --- Utility --- */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* --- Responsive --- */
@media (max-width: 768px) {
  :root {
    --header-height: 56px;
  }

  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .hero h1 { font-size: 2rem; }
  .hero { padding: 48px 16px 36px; }

  .hamburger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--wood-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 2px;
    transform: translateX(-100%);
    transition: transform var(--transition);
    z-index: 99;
    overflow-y: auto;
  }
  .main-nav.open {
    transform: translateX(0);
  }
  .main-nav a {
    padding: 14px 16px;
    font-size: 1.05rem;
    border-radius: var(--radius-sm);
  }
  .nav-cta {
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
    justify-content: center;
  }

  .hero-visual {
    height: 200px;
    font-size: 3rem;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .char-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .guide-step {
    padding: 20px 16px 20px 64px;
  }
  .guide-step::before {
    left: 12px;
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }

  .info-table th,
  .info-table td {
    padding: 10px 14px;
    font-size: 0.85rem;
  }

  .container {
    padding: 24px 16px 36px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.6rem; }
  .hero h1 { font-size: 1.7rem; }
  .hero .subtitle { font-size: 0.95rem; }
  .page-hero h1 { font-size: 1.6rem; }

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

  .cta-banner {
    padding: 32px 20px;
  }

  .breadcrumbs {
    padding: 12px 16px 0;
    font-size: 0.8rem;
  }
}
