
:root {
  --ink:        #3a2e26;
  --ink-soft:   #5a4a3e;
  --ink-light:  #8a7868;
  --sepia:      #c9b89e;
  --cream:      #f5efe6;
  --paper:      #faf6ef;
  --white:      #ffffff;
  --accent:     #a8331e;
  --gold:       #b8935a;
  --line:       #d9cdbb;
  --shadow:     0 6px 24px rgba(58, 46, 38, 0.08);
  --shadow-lg:  0 16px 50px rgba(58, 46, 38, 0.14);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-condensed: 'Oswald', 'Impact', sans-serif;
  --font-body: 'Lora', Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 15% 10%, rgba(184, 147, 90, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(58, 46, 38, 0.04) 0%, transparent 40%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.23 0 0 0 0 0.18 0 0 0 0 0.15 0 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow);
}
.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 32px 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.header-decor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  max-width: 720px;
  margin-bottom: 10px;
  color: var(--ink-light);
}
.header-decor .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.header-decor .star { font-size: 14px; color: var(--gold); }

.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.logo-icon { width: 72px; height: 72px; flex-shrink: 0; }
.logo-icon svg {
  width: 100%; height: 100%;
  stroke: var(--ink);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.logo-text { text-align: left; line-height: 1; }
.logo-top {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--ink);
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.logo-bottom {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: clamp(38px, 5.5vw, 62px);
  color: var(--ink);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.header-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: var(--ink-light);
  margin-top: 12px;
  letter-spacing: 0.5px;
}

.nav {
  border-top: 3px double var(--line);
  border-bottom: 3px double var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(250, 246, 239, 0.96);
}
.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
  flex-wrap: wrap;
}
.nav a {
  font-family: var(--font-condensed);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink);
  padding: 6px 2px;
  position: relative;
  transition: color 0.25s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav a:hover { color: var(--accent); }
.nav a:hover::after { width: 100%; }

main {
  max-width: 1300px;
  margin: 0 auto;
  padding: 50px 28px 80px;
  position: relative;
  z-index: 2;
}

/* ===== HERO ===== */
.hero-link {
  display: block;
  margin-bottom: 70px;
  padding-bottom: 60px;
  border-bottom: 3px double var(--line);
  animation: fadeUp 0.9s ease-out;
}
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}
.hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-link:hover .hero-image img { transform: scale(1.04); }
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(58, 46, 38, 0.3));
  pointer-events: none;
}

.hero-content { display: flex; flex-direction: column; justify-content: center; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 22px;
  letter-spacing: -1px;
  transition: color 0.25s ease;
}
.hero-link:hover h1 { color: var(--accent); }
.hero .excerpt {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 26px;
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  line-height: 1.6;
}
.hero .meta {
  font-family: var(--font-condensed);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-light);
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.hero .meta .author { color: var(--ink); font-weight: 500; }

.hero-read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-condensed);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 18px;
  align-self: flex-start;
  transition: gap 0.3s ease;
}
.hero-read-more::after {
  content: "→";
  transition: transform 0.3s ease;
}
.hero-link:hover .hero-read-more { gap: 16px; }
.hero-link:hover .hero-read-more::after { transform: translateX(4px); }

.section-title {
  text-align: center;
  margin-bottom: 45px;
  position: relative;
}
.section-title h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--ink);
  display: inline-block;
  padding: 0 30px;
  background: var(--cream);
  position: relative;
  z-index: 2;
  letter-spacing: -0.5px;
}
.section-title::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: var(--line);
  z-index: 1;
}
.section-title .sub {
  display: block;
  font-family: var(--font-condensed);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--ink-light);
  text-transform: uppercase;
  margin-top: 8px;
}

.feed {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px 36px;
}

