/* ===================== Y-DRT 公式サイト カスタムCSS ===================== */
:root {
  --ydrt-red: #a4342a;
  --ydrt-orange: #e8912d;
  --ydrt-gold: #f4c95d;
  --ydrt-cream: #fdf6ec;
  --ydrt-dark: #3a2418;
  --ydrt-gradient: linear-gradient(135deg, #a4342a 0%, #d1652f 50%, #f0a93f 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  color: var(--ydrt-dark);
  background-color: var(--ydrt-cream);
  margin: 0;
  line-height: 1.8;
}

h1, h2, h3, h4 {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-weight: 900;
  line-height: 1.4;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===================== Header ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 236, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(164, 52, 42, 0.12);
}

.site-header__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand__name {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--ydrt-red);
}

.brand__sub {
  font-size: 0.62rem;
  letter-spacing: 0.03em;
  color: #8a6a4f;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--ydrt-red);
  cursor: pointer;
}

.main-nav {
  display: flex;
  gap: 6px;
}

.main-nav__link {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ydrt-dark);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.main-nav__link:hover {
  background: rgba(164, 52, 42, 0.08);
  color: var(--ydrt-red);
}

.main-nav__link.is-active {
  background: var(--ydrt-gradient);
  color: #fff;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fdf6ec;
    flex-direction: column;
    padding: 10px 20px 20px;
    display: none;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  }
  .main-nav.is-open {
    display: flex;
  }
  .main-nav__link {
    width: 100%;
  }
}

/* ===================== Hero ===================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ydrt-gradient);
  color: #fff;
  padding: 90px 0 110px;
}

.hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.35);
  top: -180px;
  right: -140px;
}

.hero::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 220, 150, 0.18);
  bottom: -140px;
  left: -80px;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.16);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}

.hero__title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin: 0 0 18px;
  text-shadow: 0 4px 18px rgba(0,0,0,0.18);
}

.hero__title small {
  display: block;
  font-size: 0.5em;
  font-weight: 500;
  opacity: 0.92;
  margin-top: 6px;
}

.hero__lead {
  font-size: 1.02rem;
  opacity: 0.95;
  margin-bottom: 30px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #fff;
  color: var(--ydrt-red);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.22);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.14);
}

.btn-dark {
  background: var(--ydrt-red);
  color: #fff;
}
.btn-dark:hover {
  background: #8c2b22;
}

.hero__card {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 20px;
  padding: 26px;
  backdrop-filter: blur(4px);
}

.hero__card p {
  font-size: 0.92rem;
  margin: 0;
  opacity: 0.95;
}

.hero__card .image-slider {
  margin-bottom: 16px;
  border-radius: 14px;
}

.hero__card .image-slider__slide img {
  border-radius: 14px;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ===================== Image Slider(共通コンポーネント) ===================== */
.image-slider {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.image-slider__track {
  position: relative;
  width: 100%;
}

.image-slider__slide {
  display: none;
  width: 100%;
}

.image-slider__slide.is-active {
  display: block;
}

.image-slider__slide img {
  width: 100%;
  display: block;
}

.image-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(58, 24, 18, 0.42);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s ease, transform 0.2s ease;
  font-size: 0.9rem;
}

.image-slider__nav:hover {
  background: rgba(58, 24, 18, 0.68);
  transform: translateY(-50%) scale(1.06);
}

.image-slider__nav--prev {
  left: 10px;
}

.image-slider__nav--next {
  right: 10px;
}

.image-slider__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 3;
}

.image-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease, border-radius 0.2s ease;
}

.image-slider__dot.is-active {
  width: 20px;
  border-radius: 5px;
  background: #fff;
}

/* コンテンツ内(about/activities)のスライダー */
.content-slider {
  overflow: hidden;
}

.content-slider .image-slider__slide img {
  aspect-ratio: 4/3;
  object-fit: cover;
}

.content-slider .image-slider__nav {
  width: 40px;
  height: 40px;
}

