/* ============================================================
   SunChildren — Shared Stylesheet  v2.0
   南イタリア・プーリア旅行 / 京都カフェ / ラグジュアリーホテル / マイル
   Target: 多言語SEO (JA/EN/IT/ES/DE), 月間100万PV, アフィリエイト収益最大化
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Noto+Serif+JP:wght@400;700&family=Noto+Sans+JP:wght@400;500;700&display=swap');

/* ── CSS Variables ── */
:root {
  --primary:      #0e1628;   /* 深紺 — 南イタリアの夜空 */
  --primary-mid:  #1c2a4a;
  --accent:       #c8a04a;   /* ゴールド — オリーブオイル・太陽 */
  --accent-light: #e8d5a0;
  --accent-dark:  #9a7830;
  --coral:        #d4603a;   /* テラコッタ — プーリアの石畳 */
  --teal:         #2a7d6f;   /* 地中海グリーン */
  --text:         #1e1e1e;
  --text-mid:     #444;
  --text-light:   #888;
  --bg:           #f8f6f1;   /* 暖かいオフホワイト */
  --bg-warm:      #f2ebe0;
  --bg-cool:      #eef1f6;
  --white:        #ffffff;
  --border:       #ddd5c4;
  --border-light: #ede8df;
  --shadow-sm:    0 2px 8px rgba(14,22,40,0.07);
  --shadow-md:    0 4px 20px rgba(14,22,40,0.11);
  --shadow-lg:    0 10px 40px rgba(14,22,40,0.15);
  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   0.25s ease;
  --font-serif:   'Cormorant Garamond', 'Noto Serif JP', 'Hiragino Mincho ProN', Georgia, serif;
  --font-sans:    'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  --max-w:        1100px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── Skip Link (Accessibility) ── */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent);
  color: var(--primary);
  padding: 8px 16px;
  font-size: 13px;
  z-index: 1000;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── Header / Navigation ── */
.sc-header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.sc-header .header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: stretch;
  gap: 0;
  min-height: 56px;
  flex-wrap: wrap;
}
.sc-header .logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 20px 10px 0;
  text-decoration: none;
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,0.08);
  margin-right: 4px;
}
.sc-header .logo .logo-main {
  color: var(--accent);
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}
.sc-header .logo .logo-sub {
  color: rgba(200,160,74,0.6);
  font-size: 9.5px;
  letter-spacing: 0.05em;
  margin-top: 3px;
  white-space: nowrap;
  font-family: var(--font-sans);
}
.sc-header nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.sc-header nav ul li a {
  display: block;
  padding: 0 13px;
  line-height: 56px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
  border-bottom: 2px solid transparent;
}
.sc-header nav ul li a:hover,
.sc-header nav ul li a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
  background: rgba(200,160,74,0.06);
}

/* ── Hero Section ── */
.sc-hero {
  position: relative;
  min-height: 440px;
  background: var(--primary);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.sc-hero .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.sc-hero .hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,22,40,0.2) 0%,
    rgba(14,22,40,0.7) 70%,
    rgba(14,22,40,0.92) 100%
  );
}
.sc-hero .hero-body {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 24px 52px;
  width: 100%;
}
.sc-hero .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 500;
}
.sc-hero .hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.sc-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 5.5vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.sc-hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.sc-hero .hero-lead {
  font-size: 14.5px;
  color: rgba(255,255,255,0.78);
  max-width: 600px;
  line-height: 1.75;
  font-family: var(--font-sans);
}
.sc-hero .hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.hero-badge {
  background: rgba(200,160,74,0.18);
  border: 1px solid rgba(200,160,74,0.4);
  color: var(--accent-light);
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 20px;
  font-family: var(--font-sans);
  letter-spacing: 0.04em;
}

/* ── Breadcrumb ── */
.sc-breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 10px 0;
}
.sc-breadcrumb .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  font-size: 11.5px;
  color: var(--text-light);
  font-family: var(--font-sans);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.sc-breadcrumb a { color: var(--text-light); transition: color var(--transition); }