/* ===== TARJETA CLICKEABLE ===== */
.card {
  background: var(--paper);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s ease;
  cursor: pointer;
  position: relative;
  border: 1px solid transparent;
  animation: fadeUp 0.8s ease-out backwards;
  color: inherit;
  text-decoration: none;
}
.card:nth-child(2) { animation-delay: 0.08s; }
.card:nth-child(3) { animation-delay: 0.16s; }
.card:nth-child(4) { animation-delay: 0.24s; }
.card:nth-child(5) { animation-delay: 0.32s; }
.card:nth-child(6) { animation-delay: 0.40s; }
.card:nth-child(7) { animation-delay: 0.48s; }

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line);
}
.card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--sepia);
  position: relative;
}
.card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.card:hover .card-image img { transform: scale(1.08); }
.card-body {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card .category {
  font-family: var(--font-condensed);
  font-weight: 600;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 12px;
  transition: color 0.25s ease;
}
.card:hover h3 { color: var(--accent); }
.card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}
.card .meta {
  font-family: var(--font-condensed);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-light);
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.card .meta .author { color: var(--ink); font-weight: 500; }

footer {
  background: var(--ink);
  color: var(--paper);
  padding: 60px 28px 30px;
  position: relative;
  z-index: 2;
  margin-top: 80px;
}
.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(245, 239, 230, 0.15);
}
.footer-brand h3 {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 3px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.footer-brand p {
  font-style: italic;
  color: var(--sepia);
  max-width: 380px;
  line-height: 1.65;
}
.footer-col h4 {
  font-family: var(--font-condensed);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--gold);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--paper);
  font-size: 15px;
  opacity: 0.85;
  transition: opacity 0.25s, color 0.25s;
}
.footer-col a:hover { color: var(--gold); opacity: 1; }

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 28px;
  text-align: center;
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sepia);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--ink);
  color: var(--paper);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s;
  z-index: 100;
  box-shadow: var(--shadow-lg);
  font-size: 18px;
}
.to-top.visible { opacity: 1; visibility: visible; }
.to-top:hover { background: var(--accent); transform: translateY(-3px); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 28px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  main { padding: 36px 18px 60px; }
  .header-inner { padding: 22px 16px 16px; }
  .logo-wrap { gap: 12px; }
  .logo-icon { width: 54px; height: 54px; }
  .nav-inner { gap: 18px; padding: 12px 16px; }
  .nav a { font-size: 12px; letter-spacing: 1.5px; }
  .feed { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 34px; }
  .section-title h2 { font-size: 26px; padding: 0 16px; }
}



.pagination{display:flex;justify-content:center;gap:12px;flex-wrap:wrap;margin-top:46px}
.pagination a,.pagination span{padding:10px 16px;border:1px solid var(--line);background:var(--paper);font-family:var(--font-condensed);font-size:13px;letter-spacing:2px;text-transform:uppercase}
.pagination .current{background:var(--ink);color:var(--paper);border-color:var(--ink)}
.anchor-tag{display:block;position:relative;top:-90px;visibility:hidden;height:0}



:root {
  --ink:        #3a2e26;
  --ink-soft:   #5a4a3e;
  --ink-light:  #8a7868;
  --sepia:      #c9b89e;
  --cream:      #f5efe6;
  --paper:      #faf6ef;
  --accent:     #a8331e;
  --gold:       #b8935a;
  --line:       #d9cdbb;
  --shadow:     0 6px 24px rgba(58, 46, 38, 0.08);
  --shadow-lg:  0 16px 50px rgba(58, 46, 38, 0.14);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-condensed: 'Oswald', 'Impact', sans-serif;
  --font-body: 'Lora', Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.75;
  font-size: 18px;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 15% 10%, rgba(184, 147, 90, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(58, 46, 38, 0.04) 0%, transparent 40%);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.23 0 0 0 0 0.18 0 0 0 0 0.15 0 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow);
}
.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 26px 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.header-decor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  max-width: 720px;
  margin-bottom: 10px;
  color: var(--ink-light);
}
.header-decor .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.header-decor .star { font-size: 14px; color: var(--gold); }