/* 記事・お知らせ詳細ページの関連写真ギャラリー */
.gallery-slider {
  border-radius: 16px;
}

.gallery-slider .image-slider__slide img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 16px;
}

/* ===================== Section ===================== */
.section {
  padding: 72px 0;
}

.section--alt {
  background: #fff;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 46px;
}

.section-header__badge {
  display: inline-block;
  background: rgba(164, 52, 42, 0.1);
  color: var(--ydrt-red);
  padding: 5px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--ydrt-dark);
  margin: 0 0 12px;
}

.section-header p {
  color: #7a6250;
  font-size: 0.95rem;
  margin: 0;
}

/* Message / phrase block (パンフレットの「その瞬間」引用) */
.phrase-block {
  text-align: center;
  padding: 50px 24px;
  background: linear-gradient(135deg, #fff7ea, #fdece0);
  border: 2px dashed rgba(164,52,42,0.25);
  border-radius: 24px;
  margin: 0 auto;
  max-width: 720px;
}

.phrase-block .phrase-eyebrow {
  color: var(--ydrt-orange);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.phrase-block h3 {
  color: var(--ydrt-red);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: 0;
}

/* Cards grid */
.grid {
  display: grid;
  gap: 24px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 860px) {
  .grid-3, .grid-2 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 26px;
  box-shadow: 0 10px 26px rgba(58, 36, 24, 0.06);
  border: 1px solid rgba(164,52,42,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(58, 36, 24, 0.1);
}

.card__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--ydrt-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 1.08rem;
  margin: 0 0 10px;
  color: var(--ydrt-dark);
}

.card p, .card li {
  font-size: 0.9rem;
  color: #6f5a49;
}

.card ul {
  padding-left: 1.1em;
  margin: 8px 0 0;
}

.card ul li {
  margin-bottom: 4px;
}

/* Numbered activity blocks */
.activity-block {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 26px rgba(58, 36, 24, 0.06);
  margin-bottom: 28px;
  border-left: 6px solid var(--ydrt-orange);
}

.activity-block__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ydrt-gradient);
  color: #fff;
  font-weight: 900;
  margin-right: 12px;
}

.activity-block__title {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  margin-bottom: 18px;
  color: var(--ydrt-dark);
}

.activity-block__cols {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px;
}

@media (max-width: 760px) {
  .activity-block__cols {
    grid-template-columns: 1fr;
  }
}

.activity-block__label {
  font-weight: 700;
  color: var(--ydrt-red);
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.activity-block ul {
  padding-left: 1.2em;
  margin: 0;
}

.activity-block li {
  margin-bottom: 6px;
  font-size: 0.92rem;
  color: #58452f;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

@media (max-width: 760px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat {
  background: #fff;
  border-radius: 16px;
  padding: 24px 12px;
  box-shadow: 0 8px 20px rgba(58,36,24,0.06);
}

.stat__num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--ydrt-red);
  font-family: 'Zen Maru Gothic', sans-serif;
}

.stat__label {
  font-size: 0.8rem;
  color: #8a6a4f;
  margin-top: 4px;
}

/* Timeline / members */
.member-quote {
  background: #fff9f0;
  border-radius: 16px;
  padding: 22px 24px;
  border-left: 5px solid var(--ydrt-gold);
  margin-bottom: 16px;
}

.member-quote p {
  margin: 0;
  font-size: 0.93rem;
  color: #6f5a49;
}

/* ===================== Blog ===================== */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

@media (max-width: 900px) {
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .post-grid {
    grid-template-columns: 1fr;
  }
}

.post-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(58,36,24,0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.post-card:hover {
  transform: translateY(-4px);
}

.post-card__thumb {
  width: 100%;
  height: 170px;
  object-fit: cover;
  background: #eee;
}

.post-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card__category {
  display: inline-block;
  background: rgba(164,52,42,0.1);
  color: var(--ydrt-red);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
  align-self: flex-start;
}

.post-card__title {
  font-size: 1.02rem;
  margin: 0 0 8px;
  color: var(--ydrt-dark);
}

.post-card__excerpt {
  font-size: 0.86rem;
  color: #7a6250;
  flex: 1;
  margin-bottom: 12px;
}

.post-card__date {
  font-size: 0.78rem;
  color: #a08a76;
}

.post-detail {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 26px rgba(58,36,24,0.06);
}

@media (max-width: 640px) {
  .post-detail {
    padding: 24px;
  }
}

.post-detail__cover {
  width: 100%;
  border-radius: 16px;
  max-height: 380px;
  object-fit: cover;
  margin-bottom: 28px;
}

.post-detail h1 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--ydrt-dark);
  margin-bottom: 10px;
}

