/* ============================================
   INUA ART ATELIER — Main Stylesheet
   Aesthetic: East meets West, Chinese origin
   Palette: Xuan paper, ink, vermillion, gold
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Noto+Serif+SC:wght@300;400;500;600;700&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

/* --- CSS Variables --- */
:root {
  /* Paper & Ink */
  --xuan-paper: #f4ede1;
  --xuan-light: #f9f5ee;
  --xuan-dark: #e8dece;
  --ink-black: #1c1812;
  --ink-medium: #3d372e;
  --ink-light: #6b6259;
  --ink-wash: rgba(28, 24, 18, 0.06);
  
  /* Chinese accents */
  --vermillion: #c23a2e;
  --vermillion-dark: #9e2e24;
  --vermillion-light: #e8554a;
  --gold: #c9a96e;
  --gold-light: #dfc99a;
  --jade: #5a7a6a;
  
  /* Typography */
  --font-display: 'Cormorant Garamond', 'Noto Serif SC', serif;
  --font-body: 'Source Sans 3', 'Noto Sans SC', sans-serif;
  --font-chinese: 'Noto Serif SC', serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;
  
  /* Layout */
  --max-width: 1200px;
  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--xuan-paper);
  color: var(--ink-black);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  /* Subtle paper texture */
  background-image: 
    radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(194, 58, 46, 0.02) 0%, transparent 40%);
}

::selection {
  background-color: var(--vermillion);
  color: var(--xuan-paper);
}

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

a {
  color: var(--vermillion);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--vermillion-dark);
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 500;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

p {
  font-size: 1.05rem;
  max-width: 65ch;
}

.chinese-text {
  font-family: var(--font-chinese);
}

/* --- Decorative Elements --- */

/* Brush stroke divider */
.brush-divider {
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--vermillion), transparent);
  margin: var(--space-md) 0;
  position: relative;
}

.brush-divider::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  width: 60%;
  height: 5px;
  background: var(--vermillion);
  opacity: 0.3;
  filter: blur(2px);
}

/* Ink seal / chop mark */
.ink-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--vermillion);
  color: var(--vermillion);
  font-family: var(--font-chinese);
  font-size: 1.2rem;
  font-weight: 700;
  transform: rotate(-3deg);
  position: relative;
}

.ink-seal::after {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--vermillion);
  opacity: 0.3;
  transform: translate(2px, 2px);
}

/* Section label — vertical text accent */
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-light);
  position: relative;
  padding-left: 2rem;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.2rem;
  height: 1px;
  background-color: var(--gold);
}

/* Vertical decorative line */
.vertical-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin: var(--space-md) auto;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background-color: rgba(244, 237, 225, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--ink-wash);
}

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

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

.nav-logo-seal {
  width: 40px;
  height: 40px;
  border: 2px solid var(--vermillion);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-chinese);
  font-size: 1rem;
  font-weight: 700;
  color: var(--vermillion);
  transform: rotate(-2deg);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-family: var(--font-body);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-medium);
  text-decoration: none;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--vermillion);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--vermillion);
}

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

.nav-cta {
  font-size: 0.8rem !important;
  padding: 0.5rem 1.2rem !important;
  border: 1px solid var(--vermillion) !important;
  color: var(--vermillion) !important;
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  background-color: var(--vermillion) !important;
  color: var(--xuan-paper) !important;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background-color: var(--ink-black);
  transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

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

/* Ink wash background effect */
.hero-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(28, 24, 18, 0.04) 0%, transparent 70%);
  transform: rotate(-15deg);
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--xuan-paper), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: calc(var(--nav-height) + var(--space-lg)) var(--space-md) var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-text {
  max-width: 540px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: var(--space-sm);
  font-weight: 400;
}

.hero h1 {
  margin-bottom: var(--space-sm);
  color: var(--ink-black);
}

.hero h1 em {
  font-style: italic;
  color: var(--vermillion);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink-light);
  font-weight: 300;
  font-style: italic;
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.hero-image-frame {
  position: relative;
  aspect-ratio: 3/4;
  max-height: 600px;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-frame::before {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  bottom: 12px;
  left: 12px;
  border: 1px solid var(--gold);
  z-index: -1;
}

.hero-image-frame .ink-seal {
  position: absolute;
  bottom: 20px;
  right: -24px;
  z-index: 2;
  background: var(--xuan-paper);
}

/* Placeholder for images */
.placeholder-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--xuan-dark) 0%, var(--ink-wash) 50%, var(--xuan-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-light);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  text-align: center;
  padding: var(--space-md);
  position: relative;
  overflow: hidden;
}

/* Ink wash effect on placeholders */
.placeholder-image::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse at 30% 40%, rgba(28, 24, 18, 0.06), transparent 60%);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
  text-decoration: none;
  font-weight: 500;
}