.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.logo-icon { width: 58px; height: 58px; flex-shrink: 0; }
.logo-icon svg {
  width: 100%; height: 100%;
  stroke: var(--ink);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.logo-text { text-align: left; line-height: 1; }
.logo-top {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--ink);
  letter-spacing: 2px;
  margin-bottom: 3px;
}
.logo-bottom {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 46px);
  color: var(--ink);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav {
  border-top: 3px double var(--line);
  border-bottom: 3px double var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(250, 246, 239, 0.96);
}
.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
  flex-wrap: wrap;
}
.nav a {
  font-family: var(--font-condensed);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink);
  padding: 6px 2px;
  position: relative;
  transition: color 0.25s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav a:hover { color: var(--accent); }
.nav a:hover::after { width: 100%; }

.article-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 50px 28px 60px;
  position: relative;
  z-index: 2;
  animation: fadeUp 0.8s ease-out;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-condensed);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 30px;
  transition: color 0.25s, gap 0.25s;
}
.back-link:hover { color: var(--accent); gap: 12px; }
.back-link::before { content: "←"; }

.article-category {
  font-family: var(--font-condensed);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 4px;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.article-category::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--accent);
}

.article-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.article-lead {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 30px;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
}

.article-meta {
  font-family: var(--font-condensed);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-light);
  padding: 18px 0;
  margin-bottom: 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.article-meta .author { color: var(--ink); font-weight: 500; }

.article-hero-image {
  margin: 0 0 40px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
}
.article-hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.article-caption {
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-light);
  text-align: center;
  margin-top: -30px;
  margin-bottom: 40px;
}

.article-body p {
  margin-bottom: 22px;
  color: var(--ink);
}
.article-body p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  float: left;
  line-height: 0.85;
  margin: 6px 12px 0 0;
  color: var(--accent);
}
.article-body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--ink);
  margin: 40px 0 18px;
  letter-spacing: -0.5px;
}
.article-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2.5vw, 24px);
  color: var(--ink);
  margin: 30px 0 14px;
}
.article-body blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.5vw, 28px);
  line-height: 1.4;
  color: var(--ink);
  margin: 40px 0;
  padding: 20px 30px;
  border-left: 4px solid var(--accent);
  background: var(--paper);
  position: relative;
}
.article-body blockquote::before {
  content: "“";
  position: absolute;
  left: 10px;
  top: -10px;
  font-size: 60px;
  color: var(--gold);
  opacity: 0.5;
  font-family: Georgia, serif;
}
.article-body ul, .article-body ol {
  margin: 20px 0 22px 24px;
  padding-left: 18px;
}
.article-body li { margin-bottom: 10px; }
.article-body img {
  border-radius: 2px;
  margin: 30px 0;
  box-shadow: var(--shadow);
}
.article-body a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  transition: opacity 0.25s;
}
.article-body a:hover { opacity: 0.7; }
.article-body strong { color: var(--ink); font-weight: 700; }

.article-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 3px double var(--line);
  text-align: center;
}
.article-footer p {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-light);
  margin-bottom: 18px;
}
.back-to-home {
  display: inline-block;
  padding: 12px 30px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-condensed);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: background 0.3s;
}
.back-to-home:hover { background: var(--accent); }

footer {
  background: var(--ink);
  color: var(--paper);
  padding: 50px 28px 30px;
  position: relative;
  z-index: 2;
  margin-top: 60px;
}
.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(245, 239, 230, 0.15);
}
.footer-inner h3 {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 3px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.footer-inner p {
  font-style: italic;
  color: var(--sepia);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.65;
}
.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 24px;
  text-align: center;
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sepia);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--ink);
  color: var(--paper);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s;
  z-index: 100;
  box-shadow: var(--shadow-lg);
  font-size: 18px;
}
.to-top.visible { opacity: 1; visibility: visible; }
.to-top:hover { background: var(--accent); transform: translateY(-3px); }