.post-meta {
  color: #a08a76;
  font-size: 0.85rem;
  margin-bottom: 30px;
}

.post-body h2 {
  color: var(--ydrt-red);
  font-size: 1.3rem;
  margin-top: 34px;
}

.post-body h3 {
  color: var(--ydrt-dark);
  font-size: 1.1rem;
  margin-top: 24px;
}

.post-body p {
  color: #4b3a2a;
  font-size: 0.98rem;
  margin: 14px 0;
}

.post-body .post-list {
  padding-left: 1.4em;
  margin: 14px 0;
}
.post-body .post-list li {
  margin-bottom: 6px;
}

.post-body .post-quote {
  border-left: 4px solid var(--ydrt-gold);
  background: #fff8ec;
  padding: 14px 18px;
  border-radius: 10px;
  margin: 20px 0;
  color: var(--ydrt-red);
  font-weight: 700;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #a08a76;
}

/* ===================== Announcements(お知らせ) ===================== */
.announcement-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.announcement-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 8px 20px rgba(58, 36, 24, 0.06);
  border-left: 5px solid var(--ydrt-gold);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.announcement-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(58, 36, 24, 0.1);
}

.announcement-item__date {
  flex-shrink: 0;
  font-size: 0.8rem;
  color: var(--ydrt-orange);
  font-weight: 700;
  white-space: nowrap;
  min-width: 110px;
}

.announcement-item__body {
  flex: 1;
  min-width: 0;
}

.announcement-item__title {
  margin: 0 0 4px;
  font-size: 1rem;
  color: var(--ydrt-dark);
}

.announcement-item__excerpt {
  margin: 0;
  font-size: 0.85rem;
  color: #7a6250;
}

.announcement-item__arrow {
  color: #d9bfa3;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .announcement-item {
    flex-wrap: wrap;
    gap: 8px;
  }
  .announcement-item__date {
    min-width: auto;
  }
}

/* トップページの「お知らせ」ミニリスト */
.announcement-mini-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(58, 36, 24, 0.06);
}

.announcement-mini-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid #f1e4d6;
}

.announcement-mini-item:last-child {
  border-bottom: none;
}

.announcement-mini-item__date {
  flex-shrink: 0;
  font-size: 0.78rem;
  color: var(--ydrt-orange);
  font-weight: 700;
  min-width: 100px;
}

.announcement-mini-item__title {
  flex: 1;
  min-width: 0;
  font-size: 0.92rem;
  color: var(--ydrt-dark);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .announcement-mini-item {
    flex-wrap: wrap;
  }
  .announcement-mini-item__title {
    white-space: normal;
  }
}

/* ===================== Forms / Admin ===================== */
.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 10px 26px rgba(58,36,24,0.06);
  max-width: 520px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--ydrt-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid #e3d3c2;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fffaf3;
}

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

.form-group input[type="file"] {
  padding: 10px 12px;
  cursor: pointer;
}

.form-group input[type="file"]::file-selector-button {
  border: none;
  background: var(--ydrt-gradient);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-right: 12px;
  cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: 2px solid var(--ydrt-orange);
  border-color: transparent;
}

