/* ===== GREETING ===== */
.greeting-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
  }
  
  .photo-placeholder {
    background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    text-align: center;
    line-height: 1.7;
    border-radius: 6px;
  }
  
  .photo-placeholder.large {
    width: 100%;
    aspect-ratio: 3/4;
    margin-bottom: 16px;
  }
  
  .greeting-name-card {
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    border-left: 3px solid var(--gold);
    padding: 16px 20px;
    border-radius: 4px;
  }
  
  .greeting-role {
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--gold-dark);
    margin-bottom: 4px;
  }
  
  .greeting-name {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 4px;
  }
  
  .greeting-reg { font-size: 11px; color: var(--mid-gray); }
  
  .greeting-text .section-label { text-align: left; }
  
  .greeting-text h2 {
    font-family: var(--font-serif);
    font-size: clamp(22px, 2.5vw, 30px);
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 28px;
  }
  
  .greeting-text p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 2;
    margin-bottom: 18px;
  }
  
  .greeting-sign {
    font-size: 14px;
    color: var(--text-mid);
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--light-gray);
  }
  
  .greeting-sign strong {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--navy);
    display: block;
    margin-top: 8px;
  }
  
  /* ===== PHILOSOPHY ===== */
  .philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  
  .philosophy-card {
    padding: 36px 28px;
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 6px;
    background: rgba(255,255,255,0.04);
  }
  
  .philosophy-num {
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 16px;
  }
  
  .philosophy-card h3 {
    font-family: var(--font-serif);
    font-size: 17px;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 12px;
  }
  
  .philosophy-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.9;
  }
  
  /* ===== HISTORY TIMELINE ===== */
  .history-timeline {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    padding-left: 120px;
  }
  
  .history-timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.2));
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr;
  }
  
  .timeline-item::before {
    content: '';
    position: absolute;
    left: -42px;
    top: 8px;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--gold);
  }
  
  .timeline-year {
    position: absolute;
    left: -118px;
    top: 4px;
    font-size: 14px;
    font-weight: 700;
    color: var(--gold-dark);
    letter-spacing: 0.05em;
    white-space: nowrap;
  }
  
  .timeline-content {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    padding: 24px 28px;
    box-shadow: var(--shadow);
  }
  
  .timeline-content h3 {
    font-family: var(--font-serif);
    font-size: 16px;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 8px;
  }
  
  .timeline-content p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.8;
  }
  
  /* ===== OFFICE ===== */
  .office-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: start;
  }
  
  .office-photo-main {
    width: 100%;
    aspect-ratio: 16/9;
    margin-bottom: 12px;
  }
  
  .photo-placeholder-rect {
    background: linear-gradient(135deg, var(--light-gray), #DDD9D0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mid-gray);
    font-size: 13px;
    border-radius: 6px;
    border: 1px solid var(--light-gray);
  }
  
  .office-photo-sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .office-photo-sub {
    aspect-ratio: 4/3;
  }
  
  .office-info h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  
  .office-info > p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 14px;
  }
  
  .office-dl { margin-top: 28px; }
  
  .office-dl-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 13px;
  }
  
  .office-dl-row:first-child { border-top: 1px solid var(--light-gray); }
  
  .office-dl-row dt { font-weight: 600; color: var(--navy); }
  .office-dl-row dd { color: var(--text-mid); line-height: 1.7; }
  
  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .greeting-inner { grid-template-columns: 1fr; }
    .greeting-photo { display: grid; grid-template-columns: 180px 1fr; gap: 20px; align-items: start; }
    .photo-placeholder.large { aspect-ratio: 1; margin-bottom: 0; }
    .philosophy-grid { grid-template-columns: repeat(2, 1fr); }
    .office-grid { grid-template-columns: 1fr; }
  }
  
  @media (max-width: 600px) {
    .history-timeline { padding-left: 80px; }
    .history-timeline::before { left: 48px; }
    .timeline-item::before { left: -34px; }
    .timeline-year { left: -78px; font-size: 12px; }
    .philosophy-grid { grid-template-columns: 1fr; }
    .greeting-photo { grid-template-columns: 1fr; }
  }