.sc-breadcrumb a:hover { color: var(--accent); }
.sc-breadcrumb span.sep { color: var(--border); }

/* ── Container ── */
.sc-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Title ── */
.sc-section-title {
  text-align: center;
  margin: 60px 0 36px;
}
.sc-section-title .en-label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  color: var(--accent);
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 500;
  margin-bottom: 10px;
}
.sc-section-title h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 4vw, 32px);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.35;
}
.sc-section-title h2 em {
  font-style: italic;
  color: var(--accent);
}
.sc-section-title .section-desc {
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-light);
  font-family: var(--font-sans);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

/* ── Quick Nav ── */
.sc-quick-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 0 auto 44px;
  max-width: 860px;
}
.sc-quick-nav a {
  display: inline-block;
  padding: 7px 16px;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
  font-size: 12px;
  border-radius: 24px;
  font-family: var(--font-sans);
  font-weight: 500;
  transition: all var(--transition);
  background: var(--white);
}
.sc-quick-nav a:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* ── CTA Banner ── */
.sc-cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin-bottom: 52px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.sc-cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(200,160,74,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.sc-cta-banner .cta-text { flex: 1; min-width: 200px; }
.sc-cta-banner .cta-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  font-family: var(--font-sans);
  margin-bottom: 6px;
  display: block;
}
.sc-cta-banner h3 {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 700;
}
.sc-cta-banner p {
  color: rgba(255,255,255,0.6);
  font-size: 12.5px;
  font-family: var(--font-sans);
  line-height: 1.6;
}
.sc-cta-banner .cta-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  border: none;
  letter-spacing: 0.03em;
}
.btn-gold {
  background: var(--accent);
  color: var(--primary);
}
.btn-gold:hover { background: var(--accent-dark); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--accent-light);
  border: 1.5px solid rgba(200,160,74,0.5);
}
.btn-outline:hover { background: rgba(200,160,74,0.12); border-color: var(--accent); }
.btn-dark {
  background: var(--primary);
  color: var(--accent);
}
.btn-dark:hover { background: var(--primary-mid); }

/* ── Card Grid ── */
.sc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 16px;
}
.sc-grid-2 {
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
}
.sc-grid-3 {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* ── Article Card ── */
.sc-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.sc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.sc-card .card-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.sc-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.sc-card:hover .card-img img { transform: scale(1.06); }

/* Card badge */
.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--accent);
  font-size: 10px;
  font-family: var(--font-sans);
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
}
.card-badge.coral { background: var(--coral); color: var(--white); }
.card-badge.teal  { background: var(--teal); color: var(--white); }

/* Card body */
.sc-card .card-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sc-card .card-eyebrow {
  font-size: 10.5px;
  color: var(--accent-dark);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  margin-bottom: 5px;
}
.sc-card h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 5px;
}
.sc-card .card-sub {
  font-size: 12px;
  color: var(--text-light);
  font-family: var(--font-sans);
  margin-bottom: 12px;
  font-style: italic;
}
.sc-card .card-desc {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 14px;
  flex: 1;
  font-family: var(--font-sans);
}
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 16px;
}
.tag {
  background: var(--bg-warm);
  color: var(--text-light);
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 4px;
  font-family: var(--font-sans);
  border: 1px solid var(--border-light);
}
.sc-card .card-cta {
  display: block;
  text-align: center;
  background: var(--primary);
  color: var(--accent);
  padding: 11px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: var(--font-sans);
  font-weight: 700;
  transition: background var(--transition);
  letter-spacing: 0.04em;
  text-decoration: none;
}
.sc-card .card-cta:hover { background: var(--primary-mid); }

/* Horizontal card variant */
.sc-card.horizontal {
  flex-direction: row;
  max-width: 100%;
}
.sc-card.horizontal .card-img {
  width: 260px;
  height: auto;
  flex-shrink: 0;
}