.alert {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.88rem;
  margin-bottom: 18px;
}
.alert-error {
  background: #fde8e6;
  color: #a4342a;
}
.alert-success {
  background: #e6f4ea;
  color: #237a41;
}

.admin-bar {
  background: var(--ydrt-dark);
  color: #fff;
  padding: 10px 0;
  font-size: 0.85rem;
}
.admin-bar__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-bar a {
  color: #f4c95d;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(58,36,24,0.06);
}
.admin-table th, .admin-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #f1e4d6;
  font-size: 0.88rem;
  text-align: left;
}
.admin-table th {
  background: #fdf3e6;
  color: var(--ydrt-red);
}
.admin-table tr:last-child td {
  border-bottom: none;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
}
.pill-btn--edit {
  background: #fdeccf;
  color: #a6650f;
}
.pill-btn--delete {
  background: #fde3e1;
  color: #a4342a;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.contact-info-item i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--ydrt-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-box {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #fff9f0;
  padding: 16px;
  border-radius: 14px;
  margin-top: 10px;
}
.qr-box img {
  width: 90px;
  height: 90px;
  border-radius: 8px;
}

.qr-box .image-slider.qr-slider {
  width: 90px;
  height: 90px;
  border-radius: 8px;
  flex-shrink: 0;
}

.qr-slider .image-slider__slide img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
}

.qr-slider .image-slider__nav {
  width: 20px;
  height: 20px;
  font-size: 0.55rem;
}

.qr-slider .image-slider__nav--prev {
  left: 2px;
}

.qr-slider .image-slider__nav--next {
  right: 2px;
}

.qr-slider .image-slider__dots {
  bottom: 3px;
  gap: 3px;
}

.qr-slider .image-slider__dot {
  width: 5px;
  height: 5px;
}

.qr-slider .image-slider__dot.is-active {
  width: 10px;
}

/* ===================== Footer ===================== */
.site-footer {
  background: linear-gradient(160deg, #3a2418 0%, #582c1f 60%, #7a3a24 100%);
  color: #f3e6d8;
  padding: 64px 0 0;
  margin-top: 20px;
}

.site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

@media (max-width: 860px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
}

.site-footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

@media (max-width: 860px) {
  .site-footer__brand {
    flex-direction: column;
    align-items: center;
  }
}

.site-footer__logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
  flex-shrink: 0;
}

.site-footer__name {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: #fff;
  margin: 0 0 2px;
}

.site-footer__sub {
  font-size: 0.8rem;
  color: #e8c9a8;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}

.site-footer__tagline {
  font-size: 0.9rem;
  color: #f3e6d8;
  line-height: 1.7;
  margin: 0;
  max-width: 320px;
}

.site-footer__heading {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #f4c95d;
  margin: 0 0 16px;
  position: relative;
  padding-bottom: 10px;
}

.site-footer__heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  background: #f4c95d;
  border-radius: 2px;
}

@media (max-width: 860px) {
  .site-footer__heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.site-footer__links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__links li {
  margin-bottom: 12px;
}

.site-footer__links a {
  font-size: 0.92rem;
  color: #f3e6d8;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-footer__links a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.7rem;
  color: #f4c95d;
}

.site-footer__links a:hover {
  color: #f4c95d;
}

.site-footer__contact p {
  margin: 0 0 16px;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 860px) {
  .site-footer__contact p {
    justify-content: center;
  }
}

.site-footer__contact i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(244, 201, 93, 0.18);
  color: #f4c95d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.site-footer__contact a {
  color: #f3e6d8;
  transition: color 0.2s ease;
  word-break: break-all;
}

.site-footer__contact a:hover {
  color: #f4c95d;
}

.site-footer__bottom {
  border-top: 1px solid rgba(244, 201, 93, 0.2);
  padding: 20px 20px;
  text-align: center;
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: #c9ac8f;
}

/* utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
