/* ============================================================
   寺院向けホームページ テンプレート v1.0
   
   【カスタマイズ方法】
   下の :root 変数を変えるだけでサイト全体の色が変わります
   ============================================================ */
:root {
  /* ─── カラー ─────────────────────────────── */
  --c-ink:         #1C1917;   /* メインテキスト（墨色） */
  --c-washi:       #F7F3EE;   /* 背景色（和紙色）*/
  --c-vermillion:  #B5312C;   /* アクセント赤（朱色）← ここを変えるだけで印象が変わる */
  --c-gold:        #B8942E;   /* アクセント金 */
  --c-moss:        #4A5E45;   /* サブカラー（苔色）*/
  --c-stone:       #7A6E65;   /* テキストグレー（石色）*/
  --c-smoke:       #EDE8E0;   /* ライトグレー背景 */
  --c-dark:        #1B2A5E;   /* ダーク背景 */
  /* ─── フォント ────────────────────────────── */
  --f-serif:  'Noto Serif JP', '游明朝', YuMincho, serif;
  --f-sans:   'Noto Sans JP', '游ゴシック', YuGothic, sans-serif;
  /* ─── その他 ──────────────────────────────── */
  --max-w:       1100px;
  --header-h:    64px;
}
/* ─── Reset ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
html { scroll-behavior: smooth; }
/* ─── Base ───────────────────────────────────── */
body {
  font-family: var(--f-sans);
  background: var(--c-washi);
  color: var(--c-ink);
  line-height: 1.85;
  font-size: 16px;
}
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
/* ─── 共通見出し ─────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--f-serif);
  font-weight: 700;
  line-height: 1.4;
}
.sec-label {
  display: block;
  text-align: center;
  font-family: var(--f-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--c-stone);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sec-title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  letter-spacing: 0.1em;
}
.sec-title::after {
  content: '';
  display: block;
  width: 44px;
  height: 2px;
  background: var(--c-vermillion);
  margin: 14px auto 0;
}
/* ─── ボタン ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  font-family: var(--f-sans);
  font-size: 0.875rem;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
}
.btn-primary {
  background: var(--c-vermillion);
  color: white;
}
.btn-primary:hover { background: #942520; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}
.btn-dark {
  background: var(--c-ink);
  color: white;
  font-family: var(--f-sans);
  font-size: 0.875rem;
  letter-spacing: 0.16em;
  cursor: pointer;
  padding: 14px 40px;
}
.btn-dark:hover { background: #333; }
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-vermillion);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  transition: gap 0.2s;
}
.link-more:hover { gap: 14px; }
/* ─── HEADER ─────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(247,243,238,0.93);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-smoke);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  font-family: var(--f-serif);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-ink);
  line-height: 1;
}
.site-logo span {
  display: block;
  font-family: var(--f-sans);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--c-stone);
  letter-spacing: 0.2em;
  margin-top: 4px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.site-nav a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--c-ink);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--c-vermillion);
  transition: width 0.25s;
}
.site-nav a:hover { color: var(--c-vermillion); }
.site-nav a:hover::after { width: 100%; }
.nav-cta {
  background: var(--c-vermillion) !important;
  color: white !important;
  padding: 8px 18px;
  font-size: 0.78rem !important;
  letter-spacing: 0.12em !important;
}
.nav-cta:hover { opacity: 0.85; }
.nav-cta::after { display: none !important; }
/* ハンバーガー（スマホ） */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--c-ink);
  transition: transform 0.3s, opacity 0.3s;
}
/* ─── HERO（トップ） ─────────────────────────── */
.hero {
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(26,22,18,0.58), rgba(26,22,18,0.74)),
    url('images/hero.jpg');
  background-color: #1B2A5E;
  background-size: cover;
  background-position: center;
}
.hero-content {
  text-align: center;
  color: white;
  padding: 24px;
  animation: fadeUp 1.2s ease both;
}
.hero-label {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2.8rem, 9vw, 5.5rem);
  letter-spacing: 0.2em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.hero-title-en {
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.45);
  font-family: var(--f-sans);
  font-weight: 400;
  margin-bottom: 28px;
}
.hero-tagline {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 44px;
  letter-spacing: 0.08em;
  font-family: var(--f-serif);
  line-height: 2;
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: bounce 2.5s infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px; height: 28px;
  background: rgba(255,255,255,0.3);
}
/* ─── ABOUT EXCERPT ──────────────────────────── */
.about-excerpt {
  padding: 80px 24px;
  text-align: center;
}
.about-text {
  max-width: 660px;
  margin: 0 auto 36px;
  font-size: 1rem;
  line-height: 2.1;
}
/* ─── SERVICES ───────────────────────────────── */
.services {
  background: var(--c-smoke);
  padding: 80px 24px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.service-card {
  background: var(--c-washi);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(28,25,23,0.08);
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.service-card h3 {
  font-size: 1rem;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--c-stone);
  line-height: 1.85;
}
.service-tag {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--c-vermillion);
  border: 1px solid var(--c-vermillion);
  padding: 3px 12px;
}
/* ─── NEWS ───────────────────────────────────── */
.news {
  padding: 80px 24px;
}
.news-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.news-list {
  list-style: none;
  border-top: 1px solid var(--c-smoke);
}
.news-item {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-smoke);
  font-size: 0.9rem;
  flex-wrap: wrap;
}
.news-date {
  flex-shrink: 0;
  color: var(--c-stone);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  min-width: 88px;
}
.news-cat {
  flex-shrink: 0;
  font-size: 0.68rem;
  color: var(--c-vermillion);
  border: 1px solid var(--c-vermillion);
  padding: 2px 9px;
  letter-spacing: 0.1em;
}
.news-title { transition: color 0.2s; }
.news-item:hover .news-title { color: var(--c-vermillion); }
/* ─── ACCESS ─────────────────────────────────── */
.access {
  background: var(--c-dark);
  color: white;
  padding: 80px 24px;
}
.access .sec-title { color: white; }
.access .sec-title::after { background: var(--c-gold); }
.access-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}
.access-info dt {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--c-stone);
  margin-top: 24px;
  margin-bottom: 6px;
  font-family: var(--f-sans);
}
.access-info dt:first-child { margin-top: 0; }
.access-info dd {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
}
.access-info a { color: rgba(255,255,255,0.82); }
.access-map {
  background: #3A3028;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-stone);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
}
.access-map iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
}
/* ─── FOOTER ─────────────────────────────────── */
.site-footer {
  background: #181210;
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 44px 24px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  line-height: 2;
}
.footer-logo {
  font-family: var(--f-serif);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255,255,255,0.45);
  font-size: 0.75rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }
/* ─── PAGE HERO（下層ページ用） ─────────────── */
.page-hero {
  height: 38vh;
  height: 38svh;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 48px;
  margin-top: var(--header-h);
  background-image:
    linear-gradient(rgba(26,22,18,0.50), rgba(26,22,18,0.72)),
    url('images/page-hero.jpg');
  background-color: #2A1F1A;
  background-size: cover;
  background-position: center;
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  color: white;
}
.page-hero-en {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}
.page-hero-title {
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  letter-spacing: 0.14em;
}
/* ─── 下層ページ コンテンツ ─────────────────── */
.content-section {
  padding: 72px 24px;
}
.content-section.bg-smoke {
  background: var(--c-smoke);
}
.content-inner {
  max-width: 800px;
  margin: 0 auto;
}
.content-inner h2 {
  font-size: clamp(1.3rem, 3vw, 1.65rem);
  margin-bottom: 28px;
  padding-bottom: 18px;
  position: relative;
  letter-spacing: 0.06em;
}
.content-inner h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 44px; height: 2px;
  background: var(--c-vermillion);
}
.content-inner p {
  margin-bottom: 20px;
  line-height: 2.1;
  font-size: 0.97rem;
}
/* 住職プロフィール */
.priest-profile {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 36px;
  align-items: start;
  margin-top: 28px;
}
.priest-photo {
  background: var(--c-smoke);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-stone);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  overflow: hidden;
}
.priest-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.priest-name {
  font-family: var(--f-serif);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.priest-title {
  font-size: 0.78rem;
  color: var(--c-stone);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-family: var(--f-sans);
}
/* ─── CONTACT PAGE ───────────────────────────── */
.contact-wrap {
  padding: 72px 24px;
}
.contact-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}
.info-card {
  background: var(--c-smoke);
  padding: 28px 32px;
  margin-bottom: 16px;
}
.info-card:last-child { margin-bottom: 0; }
.info-card dt {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--c-stone);
  margin-bottom: 10px;
  font-family: var(--f-sans);
  text-transform: uppercase;
}
.info-card dd {
  font-family: var(--f-serif);
  font-size: 0.97rem;
  color: var(--c-ink);
  line-height: 1.85;
}
.info-card a { color: var(--c-vermillion); }
/* フォーム */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.83rem;
  letter-spacing: 0.08em;
  color: var(--c-stone);
}
.form-group .req {
  color: var(--c-vermillion);
  margin-left: 5px;
  font-size: 0.75rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #D8D2CA;
  background: white;
  font-family: var(--f-sans);
  font-size: 0.92rem;
  color: var(--c-ink);
  outline: none;
  border-radius: 0;
  appearance: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--c-vermillion);
}
.form-group textarea {
  resize: vertical;
  min-height: 150px;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 4.5L11 1' stroke='%237A6E65' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.form-privacy {
  font-size: 0.78rem;
  color: var(--c-stone);
  line-height: 1.75;
}
.form-submit { text-align: right; }
/* ─── SNS セクション ─────────────────────────── */
.sns-section {
  padding: 80px 24px;
  background: var(--c-smoke);
}
.sns-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.sns-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
/* Facebookフィード */
.fb-wrap {
  overflow: hidden;
  background: white;
  border: 1px solid #ddd;
}
.fb-wrap .fb-page {
  display: block;
}
/* SNSリンクボタン群 */
.sns-links-title {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--c-stone);
  margin-bottom: 20px;
  font-family: var(--f-sans);
}
.sns-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.sns-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 22px;
  font-family: var(--f-sans);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: white;
  transition: opacity 0.2s, transform 0.2s;
  cursor: pointer;
}
.sns-btn:hover { opacity: 0.88; transform: translateX(4px); }
.sns-btn-fb   { background: #1877F2; }
.sns-btn-ig   { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.sns-btn-line { background: #06C755; }
.sns-icon { font-size: 1.3rem; flex-shrink: 0; }
.sns-btn-label { line-height: 1.3; }
.sns-btn-label small { display: block; font-size: 0.72rem; opacity: 0.82; margin-top: 2px; }
/* SNS説明文 */
.sns-note {
  background: white;
  border-left: 3px solid var(--c-vermillion);
  padding: 18px 20px;
  font-size: 0.82rem;
  color: var(--c-stone);
  line-height: 1.85;
}
/* ─── コンテンツブロック（画像＋テキスト交互） ── */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.content-block .block-img {
  overflow: hidden;
  position: relative;
  min-height: 320px;
}
.content-block .block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* 画像なし時のプレースホルダー */
.content-block .block-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 320px;
  background: var(--c-smoke);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--c-stone);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}
.content-block .block-img-placeholder .ph-icon {
  font-size: 2.5rem;
  opacity: 0.5;
}
.content-block .block-text {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--c-washi);
}
.content-block.bg-smoke .block-text {
  background: var(--c-smoke);
}
.content-block.bg-dark .block-text {
  background: var(--c-dark);
  color: white;
}
.content-block.bg-dark .block-text .block-label {
  color: var(--c-gold);
}
.content-block.bg-dark .block-text h2 {
  color: white;
}
.content-block.bg-dark .block-text p {
  color: rgba(255,255,255,0.75);
}
.block-label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--c-vermillion);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--f-sans);
}
.content-block .block-text h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  margin-bottom: 20px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  position: relative;
  padding-bottom: 20px;
}
.content-block .block-text h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--c-vermillion);
}
.content-block.bg-dark .block-text h2::after {
  background: var(--c-gold);
}
.content-block .block-text p {
  font-size: 0.92rem;
  line-height: 2;
  color: var(--c-stone);
  margin-bottom: 28px;
}
.content-block .block-text .btn-block {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--c-vermillion);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  align-self: flex-start;
  transition: gap 0.2s;
}
.content-block .block-text .btn-block:hover { gap: 14px; }
.content-block.bg-dark .block-text .btn-block {
  color: var(--c-gold);
}
/* ─── ニュースリスト（改良版） ──────────────── */
.news-section {
  padding: 80px 24px;
  background: var(--c-washi);
}
.news-section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
.news-heading-col h2 {
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.news-heading-col .news-heading-en {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--c-stone);
  text-transform: uppercase;
  display: block;
  margin-bottom: 28px;
}
.news-heading-col p {
  font-size: 0.85rem;
  color: var(--c-stone);
  line-height: 1.85;
  margin-bottom: 28px;
}
/* ─── Responsive 追加 ────────────────────────── */
@media (max-width: 768px) {
  .content-block {
    grid-template-columns: 1fr;
  }
  .content-block .block-text {
    padding: 48px 24px;
  }
  .news-section-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
/* ─── ★壁紙デザインオプション（選択式・追加料金オプション）─────
   通常はこのクラスは使われず、今まで通りの配色のまま表示される。
   依頼人が「壁紙デザインオプション」を希望した場合のみ、Apps Script側で
   bg-texture / bg-flat-* クラスがそのまま残る（希望しない場合は
   生成後に自動で取り除かれる）。
   
   ★AIへの指示：壁紙オプションが有効な案件でのみ、bg-flat-smoke クラスがついた
   セクションを bg-flat-vermillion / bg-flat-moss / bg-flat-gold / bg-flat-smoke
   のいずれかに、依頼人の雰囲気に合わせて書き換えてよい。
   壁紙オプションが無効な案件では、これらのクラスは触らないこと。 */
.bg-texture {
  background: var(--c-washi) url('images/washi.jpg') center/480px repeat;
}
.bg-flat-vermillion { background: #F5E1DE; }
.bg-flat-moss        { background: #E6EAE3; }
.bg-flat-gold         { background: #F2E8D0; }
.bg-flat-smoke        { background: var(--c-smoke); }
/* content-block内では、実際に見えるのはblock-text側の背景のため、
   子要素にも同じ背景を適用する（bg-smoke/bg-darkと同じ考え方） */
.content-block.bg-texture .block-text {
  background: var(--c-washi) url('images/washi.jpg') center/480px repeat;
}
.content-block.bg-flat-vermillion .block-text { background: #F5E1DE; }
.content-block.bg-flat-moss .block-text        { background: #E6EAE3; }
.content-block.bg-flat-gold .block-text         { background: #F2E8D0; }
.content-block.bg-flat-smoke .block-text        { background: var(--c-smoke); }

/* ─── Animations ─────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}
/* ─── Responsive ─────────────────────────────── */
@media (max-width: 768px) {
  .site-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--c-washi);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    border-bottom: 1px solid var(--c-smoke);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  }
  .site-nav.open { display: flex; }
  .site-nav li { border-bottom: 1px solid var(--c-smoke); }
  .site-nav a { display: block; padding: 14px 24px; font-size: 0.95rem; }
  .nav-cta { background: none !important; color: var(--c-vermillion) !important; }
  .nav-toggle { display: flex; }
  .access-inner { grid-template-columns: 1fr; }
  .priest-profile { grid-template-columns: 1fr; }
  .priest-photo { max-width: 160px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-content { animation: none; }
  .hero-scroll   { animation: none; }
}
