:root {
    --orange: #F07030;
    --orange-dark: #C85A18;
    --orange-vlight: #FFF0E5;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --soft-white: #F5F5F5;
    --text-dark: #1A1A1A;
    --text-mid: #555555;
    --text-light: #888888;
    --border: #E5E5E5;
    --border-light: #F0F0F0;
  }

  /* ===== Common ===== */
  .container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
  section { padding: 100px 0; }
  .section-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px;
    display: block;
  }
  .section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-dark);
  }
  .section-desc {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 2;
    max-width: 720px;
  }
  .fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-in.visible { opacity: 1; transform: none; }

  /* ===== Page Header (white-orange) ===== */
  .page-header {
    background: linear-gradient(135deg, var(--white) 0%, var(--orange-vlight) 100%);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
  }
  .page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 70% 40%, rgba(240,112,48,0.10) 0%, transparent 70%);
  }
  .page-header .container { position: relative; z-index: 1; }
  .page-header .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 28px;
  }
  .page-header .breadcrumb a { color: var(--text-mid); transition: color 0.2s; }
  .page-header .breadcrumb a:hover { color: var(--orange); }
  .page-header .breadcrumb .sep { color: var(--text-light); }
  .page-header .page-title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 20px;
  }
  .page-header .page-desc {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 2;
    max-width: 700px;
  }

  /* ===== Photo Frame (large) ===== */
  .photo-frame {
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 280px;
    background: var(--orange-vlight);
    border: 1px dashed rgba(240,112,48,0.4);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .photo-frame::after {
    content: attr(data-label);
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--white);
    color: var(--orange-dark);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid var(--border);
  }
  .photo-frame-inner {
    text-align: center;
    color: var(--orange);
  }
  .photo-frame-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    color: var(--orange);
  }
  .photo-frame-text {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--orange-dark);
    margin-bottom: 6px;
  }
  .photo-frame-hint {
    display: block;
    font-size: 0.72rem;
    color: var(--text-light);
    letter-spacing: 0.05em;
  }
  .photo-frame.small { aspect-ratio: 16 / 10; min-height: 180px; }

  /* ===== Main Services ===== */
  .main-services { background: var(--white); }
  .service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    margin-bottom: 96px;
    min-height: 400px;
  }
  .service-block:last-child { margin-bottom: 0; }
  .service-block.reverse .service-block-img { order: 2; }
  .service-block.reverse .service-block-content { order: 1; }
  .service-block-num {
    font-family: 'Bebas Neue', 'Inter', sans-serif;
    font-size: 4.5rem;
    color: rgba(240,112,48,0.20);
    line-height: 1;
    margin-bottom: 12px;
    font-weight: 700;
  }
  .service-block-title {
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
  }
  .service-block-subtitle {
    font-size: 0.78rem;
    color: var(--orange);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .service-block-text {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 2.1;
    margin-bottom: 28px;
  }
  .service-features { list-style: none; padding: 0; margin: 0 0 32px; }
  .service-features li {
    font-size: 0.9rem;
    color: var(--text-dark);
    padding: 10px 0 10px 32px;
    position: relative;
    line-height: 1.8;
    border-bottom: 1px solid var(--border-light);
  }
  .service-features li:last-child { border-bottom: none; }
  .service-features li svg {
    position: absolute;
    left: 0;
    top: 12px;
    width: 20px;
    height: 20px;
    color: var(--orange);
  }
  .service-block-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange-dark);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: gap 0.2s, color 0.2s;
  }
  .service-block-cta:hover { gap: 14px; color: var(--orange); }
  .service-block-cta svg { width: 16px; height: 16px; }

  /* ===== Past Events ===== */
  .past-events { background: var(--off-white); }
  .events-intro { text-align: center; margin-bottom: 64px; }
  .events-intro .section-desc { margin: 0 auto; }
  .events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
  }
  .event-card {
    background: var(--white);
    border-radius: 14px;
    padding: 24px;
    border: 1px solid var(--border-light);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  }
  .event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(240,112,48,0.10);
    border-color: rgba(240,112,48,0.3);
  }
  .event-card .photo-frame { margin-bottom: 20px; aspect-ratio: 16 / 10; min-height: 180px; }
  .event-date {
    display: inline-block;
    background: var(--orange-vlight);
    color: var(--orange-dark);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
  }
  .event-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.5;
  }

  /* ===== CTA ===== */
  .cta-section {
    background: linear-gradient(135deg, var(--orange-vlight) 0%, var(--white) 100%);
    text-align: center;
  }
  .cta-section .section-title { color: var(--text-dark); }
  .cta-section .section-desc { color: var(--text-mid); margin: 0 auto 40px; }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: var(--white);
    padding: 18px 48px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 24px rgba(240,112,48,0.25);
  }
  .btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(200,90,24,0.32);
  }
  .btn-primary svg { width: 18px; height: 18px; }

  /* ===== Responsive ===== */
  @media (max-width: 960px) {
    section { padding: 72px 0; }
    .container { padding: 0 24px; }
    .page-header { padding: 130px 0 60px; }
    .service-block { grid-template-columns: 1fr; gap: 32px; margin-bottom: 64px; min-height: 0; }
    .service-block.reverse .service-block-img { order: 0; }
    .service-block.reverse .service-block-content { order: 0; }
    .events-grid { grid-template-columns: 1fr; }
  }