/* ── Affiliate Block ── */
.sc-affiliate {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 28px;
  margin: 28px 0;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.sc-affiliate .aff-icon { font-size: 26px; flex-shrink: 0; }
.sc-affiliate .aff-body { flex: 1; min-width: 160px; }
.sc-affiliate .aff-body h4 {
  font-size: 14.5px;
  color: var(--primary);
  margin-bottom: 4px;
  font-family: var(--font-sans);
  font-weight: 700;
}
.sc-affiliate .aff-body p {
  font-size: 12.5px;
  color: var(--text-light);
  font-family: var(--font-sans);
  line-height: 1.6;
}

/* ── Wine / Luxury CTA block ── */
.sc-themed-cta {
  border-radius: var(--radius);
  padding: 32px 36px;
  margin: 40px 0 52px;
  position: relative;
  overflow: hidden;
}
.sc-themed-cta.wine {
  background: linear-gradient(135deg, #2d0a02 0%, #5a1a0a 50%, #3d1208 100%);
}
.sc-themed-cta.hotel {
  background: linear-gradient(135deg, #0e1628 0%, #1c2a4a 60%, #0e2030 100%);
}
.sc-themed-cta.coffee {
  background: linear-gradient(135deg, #1a0e05 0%, #3d2008 60%, #2a1408 100%);
}
.sc-themed-cta h3 {
  color: var(--accent-light);
  font-family: var(--font-serif);
  font-size: 20px;
  margin-bottom: 8px;
}
.sc-themed-cta p {
  color: rgba(232,213,160,0.7);
  font-size: 13px;
  font-family: var(--font-sans);
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 560px;
}

/* ── Table ── */
.sc-table-wrap {
  overflow-x: auto;
  margin: 0 0 52px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.sc-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 13px;
  min-width: 480px;
}
.sc-table thead th {
  background: var(--primary);
  color: var(--accent);
  padding: 13px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sc-table tbody tr {
  border-bottom: 1px solid var(--border-light);
  transition: background var(--transition);
}
.sc-table tbody tr:hover { background: var(--bg-warm); }
.sc-table tbody tr:last-child { border-bottom: none; }
.sc-table td {
  padding: 12px 16px;
  vertical-align: middle;
  color: var(--text);
}
.sc-table td a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  transition: color var(--transition);
}
.sc-table td a:hover { color: var(--accent-dark); text-decoration: underline; }
.sc-table .td-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.sc-table .td-tags .tag { font-size: 10px; }

/* ── Related Cards ── */
.sc-related {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin: 0 0 56px;
}
.sc-related-card {
  display: flex;
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition), transform var(--transition);
}
.sc-related-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.sc-related-card img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  flex-shrink: 0;
}
.sc-related-card .rc-body {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sc-related-card .rc-label {
  font-size: 10px;
  color: var(--accent-dark);
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.sc-related-card .rc-title {
  font-size: 12.5px;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.4;
  font-family: var(--font-sans);
}

/* ── Quote / Pull quote ── */
.sc-quote {
  border-left: 3px solid var(--accent);
  background: var(--bg-warm);
  padding: 22px 28px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 36px 0;
  font-style: italic;
  color: var(--text-mid);
  font-size: 14.5px;
  line-height: 1.8;
  font-family: var(--font-serif);
}
.sc-quote cite {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--accent-dark);
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ── How-to Grid ── */
.sc-how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.sc-how-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.sc-how-item .how-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.sc-how-item h4 {
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 4px;
  font-family: var(--font-sans);
  font-weight: 700;
}
.sc-how-item p {
  font-size: 12.5px;
  color: var(--text-light);
  font-family: var(--font-sans);
  line-height: 1.65;
}
.sc-how-item a { color: var(--accent-dark); text-decoration: underline; }

/* ── White box section ── */
.sc-white-box {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  padding: 36px;
  margin-bottom: 48px;
  box-shadow: var(--shadow-sm);
}
.sc-white-box h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 24px;
  text-align: center;
}
.sc-white-box h2 em { font-style: italic; color: var(--accent); }

/* ── Gallery Grid ── */
.sc-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 52px;
}
.sc-gallery a {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4/3;
}
.sc-gallery a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s;
}
.sc-gallery a:hover img { transform: scale(1.07); opacity: 0.9; }

/* ── SNS / Social Row ── */
.sc-sns-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 24px 0 52px;
}
.sc-sns-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 13px;
  font-family: var(--font-sans);
  font-weight: 700;
  text-decoration: none;
  transition: opacity var(--transition), transform var(--transition);
}
.sc-sns-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.sc-sns-btn.youtube { background: #ff0000; color: white; }
.sc-sns-btn.twitter { background: #000; color: white; }
.sc-sns-btn.instagram { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: white; }
.sc-sns-btn.facebook { background: #1877f2; color: white; }

/* ── Lang Switcher ── */
.sc-lang-bar {
  background: rgba(14,22,40,0.95);
  padding: 6px 0;
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-sans);
}
.sc-lang-bar a {
  color: rgba(200,160,74,0.7);
  padding: 0 8px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: color var(--transition);
  text-decoration: none;
}
.sc-lang-bar a:last-child { border-right: none; }
.sc-lang-bar a:hover { color: var(--accent); }

/* ── Footer ── */
.sc-footer {
  background: var(--primary);
  color: #888;
  padding: 52px 0 24px;
  font-family: var(--font-sans);
}
.sc-footer .footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.sc-footer .footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 24px;
}
.sc-footer .footer-brand { flex: 2; min-width: 220px; }
.sc-footer .footer-brand .footer-logo {
  color: var(--accent);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.sc-footer .footer-brand .footer-tagline {
  font-size: 12px;
  color: #666;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 16px;
}
.sc-footer .footer-brand .footer-sns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.sc-footer .footer-brand .footer-sns a {
  color: #666;
  font-size: 11.5px;
  text-decoration: none;
  padding: 4px 10px;
  border: 1px solid #333;
  border-radius: 4px;
  transition: all var(--transition);
}
.sc-footer .footer-brand .footer-sns a:hover { color: var(--accent); border-color: var(--accent-dark); }
.sc-footer .footer-col { flex: 1; min-width: 140px; }
.sc-footer .footer-col h4 {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sc-footer .footer-col ul { }
.sc-footer .footer-col ul li { margin-bottom: 7px; }
.sc-footer .footer-col ul li a {
  color: #777;
  text-decoration: none;
  font-size: 12.5px;
  transition: color var(--transition);
  display: block;
}
.sc-footer .footer-col ul li a:hover { color: var(--accent); }
.sc-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.sc-footer .footer-bottom .copy { font-size: 11px; color: #555; }
.sc-footer .footer-bottom .bottom-links { display: flex; gap: 16px; }
.sc-footer .footer-bottom .bottom-links a {
  font-size: 11px;
  color: #555;
  text-decoration: none;
  transition: color var(--transition);
}
.sc-footer .footer-bottom .bottom-links a:hover { color: var(--accent); }

/* ── Schema / SEO helpers (hidden) ── */
.sc-structured { display: none; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .sc-hero { min-height: 320px; }
  .sc-hero .hero-body { padding: 40px 20px 36px; }
  .sc-grid { grid-template-columns: 1fr; }
  .sc-grid-2 { grid-template-columns: 1fr; }
  .sc-card.horizontal { flex-direction: column; }
  .sc-card.horizontal .card-img { width: 100%; height: 200px; }
  .sc-cta-banner { flex-direction: column; padding: 24px 22px; }
  .sc-cta-banner .cta-btns { flex-direction: row; flex-wrap: wrap; }
  .sc-white-box { padding: 24px 18px; }
  .sc-themed-cta { padding: 24px 20px; }
  .sc-gallery { grid-template-columns: repeat(2, 1fr); }
  .sc-footer .footer-top { gap: 28px; }
  .sc-header .header-inner { min-height: 48px; }
  .sc-header nav ul li a { padding: 0 10px; line-height: 48px; font-size: 12px; }
}

@media (max-width: 480px) {
  .sc-header .logo .logo-sub { display: none; }
  .sc-gallery { grid-template-columns: 1fr; }
  .sc-related { grid-template-columns: 1fr; }
}

/* ── Print ── */
@media print {
  .sc-header, .sc-footer, .sc-cta-banner, .sc-affiliate { display: none; }
  body { font-size: 12px; }
}