.btn-primary {
  background-color: var(--vermillion);
  color: var(--xuan-paper);
}

.btn-primary:hover {
  background-color: var(--vermillion-dark);
  color: var(--xuan-paper);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(194, 58, 46, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--ink-medium);
  border: 1px solid var(--ink-light);
}

.btn-outline:hover {
  border-color: var(--vermillion);
  color: var(--vermillion);
}

.btn-ghost {
  background: transparent;
  color: var(--vermillion);
  padding: 0.5rem 0;
  letter-spacing: 0.1em;
}

.btn-ghost::after {
  content: '→';
  transition: transform 0.3s ease;
}

.btn-ghost:hover::after {
  transform: translateX(4px);
}

/* ============================================
   SECTIONS — General
   ============================================ */
.section {
  padding: var(--space-xl) var(--space-md);
}

.section-narrow {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  margin-bottom: var(--space-lg);
}

.section-header h2 {
  margin-top: var(--space-xs);
}

.section-bg-alt {
  background-color: var(--xuan-light);
}

.section-bg-dark {
  background-color: var(--ink-black);
  color: var(--xuan-paper);
}

.section-bg-dark .section-label {
  color: var(--gold-light);
}

.section-bg-dark .section-label::before {
  background-color: var(--gold-light);
}

.section-bg-dark .brush-divider {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-bg-dark a {
  color: var(--gold-light);
}

/* ============================================
   INTRO / ABOUT PREVIEW (Home)
   ============================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: center;
}

.intro-image {
  aspect-ratio: 4/5;
  position: relative;
}

.intro-text p {
  margin-bottom: var(--space-sm);
  color: var(--ink-medium);
}

.intro-text .highlight {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink-black);
  font-style: italic;
  line-height: 1.6;
  border-left: 2px solid var(--vermillion);
  padding-left: var(--space-sm);
  margin: var(--space-md) 0;
}

/* ============================================
   WORKSHOP CARDS
   ============================================ */
.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-md);
}

.workshop-card {
  background: var(--xuan-light);
  padding: var(--space-md);
  border: 1px solid rgba(28, 24, 18, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.workshop-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background-color: var(--vermillion);
  transition: height 0.4s ease;
}

.workshop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(28, 24, 18, 0.08);
}

.workshop-card:hover::before {
  height: 100%;
}

.workshop-card-image {
  aspect-ratio: 16/10;
  margin-bottom: var(--space-sm);
  overflow: hidden;
}

.workshop-card-image img,
.workshop-card-image .placeholder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.workshop-card:hover .workshop-card-image img,
.workshop-card:hover .workshop-card-image .placeholder-image {
  transform: scale(1.03);
}

.workshop-card h3 {
  margin-bottom: var(--space-xs);
}

.workshop-card .meta {
  font-size: 0.85rem;
  color: var(--ink-light);
  margin-bottom: var(--space-sm);
}

.workshop-card p {
  color: var(--ink-medium);
  font-size: 0.95rem;
}

.workshop-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  margin-bottom: var(--space-xs);
}

/* ============================================
   SCHEDULE TABLE
   ============================================ */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.schedule-table th {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: left;
  padding: var(--space-sm);
  border-bottom: 2px solid var(--ink-black);
  color: var(--ink-medium);
}

.schedule-table td {
  padding: var(--space-sm);
  border-bottom: 1px solid var(--ink-wash);
  vertical-align: top;
}

.schedule-table tr:hover {
  background-color: var(--ink-wash);
}

.schedule-month {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
}

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}

.pricing-card {
  padding: var(--space-md);
  border: 1px solid rgba(28, 24, 18, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border-color: var(--vermillion);
  position: relative;
}

.pricing-card.featured::after {
  content: 'Most Popular';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--vermillion);
  color: var(--xuan-paper);
  padding: 0.2rem 0.8rem;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--ink-black);
  margin: var(--space-sm) 0;
}

.pricing-amount span {
  font-size: 1.2rem;
  color: var(--ink-light);
}

.pricing-detail {
  color: var(--ink-light);
  font-size: 0.9rem;
  margin-bottom: var(--space-xs);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img,
.gallery-item .placeholder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img,
.gallery-item:hover .placeholder-image {
  transform: scale(1.05);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28, 24, 18, 0);
  transition: background 0.3s ease;
}

.gallery-item:hover::after {
  background: rgba(28, 24, 18, 0.1);
}

/* Masonry-style featured items */
.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

/* Gallery filter tabs */
.gallery-filters {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.gallery-filter-btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-light);
  cursor: pointer;
  padding: 0.4rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
  color: var(--vermillion);
}

.gallery-filter-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--vermillion);
}

