/* breaking news */
.breaking {
  padding: 3rem 1.5rem;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.breaking-card {
  background: linear-gradient(135deg, var(--color-card), var(--color-white));
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-card-strong);
  border: 1px solid #f0e4d8;
}

.breaking-badge {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.breaking-vid {
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius-md);
  margin: 0.8rem auto 1.2rem;
  display: block;
  box-shadow: 0 4px 20px rgb(0 0 0 / 8%);
}

.breaking-msg {
  font-size: 1.1rem;
  color: var(--color-title);
  line-height: 1.9;
  letter-spacing: 0.06em;
}

.breaking-date {
  font-size: 0.8rem;
  color: var(--color-footer);
  margin-top: 0.8rem;
}

.breaking-archive-link {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.8rem;
  color: var(--color-label);
  text-decoration: none;
  border: 1px solid var(--color-border);
  border-radius: 30px;
  padding: 0.4rem 1.2rem;
  transition: all 0.2s;
}

.breaking-archive-link:hover {
  background: #f0e4d8;
  color: var(--color-title);
  border-color: #d5c8ba;
}

/* face cycle */
.face-cycle {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  background: var(--color-face-bg);
}

.face-cycle img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

.face-cycle img.active {
  opacity: 1;
}

.face-cycle .dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.face-cycle .dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgb(255 255 255 / 40%);
  cursor: pointer;
  transition: background 0.3s;
}

.face-cycle .dots span.live {
  background: var(--color-white);
}

/* instagram */
.ig-section {
  text-align: center;
  padding: 2rem 1.5rem 3rem;
  max-width: 400px;
  margin: 0 auto;
}

.ig-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.ig-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.ig-handle {
  font-size: 1.2rem;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.ig-handle a {
  color: var(--color-accent);
  text-decoration: none;
}

.ig-handle a:hover {
  text-decoration: underline;
}

.ig-note {
  font-size: 0.75rem;
  color: var(--color-footer);
  margin-top: 0.5rem;
}

/* hero-section.webc */
.hero {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
      background: var(--color-hero-bg);
    }
    .hero-bg {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.7);
    }
    .hero-text {
      position: absolute;
      bottom: 4rem;
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      color: var(--color-white);
      width: 90%;
      max-width: 640px;
      z-index: 2;
    }
    .title-char {
      display: inline-block;
      font-size: clamp(1.65rem, 8vw, 4rem);
      font-weight: 400;
      letter-spacing: -0.02em;
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
      opacity: 0;
    }
    .title-grp {
      display: inline-block;
      white-space: nowrap;
    }
    .title-grp + .title-grp {
      margin-left: 0.18em;
    }
    .sub {
      font-size: clamp(0.85rem, 2.5vw, 1.1rem);
      margin-top: 0.8rem;
      opacity: 0;
      letter-spacing: 0.12em;
    }
    .sub .symbol {
      display: inline-block;
      vertical-align: middle;
      transform: translateY(-0.08em);
    }
    .breed {
      font-size: 0.8rem;
      margin-top: 0.4rem;
      opacity: 0;
      color: rgba(255, 255, 255, 0.7);
    }
    @media (max-width: 480px) {
      .title-char { font-size: clamp(1.15rem, 6vw, 1.8rem); letter-spacing: 0; }
      .title-grp + .title-grp { margin-left: 0.1em; }
      .sub { font-size: 0.75rem; letter-spacing: 0.08em; }
      .breed { font-size: 0.65rem; }
    }

/* profile-section.webc */
.profile-card {
      background: var(--color-white);
      border-radius: var(--radius-lg);
      padding: 2.5rem 2rem;
      box-shadow: var(--shadow-card);
    }
    .profile-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem;
    }
    .profile-item {
      text-align: center;
      padding: 0.8rem 0;
      border-radius: var(--radius-sm);
      background: var(--color-card);
    }
    .profile-item .label {
      font-size: 0.7rem;
      color: var(--color-label);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .profile-item .value {
      font-size: 1.2rem;
      margin-top: 0.2rem;
      color: var(--color-text);
      font-weight: 400;
    }
    .profile-desc {
      margin-top: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--color-border);
      font-size: 0.9rem;
      color: var(--color-desc);
      line-height: 2;
      text-align: center;
    }
    @media (max-width: 480px) {
      .profile-grid { grid-template-columns: 1fr; }
    }

/* gallery-section.webc */
.gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 0.8rem;
    }
    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 100;
      background: rgba(0, 0, 0, 0.85);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      cursor: pointer;
    }
    .lightbox.open { pointer-events: auto; }
    .lightbox img {
      max-width: 90vw;
      max-height: 90vh;
      border-radius: var(--radius-sm);
      object-fit: contain;
    }
    .lb-cap {
      position: absolute;
      bottom: 2rem;
      left: 2rem;
      right: 2rem;
      text-align: center;
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.85rem;
      line-height: 1.6;
      letter-spacing: 0.04em;
      text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
      pointer-events: none;
    }
    .lb-close {
      position: fixed;
      top: 1.2rem;
      right: 1.5rem;
      z-index: 110;
      background: none;
      border: none;
      color: var(--color-white);
      font-size: 1.8rem;
      cursor: pointer;
      opacity: 0.7;
      transition: opacity 0.2s;
      line-height: 1;
    }
    .lb-close:hover { opacity: 1; }
    @media (max-width: 480px) {
      .gallery-grid { grid-template-columns: 1fr 1fr; }
      .gallery-item img { height: 180px; }
    }

/* gallery-item.webc */
.gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-md);
      cursor: pointer;
    }
    .gallery-item img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      display: block;
      transition: filter 0.3s;
    }
    .gallery-item:hover img {
      filter: brightness(0.9);
    }
    .gallery-item .cap {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 0.5rem 0.7rem;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
      color: var(--color-white);
      font-size: 0.7rem;
      line-height: 1.5;
      letter-spacing: 0.04em;
      opacity: 0;
      transition: opacity 0.3s;
      pointer-events: none;
    }
    .gallery-item:hover .cap { opacity: 1; }

/* instagram-card.webc */
.ig-section { text-align: center; padding: 2rem 1.5rem 3rem; max-width: 400px; margin: 0 auto; }
    .ig-card { background: var(--color-white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-card); }
    .ig-icon { font-size: 2rem; margin-bottom: 0.5rem; }
    .ig-handle { font-size: 1.2rem; color: var(--color-text); letter-spacing: 0.02em; }
    .ig-handle a { color: var(--color-accent); text-decoration: none; }
    .ig-handle a:hover { text-decoration: underline; }
    .ig-note { font-size: 0.75rem; color: var(--color-footer); margin-top: 0.5rem; }

/* site-footer.webc */
footer {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.6rem 1rem;
      padding: 2rem;
      font-size: 0.75rem;
      color: var(--color-footer);
      letter-spacing: 0.08em;
    }
    footer a {
      color: inherit;
      text-decoration: none;
      transition: color 0.2s;
    }
    footer a:hover {
      color: #8a7e70;
    }
    footer .sep {
      color: #d5c8ba;
    }
