/*
Theme Name: LJ Shanghai
Theme URI: https://ljshanghai.com
Author: LJ Shanghai
Author URI: https://ljshanghai.com
Description: Official WordPress theme for LJ Shanghai - Cleveland's premier authentic Shanghainese restaurant. Featuring handmade soup dumplings, classic noodle soups, and traditional Shanghai cuisine at 3142 Superior Ave, Cleveland, OH.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: restaurant, food, chinese, shanghai, one-column, custom-menu, featured-images, full-width-template
Text Domain: lj-shanghai
*/

/* ===== CSS VARIABLES ===== */
:root {
  --red: #C8102E;
  --red-dark: #9B0B22;
  --red-light: #F2E8EA;
  --gold: #D4AF37;
  --gold-light: #F5ECC8;
  --ink: #1A1A1A;
  --ink-soft: #3D3530;
  --cream: #FBF7F2;
  --cream-dark: #F0E9DF;
  --white: #FFFFFF;
  --gray: #888580;
  --gray-light: #E8E4DF;
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Source Serif 4', 'Georgia', serif;
  --font-accent: 'Noto Serif SC', serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.16);
  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
p { margin-bottom: 1rem; }
.section-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  display: block;
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--font-display);
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-top: 12px;
}

/* ===== LAYOUT UTILITIES ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-center .section-title::after { margin-left: auto; margin-right: auto; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grid-4 { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #B8961F;
  border-color: #B8961F;
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== TOP BAR ===== */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  padding: 8px 0;
  letter-spacing: 0.04em;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: var(--gold); }
.topbar a:hover { color: #fff; }

/* ===== HEADER / NAVIGATION ===== */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-mark {
  width: 52px;
  height: 52px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark span {
  font-family: var(--font-accent);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
}
.logo-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.logo-text em {
  font-style: normal;
  font-size: 0.72rem;
  color: var(--red);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.main-nav ul { display: flex; gap: 8px; align-items: center; }
.main-nav a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: var(--radius);
  letter-spacing: 0.04em;
  transition: all var(--transition);
}
.main-nav a:hover, .main-nav .current-menu-item a {
  color: var(--red);
  background: var(--red-light);
}
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--transition);
}
@media (max-width: 900px) {
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); box-shadow: var(--shadow-md); padding: 16px 24px; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .hamburger { display: flex; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A0A08 0%, #2D1010 50%, #1A0A08 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><circle cx="30" cy="30" r="1" fill="rgba(212,175,55,0.15)"/></svg>') repeat;
  opacity: 0.6;
}
.hero-pattern {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  background: var(--red);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.15;
}
.hero-img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 52%;
  object-fit: cover;
  opacity: 0.5;
  mix-blend-mode: luminosity;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 24px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .hero-img { display: none; }
  .hero-pattern { width: 100%; clip-path: none; }
}

/* ===== ANNOUNCEMENT STRIP ===== */
.announcement-strip {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 14px 24px;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
}
.announcement-strip strong { color: var(--gold); }

/* ===== FEATURES ===== */
.features-section { background: var(--white); }
.feature-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-light);
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--red-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--ink); }
.feature-card p { font-size: 0.9rem; color: var(--gray); margin: 0; }

/* ===== ABOUT STRIP ===== */
.about-strip { background: var(--ink); }
.about-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px 0;
  flex-wrap: wrap;
}
.about-strip p { color: rgba(255,255,255,0.7); font-size: 1rem; margin: 0; max-width: 600px; }
.about-strip strong { color: var(--gold); font-size: 1.4rem; font-family: var(--font-display); display: block; margin-bottom: 8px; }

/* ===== MENU PREVIEW ===== */
.menu-section { background: var(--cream); }
.menu-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  border-bottom: 2px solid var(--gray-light);
  flex-wrap: wrap;
}
.menu-tab {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray);
  padding: 12px 24px;
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  letter-spacing: 0.05em;
  transition: all var(--transition);
}
.menu-tab.active, .menu-tab:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}
.menu-grid { display: none; }
.menu-grid.active { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 600px) { .menu-grid.active { grid-template-columns: 1fr; } }
.menu-item-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--gray-light);
  transition: all var(--transition);
}
.menu-item-card:hover { box-shadow: var(--shadow-md); border-color: transparent; transform: translateY(-2px); }
.menu-item-img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}
.menu-item-info { flex: 1; min-width: 0; }
.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.menu-item-cn { font-size: 0.8rem; color: var(--gray); margin-bottom: 6px; font-style: italic; }
.menu-item-desc { font-size: 0.82rem; color: var(--gray); line-height: 1.5; margin: 0; }
.menu-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.menu-item-price { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--red); }
.menu-item-badge {
  font-size: 0.7rem;
  padding: 2px 10px;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.badge-popular { background: var(--gold-light); color: #7A5A00; }
.badge-spicy { background: #FFE8E8; color: var(--red-dark); }
.badge-veg { background: #E8F5E9; color: #2E7D32; }
.menu-cta { text-align: center; margin-top: 48px; }

/* ===== GALLERY PREVIEW ===== */
.gallery-section { background: var(--white); }
.gallery-masonry {
  columns: 3;
  gap: 16px;
}
.gallery-masonry img, .gallery-item {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  break-inside: avoid;
  display: block;
}
.gallery-placeholder {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--gray);
  break-inside: avoid;
}
@media (max-width: 768px) { .gallery-masonry { columns: 2; } }
@media (max-width: 480px) { .gallery-masonry { columns: 1; } }

/* ===== REVIEWS ===== */
.reviews-section { background: var(--cream); }
.reviews-intro { text-align: center; margin-bottom: 56px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gray-light);
  position: relative;
}
.review-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--red-light);
  position: absolute;
  top: 10px;
  left: 22px;
  line-height: 1;
}
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.review-text { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px;
  height: 42px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--red);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.88rem; color: var(--ink); }