/* ============================================
   CONTACT / BOOKING FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
}

.contact-info h3 {
  margin-bottom: var(--space-sm);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.contact-detail-icon {
  width: 20px;
  flex-shrink: 0;
  color: var(--vermillion);
  margin-top: 3px;
}

.contact-detail p {
  font-size: 0.95rem;
  color: var(--ink-medium);
}

.contact-detail strong {
  color: var(--ink-black);
  font-weight: 500;
}

.form-group {
  margin-bottom: var(--space-sm);
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink-black);
  background: var(--xuan-light);
  border: 1px solid rgba(28, 24, 18, 0.12);
  outline: none;
  transition: border-color 0.3s ease;
}

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

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--ink-black);
  color: var(--xuan-dark);
  padding: var(--space-xl) var(--space-md) var(--space-md);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-lg);
}

.footer-brand p {
  color: rgba(244, 237, 225, 0.6);
  font-size: 0.9rem;
  margin-top: var(--space-sm);
  max-width: 300px;
}

.footer h4 {
  color: var(--gold);
  font-size: 0.75rem;
  margin-bottom: var(--space-sm);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(244, 237, 225, 0.6);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: var(--space-md);
  margin-top: var(--space-lg);
  border-top: 1px solid rgba(244, 237, 225, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(244, 237, 225, 0.4);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  color: rgba(244, 237, 225, 0.4);
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

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

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

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* Ink drip animation for page load */
@keyframes inkReveal {
  from { clip-path: inset(0 0 100% 0); }
  to { clip-path: inset(0 0 0 0); }
}

.ink-reveal {
  animation: inkReveal 1s ease-out forwards;
}

/* Brush stroke animation */
@keyframes brushStroke {
  from { width: 0; }
  to { width: 120px; }
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  padding-top: calc(var(--nav-height) + var(--space-xl));
  padding-bottom: var(--space-xl);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-xl);
  align-items: start;
}

.about-portrait {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-md));
}

.about-portrait-frame {
  aspect-ratio: 3/4;
  position: relative;
}

.about-portrait-frame::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  z-index: -1;
}

.about-content h2 {
  margin-bottom: var(--space-md);
}

.about-content p {
  margin-bottom: var(--space-sm);
  color: var(--ink-medium);
}

.about-timeline {
  margin-top: var(--space-lg);
  border-left: 1px solid var(--ink-wash);
  padding-left: var(--space-md);
}

.timeline-item {
  margin-bottom: var(--space-md);
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-md) - 3px);
  top: 8px;
  width: 7px;
  height: 7px;
  background: var(--vermillion);
  border-radius: 50%;
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
}

/* ============================================
   PAGE HEADERS (non-home pages)
   ============================================ */
.page-header {
  padding-top: calc(var(--nav-height) + var(--space-xl));
  padding-bottom: var(--space-lg);
  text-align: center;
}

.page-header h1 {
  margin-top: var(--space-xs);
}

.page-header p {
  margin: var(--space-sm) auto 0;
  color: var(--ink-light);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
}

.page-header .brush-divider {
  margin: var(--space-md) auto;
}

/* ============================================
   SPECIAL SECTIONS
   ============================================ */

/* Monthly theme banner */
.theme-banner {
  background: var(--ink-black);
  color: var(--xuan-paper);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.theme-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(194, 58, 46, 0.08) 0%, transparent 60%);
}

.theme-banner h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  position: relative;
}

.theme-banner .section-label {
  color: var(--gold);
}

.theme-banner .section-label::before {
  background-color: var(--gold);
}

/* Testimonial */
.testimonial {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: var(--space-lg) 0;
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--ink-medium);
  line-height: 1.7;
}

.testimonial cite {
  display: block;
  margin-top: var(--space-sm);
  font-style: normal;
  font-size: 0.85rem;
  color: var(--ink-light);
  letter-spacing: 0.1em;
}

/* Loyalty / Bonus section */
.bonus-card {
  background: linear-gradient(135deg, var(--xuan-light), var(--xuan-paper));
  border: 1px solid var(--gold);
  padding: var(--space-md);
  position: relative;
}

.bonus-card::before {
  content: '✨';
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  font-size: 1.5rem;
}

.bonus-card h4 {
  color: var(--gold);
  margin-bottom: var(--space-xs);
}

/* ============================================
   MAP
   ============================================ */
.map-container {
  width: 100%;
  height: 300px;
  background: var(--xuan-dark);
  border: 1px solid var(--ink-wash);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.6) contrast(1.1);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .hero-image-frame {
    max-height: 400px;
    order: -1;
  }
  
  .intro-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-portrait {
    position: static;
  }
  
  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-item.wide {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(244, 237, 225, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
  }
  
  .nav-links.open {
    display: flex;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .btn {
    text-align: center;
    justify-content: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-item.wide {
    grid-column: span 1;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}