@media (max-width: 600px) {
  body { font-size: 17px; }
  .article-wrap { padding: 30px 18px 50px; }
  .header-inner { padding: 20px 16px 14px; }
  .logo-wrap { gap: 10px; }
  .logo-icon { width: 46px; height: 46px; }
  .nav-inner { gap: 16px; padding: 12px 16px; }
  .nav a { font-size: 12px; letter-spacing: 1.5px; }
  .article-body p:first-of-type::first-letter { font-size: 56px; }
  .article-body blockquote { padding: 16px 20px; font-size: 20px; }
}

.page-shell{max-width:820px;margin:0 auto;padding:50px 28px 60px;position:relative;z-index:2;animation:fadeUp .8s ease-out}
.page-shell h1{font-family:var(--font-display);font-size:clamp(30px,4.5vw,52px);line-height:1.1;margin-bottom:24px;color:var(--ink)}
.page-shell h2{font-family:var(--font-display);font-size:28px;margin:34px 0 14px;color:var(--ink)}
.page-shell p{margin-bottom:18px;color:var(--ink-soft)}
.notice-empty{background:var(--paper);border:1px solid var(--line);padding:28px;border-radius:2px;box-shadow:var(--shadow)}


/* ===== ADMIN ===== */
.admin-shell{max-width:1200px;margin:0 auto;padding:50px 24px 80px;position:relative;z-index:2}.admin-topbar{display:flex;justify-content:space-between;gap:20px;align-items:flex-start;margin-bottom:28px}.admin-topbar h1,.admin-card h2{font-family:var(--font-display);color:var(--ink);line-height:1.1}.admin-topbar h1{font-size:clamp(30px,4vw,48px)}.admin-kicker{font-family:var(--font-condensed);letter-spacing:3px;text-transform:uppercase;color:var(--accent);font-size:13px;margin-bottom:8px}.admin-top-links{display:flex;gap:12px;flex-wrap:wrap}.admin-top-links a,.admin-form button{display:inline-flex;align-items:center;justify-content:center;background:var(--ink);color:#fff;padding:12px 18px;border-radius:8px;font-family:var(--font-condensed);letter-spacing:2px;text-transform:uppercase;font-size:13px;border:none;cursor:pointer}.admin-top-links a:last-child{background:var(--accent)}.admin-grid{display:grid;grid-template-columns:minmax(0,2fr) minmax(280px,1fr);gap:24px}.admin-card{background:var(--paper);border:1px solid var(--line);box-shadow:var(--shadow);border-radius:16px;padding:26px}.admin-help{color:var(--ink-soft);margin:10px 0 18px}.admin-form{display:grid;gap:16px}.admin-form-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.admin-form label{display:flex;flex-direction:column;gap:8px;font-weight:600;color:var(--ink-soft)}.admin-form input,.admin-form select,.admin-form textarea{width:100%;padding:14px 15px;border:1px solid var(--line);border-radius:10px;background:#fff;color:var(--ink);font:inherit}.admin-form textarea{resize:vertical}.admin-form .full{grid-column:1/-1}.admin-actions{display:flex;justify-content:flex-start}.admin-alert{padding:14px 16px;border-radius:12px;margin-bottom:16px}.admin-alert.error{background:#fce7e7;color:#8b1e1e;border:1px solid #e6b8b8}.admin-alert.success{background:#e7f7ee;color:#1f6b3a;border:1px solid #b8dfc7}.admin-list{list-style:none;display:grid;gap:12px}.admin-list li{padding-bottom:12px;border-bottom:1px solid var(--line)}.admin-list strong{display:block;color:var(--ink);margin-bottom:6px}.admin-list span{display:block;color:var(--ink-light);font-size:14px}.admin-login-card{max-width:540px;margin:70px auto}.admin-return{margin-top:18px}.admin-return a{color:var(--accent);font-weight:600}@media(max-width:900px){.admin-grid{grid-template-columns:1fr}.admin-form-grid{grid-template-columns:1fr}.admin-topbar{flex-direction:column}}