.review-platform { font-size: 0.75rem; color: var(--gray); }
.review-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--gold-light); color: #7A5A00; padding: 4px 12px; border-radius: 14px; font-size: 0.72rem; font-weight: 600; margin-top: 8px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--red);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '上海';
  font-family: var(--font-accent);
  font-size: 18rem;
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.05);
  line-height: 1;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-inner h2 { color: var(--white); margin-bottom: 16px; }
.cta-inner p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== INFO SECTION ===== */
.info-section { background: var(--ink); }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
@media (max-width: 900px) { .info-grid { grid-template-columns: 1fr; } }
.info-card h3 {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.info-card p, .info-card address { color: rgba(255,255,255,0.7); font-style: normal; font-size: 0.92rem; line-height: 1.8; margin: 0; }
.info-card a { color: rgba(255,255,255,0.7); }
.info-card a:hover { color: var(--gold); }
.hours-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.hours-row:last-child { border-bottom: none; }
.hours-day { color: rgba(255,255,255,0.55); font-size: 0.85rem; }
.hours-time { color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight: 600; }
.hours-closed { color: var(--red) !important; }

/* ===== FOOTER ===== */
.site-footer { background: #0D0D0D; padding: 32px 0; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--red); color: var(--white); }

/* ===== PAGE HERO (interior pages) ===== */
.page-hero {
  background: var(--ink);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--ink) 60%, var(--red) 200%);
  opacity: 0.9;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); }
.page-hero .breadcrumb { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-top: 12px; }
.page-hero .breadcrumb a { color: var(--gold); }
.page-hero .breadcrumb span { margin: 0 8px; }

/* ===== MENU PAGE ===== */
.menu-page-section { background: var(--cream); }
.menu-category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 56px 0 28px;
}
.menu-category-header:first-child { margin-top: 0; }
.menu-cat-icon { font-size: 1.8rem; }
.menu-cat-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); }
.menu-cat-title span { display: block; font-size: 0.75rem; color: var(--gray); font-family: var(--font-body); font-weight: 400; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 2px; }
.menu-full-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 700px) { .menu-full-grid { grid-template-columns: 1fr; } }
.menu-note {
  background: var(--gold-light);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 20px 24px;
  margin: 48px 0 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* ===== ABOUT PAGE ===== */
.about-story { background: var(--white); }
.about-values { background: var(--cream); }
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border-left: 4px solid var(--red);
}
.value-num { font-family: var(--font-display); font-size: 2.5rem; color: var(--red-light); font-weight: 700; line-height: 1; margin-bottom: 8px; }
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: var(--gray-light); }
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--red);
}
.timeline-year { font-size: 0.75rem; color: var(--red); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.timeline-text { font-size: 0.95rem; color: var(--ink-soft); }

/* ===== BLOG PAGE ===== */
.blog-section { background: var(--cream); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-light);
  transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gray);
}
.blog-card-body { padding: 24px; }
.blog-tag { font-size: 0.72rem; color: var(--red); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.blog-card-title { font-family: var(--font-display); font-size: 1.15rem; margin: 8px 0; line-height: 1.35; }
.blog-card-title a { color: var(--ink); }
.blog-card-title a:hover { color: var(--red); }
.blog-card-meta { font-size: 0.78rem; color: var(--gray); margin-top: 12px; }
.blog-card p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.65; margin: 8px 0 0; }

/* ===== GALLERY PAGE ===== */
.gallery-page { background: var(--cream); }
.gallery-filter {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 24px;
  border: 1.5px solid var(--gray-light);
  background: var(--white);
  color: var(--gray);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.04em;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-light);
}
.gallery-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 768px) { .gallery-full { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .gallery-full { grid-template-columns: 1fr; } }
.gallery-full-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.gallery-full-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-full-item:hover img { transform: scale(1.06); }
.gallery-full-item.tall { grid-row: span 2; aspect-ratio: auto; }

/* ===== CONTACT PAGE ===== */
.contact-section { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--gray-light);
}
.contact-detail { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--red-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-text strong { display: block; font-size: 0.78rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.contact-detail-text p, .contact-detail-text a { font-size: 0.95rem; color: var(--ink); margin: 0; }
.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid var(--gray-light);
}
.contact-form-box h2 { margin-bottom: 8px; }
.contact-form-box > p { color: var(--gray); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.08);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-submit { width: 100%; padding: 16px; font-size: 1rem; margin-top: 8px; }
.form-success {
  display: none;
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #2E7D32;
  font-size: 0.9rem;
  margin-top: 20px;
}
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 24px;
  box-shadow: var(--shadow-sm);
}
.map-embed iframe { width: 100%; height: 260px; border: none; display: block; }

/* ===== SINGLE BLOG POST ===== */
.post-content { background: var(--white); }
.post-body { max-width: 740px; margin: 0 auto; }
.post-body h2 { margin: 40px 0 16px; }
.post-body p { margin-bottom: 1.4rem; color: var(--ink-soft); }
.post-body ul { margin: 0 0 1.4rem 20px; list-style: disc; }
.post-body ul li { margin-bottom: 6px; color: var(--ink-soft); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.6s ease both; }
.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.2s; }
.fade-in-delay-3 { animation-delay: 0.3s; }
.fade-in-delay-4 { animation-delay: 0.4s; }

/* ===== WORDPRESS CORE CLASSES ===== */
.wp-block-image img { border-radius: var(--radius); }
.aligncenter { display: block; margin: 0 auto; }
.screen-reader-text { position: absolute; left: -9999em; }
.sticky { background: var(--red-light); padding: 24px; border-radius: var(--radius-lg); }
