*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand: #B86F64;
  --brand-dark: #9a5c51;
  --bg: #FDFBF9;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --border: #e8e0d8;
  --card-bg: #ffffff;
  --radius: 12px;
  --max-w: 1080px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Playfair Display', ui-serif, Georgia, serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

button, input, select, textarea {
  font-family: inherit;
}

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

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

/* ── Navigation ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 251, 249, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
}
.nav-links a:hover { background: rgba(0,0,0,0.03); color: var(--text); }

.nav-cta {
  background: var(--brand);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--brand-dark) !important; color: #fff; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
}
.nav-hamburger svg { display: block; }

/* Language switcher */
.nav-lang-wrap {
  position: relative;
}
.nav-lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 4px;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-lang-btn:hover { color: var(--text); }
.nav-lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  min-width: 130px;
  padding: 6px;
  z-index: 200;
}
.nav-lang-dropdown.open { display: block; }
.nav-lang-dropdown a {
  display: block;
  padding: 8px 12px;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.nav-lang-dropdown a:hover { background: var(--bg-alt); color: var(--text); }
.nav-lang-dropdown a.active { color: var(--brand); font-weight: 600; }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  gap: 16px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); color: #fff; }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover { border-color: var(--brand); color: var(--brand); }

/* ── Hero ── */
.hero {
  padding: 80px 0 64px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 8px;
}
.hero-subtitle {
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brand);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-image {
  margin: 48px auto 0;
  max-width: 320px;
}
.hero-image img { border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.12); }

/* ── Themed hero (sub-landing pages) ── */
.hero-themed {
  padding: 64px 0 56px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.hero-themed h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-themed .ingress {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ── Section base ── */
section { padding: 64px 0; }
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* ── How it works (3 steps) ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.step {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.step-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.65; }

/* ── Cards grid ── */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.card .card-cta {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Who is it for ── */
.who-for-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.who-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.who-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.who-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.65; }
.who-card .read-more {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Benefits list ── */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.benefit { padding: 4px 0; }
.benefit h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.benefit p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ── Pricing ── */
.pricing-section { background: #f8f4f0; border-radius: 24px; padding: 64px 48px; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.pricing-card.featured { border-color: var(--brand); border-width: 2px; }
.pricing-plan { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 8px; }
.pricing-price { font-size: 2.25rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 4px; }
.pricing-period { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 12px; }
.pricing-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li {
  font-size: 0.875rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 16px; text-align: center; }

.features-included { margin-top: 48px; }
.features-included h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 24px; }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature-item h4 { font-size: 0.875rem; font-weight: 700; margin-bottom: 4px; }
.feature-item p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* ── Section with text blocks ── */
.text-section { max-width: 720px; }
.text-section h2 { font-size: clamp(1.4rem, 3.5vw, 2rem); font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.text-section p { font-size: 1rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.text-section h3 { font-size: 1.1rem; font-weight: 700; margin: 24px 0 8px; }

/* ── CTA banner ── */
.cta-banner {
  background: var(--brand);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  color: #fff;
  margin: 32px 0;
}
.cta-banner h2 { font-size: clamp(1.4rem, 3.5vw, 2rem); font-weight: 800; margin-bottom: 12px; }
.cta-banner p { font-size: 1rem; opacity: 0.9; margin-bottom: 28px; line-height: 1.65; }
.cta-banner .btn-white {
  background: #fff;
  color: var(--brand);
  padding: 12px 32px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-block;
}
.cta-banner .btn-white:hover { background: #f5f0ee; }
.cta-banners { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ── FAQ ── */
.faq { max-width: 720px; margin: 0 auto; }
details {
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}
details:first-of-type { border-top: 1px solid var(--border); }
summary {
  font-size: 1rem;
  font-weight: 600;
  padding: 18px 4px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--brand);
  font-weight: 400;
  flex-shrink: 0;
  margin-left: 16px;
}
details[open] summary::after { content: "−"; }
details p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 4px 20px;
}

/* ── Testimonials ── */
.testimonials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.testimonial {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-style: italic;
}

/* ── Footer ── */
.site-footer {
  background: #FFF9F0;
  border-top: 1px solid #D4C4B0;
  padding: 32px 24px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
}
.footer-inner a {
  font-size: 0.875rem;
  color: #8B7355;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-inner a:hover { color: #2C2416; }

/* ── Article ── */
.article-hero { padding: 64px 0 40px; max-width: 720px; }
.article-meta { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 20px; }
.article-hero h1 { font-size: clamp(1.8rem, 4.5vw, 2.75rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 16px; }
.article-hero .lead { font-size: 1.15rem; color: var(--text-muted); line-height: 1.7; }
.article-cover { margin: 32px 0; border-radius: 16px; overflow: hidden; max-width: 720px; }
.article-cover img { width: 100%; }
.article-body { max-width: 720px; }
.article-body h2 { font-size: 1.5rem; font-weight: 800; margin: 40px 0 16px; line-height: 1.2; }
.article-body h3 { font-size: 1.15rem; font-weight: 700; margin: 28px 0 12px; }
.article-body p { font-size: 1.05rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 20px; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 20px; }
.article-body li { font-size: 1rem; line-height: 1.75; color: var(--text-muted); margin-bottom: 8px; }
.article-body blockquote {
  border-left: 3px solid var(--brand);
  padding-left: 20px;
  margin: 28px 0;
  font-style: italic;
  color: var(--text-muted);
}

/* ── Video modal ── */
.video-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.video-modal-overlay.open { display: flex; }
.video-modal {
  position: relative;
  width: 90vw;
  max-width: 900px;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.video-modal iframe { width: 100%; height: 100%; border: none; }
.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-lang-wrap { display: none; }
  .nav-hamburger { display: block; }
}

@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .who-for-grid { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; gap: 16px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .cta-banners { grid-template-columns: 1fr; }
  .pricing-section { padding: 40px 24px; }
  .footer-inner { gap: 12px 16px; }
}

@media (max-width: 480px) {
  .hero { padding: 56px 0 48px; }
  section { padding: 48px 0; }
}

/* ── Hero V2 – 3-column Klarna-style ── */
.hero-v2 {
  position: relative;
  background: linear-gradient(135deg, #FDFBF9 0%, #F5F0E8 50%, #E9DFD4 100%);
  padding: 48px 0 64px;
  overflow: hidden;
}
.hero-v2-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 600px;
}
@media (min-width: 1024px) {
  .hero-v2-inner { flex-direction: row; align-items: center; }
}
.hero-v2-left {
  text-align: center;
  opacity: 0;
  animation: heroSlideFromLeft 1.2s cubic-bezier(0.25, 0.1, 0.25, 1) 0.15s forwards;
}
@media (min-width: 1024px) {
  .hero-v2-left { width: 35%; text-align: left; }
}
.hero-v2-left h1 {
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 700;
  color: #333333;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.hero-v2-left h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #B86F64;
  line-height: 1.1;
  margin-top: 4px;
}
.hero-v2-center {
  display: flex;
  justify-content: center;
  padding: 16px 0;
  opacity: 0;
  animation: heroSlideFromBottom 1.2s cubic-bezier(0.25, 0.1, 0.25, 1) 0.1s forwards;
}
@media (min-width: 1024px) {
  .hero-v2-center { width: 30%; padding: 0; }
}
.hero-v2-center img {
  width: 220px;
  height: 440px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}
@media (min-width: 768px) {
  .hero-v2-center img { width: 240px; height: 480px; }
}
@media (min-width: 1024px) {
  .hero-v2-center img { width: 340px; height: 680px; }
}
.hero-v2-right {
  text-align: center;
  opacity: 0;
  animation: heroSlideFromRight 1.2s cubic-bezier(0.25, 0.1, 0.25, 1) 0.15s forwards;
}
@media (min-width: 1024px) {
  .hero-v2-right { width: 35%; text-align: left; padding-left: 40px; }
}
.hero-v2-right p {
  font-size: 1.35rem;
  line-height: 1.85rem;
  color: #333333;
  margin-bottom: 32px;
}
.hero-cta-stack { display: flex; flex-direction: column; gap: 12px; }
.hero-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 600;
  background: #B86F64;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(184,111,100,0.3);
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.hero-btn-primary:hover { background: #A65D52; transform: scale(1.03); color: #fff; }
.hero-video-btn {
  position: relative;
  width: 100%;
  height: 96px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  background: #000;
}
.hero-video-btn:hover { transform: scale(1.03); }
.hero-video-btn img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.hero-video-btn:hover .hero-video-overlay { background: rgba(0,0,0,0.4); }
.hero-play-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  flex-shrink: 0;
}
.hero-video-label { color: #fff; font-size: 0.875rem; font-weight: 600; letter-spacing: 0.05em; }
.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  overflow: hidden;
  line-height: 0;
}
.hero-wave svg { display: block; width: 100%; }
@keyframes heroSlideFromLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes heroSlideFromRight {
  from { opacity: 0; transform: translateX(32px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes heroSlideFromBottom {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── How Sanota Works V2 ── */
.how-works-section { padding: 32px 0; background: #FDFBF9; overflow: hidden; }
.how-works-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.how-works-header { text-align: center; margin-bottom: 48px; }
.how-works-header h2 { font-size: clamp(2.2rem, 5vw, 3.75rem); font-weight: 700; color: #333333; margin-bottom: 12px; }
.how-works-header p { font-size: 1.25rem; color: #B86F64; font-weight: 500; }
.how-works-desktop { display: none; gap: 24px; min-height: 460px; align-items: flex-start; }
@media (min-width: 1024px) { .how-works-desktop { display: flex; } }
.hiw-item { flex: 1; min-width: 0; transition: flex 0.5s ease-out; cursor: pointer; }
.hiw-item:hover { flex: 2; }
.hiw-item-1 .hiw-img-card { background: #f1e8df; }
.hiw-item-2 .hiw-img-card { background: #f5ebe2; }
.hiw-item-3 .hiw-img-card { background: #f6efe6; }
.hiw-img-card { height: 200px; border-radius: 24px; overflow: hidden; transition: all 0.5s ease-out; }
@media (min-width: 1280px) { .hiw-img-card { height: 240px; } }
.hiw-img-card img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.4s ease-out; }
.how-works-desktop:hover .hiw-item:not(:hover) { flex: 0.7; }
.how-works-desktop:hover .hiw-item:not(:hover) .hiw-img-card img { opacity: 0.6; }
.hiw-text { margin-top: 16px; text-align: center; }
.hiw-title { font-size: 1.25rem; font-weight: 700; color: #333333; margin-bottom: 8px; }
@media (min-width: 1280px) { .hiw-title { font-size: 1.5rem; } }
.hiw-desc { font-size: 0.875rem; line-height: 1.6; color: #555555; opacity: 0; max-height: 0; overflow: hidden; transition: opacity 0.4s ease-out, max-height 0.5s ease-out; }
@media (min-width: 1280px) { .hiw-desc { font-size: 1rem; } }
.hiw-item:hover .hiw-desc { opacity: 1; max-height: 200px; }
.how-works-mobile { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 16px; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; }
.how-works-mobile::-webkit-scrollbar { display: none; }
@media (min-width: 1024px) { .how-works-mobile { display: none; } }
.hiw-mobile-card { flex: 0 0 80%; scroll-snap-align: start; }
.hiw-mobile-card .hiw-img-card { height: auto; border-radius: 24px; overflow: hidden; }
.hiw-mobile-card .hiw-img-card img { height: auto; }
.hiw-mobile-card .hiw-title { text-align: left; font-size: 1.1rem; }
.hiw-mobile-card .hiw-desc { opacity: 1; max-height: none; font-size: 0.85rem; text-align: left; }

/* ── Style Selector Section ── */
.style-section { padding: 24px 0 8px; background: linear-gradient(to bottom, #FDFBF9, #F5F0E8); }
.style-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; flex-direction: column; gap: 32px; }
@media (min-width: 1024px) { .style-inner { flex-direction: row; align-items: flex-start; gap: 32px; } }
.style-left { display: flex; flex-direction: column; align-items: center; }
@media (min-width: 1024px) { .style-left { width: 65%; align-items: flex-start; } }
.style-left h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: #333333; text-align: center; margin-bottom: 16px; }
@media (min-width: 1024px) { .style-left h2 { text-align: left; } }
.style-left > p { font-size: 1.125rem; color: #756666; text-align: center; margin-bottom: 32px; line-height: 1.7; }
@media (min-width: 1024px) { .style-left > p { text-align: left; } }
.style-select {
  width: 100%; max-width: 448px; height: 56px; padding: 0 40px 0 16px;
  background: #FDFBF9; border: 2px solid #DCD5CD; color: #333333;
  font-family: 'Playfair Display', Georgia, serif; font-size: 1rem; font-weight: 500;
  border-radius: 6px; cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23333333' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center; background-repeat: no-repeat; background-size: 1.5em;
  margin-bottom: 24px;
}
.style-content-wrap { position: relative; width: 100%; padding: 16px 4px; min-height: 180px; }
.style-quote-bg { position: absolute; top: -48px; left: -8px; font-size: 18rem; line-height: 1; color: #DCD5CD; opacity: 0.2; pointer-events: none; user-select: none; font-family: Georgia, serif; }
.style-text { display: none; font-size: clamp(1rem, 2.5vw, 1.5rem); color: #333333; line-height: 1.7; position: relative; }
.style-text.active { display: block; }
.style-text.italic { font-style: italic; }
.style-right { display: flex; align-items: center; justify-content: center; margin-top: 32px; }
@media (min-width: 1024px) { .style-right { width: 35%; margin-top: 0; } }
.style-right img { width: 100%; max-width: 220px; height: auto; object-fit: contain; }
@media (min-width: 1024px) { .style-right img { max-width: 280px; } }

/* ── Ink splash divider ── */
.ink-divider { width: 100%; padding: 16px 0 48px; background: linear-gradient(to bottom, #FDFBF9, #F5F0E8); display: flex; justify-content: center; }
.ink-divider img { width: 100%; max-width: 512px; height: auto; display: block; }

/* ── Carousel section ── */
.carousel-section { padding: 64px 0 96px; background: #F5F0E8; overflow: hidden; }
.carousel-header { max-width: 1280px; margin: 0 auto; padding: 0 24px; text-align: center; margin-bottom: 32px; }
.carousel-header h2 { font-size: clamp(2.2rem, 5vw, 3.75rem); font-weight: 700; color: #333333; }
.carousel-header p { font-size: 1.125rem; color: #555555; margin-top: 16px; max-width: 720px; margin-left: auto; margin-right: auto; }
.carousel-track-wrap { position: relative; }
.carousel-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none; }
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide { flex: 0 0 100%; scroll-snap-align: start; scroll-snap-stop: always; padding: 0 16px; }
@media (min-width: 768px) { .carousel-slide { padding: 0 32px; } }
.carousel-slide-inner { max-width: 1152px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; min-height: 500px; }
@media (min-width: 1024px) { .carousel-slide-inner { grid-template-columns: 1fr 1fr; gap: 64px; min-height: 600px; } }
.carousel-img-side { position: relative; padding: 24px 0; opacity: 0.5; transform: scale(0.95); transition: opacity 0.5s ease-out, transform 0.5s ease-out; }
.carousel-img-side.active { opacity: 1; transform: scale(1); }
.carousel-img-decor-br { position: absolute; bottom: 0; right: 0; width: 96px; height: 96px; border-radius: 50%; opacity: 0.2; }
@media (min-width: 768px) { .carousel-img-decor-br { width: 128px; height: 128px; } }
.carousel-img-decor-tl { position: absolute; top: 0; left: 0; width: 64px; height: 64px; border-radius: 50%; opacity: 0.1; }
@media (min-width: 768px) { .carousel-img-decor-tl { width: 80px; height: 80px; } }
.carousel-img-frame { border-radius: 24px; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,0.2); position: relative; }
.carousel-img-frame img { width: 100%; height: 256px; object-fit: cover; }
@media (min-width: 768px) { .carousel-img-frame img { height: 320px; } }
@media (min-width: 1024px) { .carousel-img-frame img { height: 384px; } }
.carousel-img-overlay { position: absolute; inset: 0; opacity: 0.2; }
.carousel-text-side { text-align: center; opacity: 0.5; transform: translateX(30px); transition: opacity 0.5s ease-out 0.1s, transform 0.5s ease-out 0.1s; }
@media (min-width: 1024px) { .carousel-text-side { text-align: left; } }
.carousel-text-side.active { opacity: 1; transform: translateX(0); }
.carousel-text-side h3 { font-size: clamp(1.75rem, 3.5vw, 3rem); font-weight: 700; color: #B86F64; margin-bottom: 24px; line-height: 1.2; }
.carousel-text-side p { font-size: clamp(1rem, 1.5vw, 1.25rem); color: #555555; line-height: 1.75; }
.carousel-text-side a.carousel-cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 32px; padding: 16px 32px; font-size: 1.125rem; font-weight: 600; color: #fff; background: #B86F64; border-radius: 12px; box-shadow: 0 4px 16px rgba(184,111,100,0.3); transition: background 0.2s, transform 0.2s; text-decoration: none; }
.carousel-text-side a.carousel-cta:hover { background: #A65D52; transform: scale(1.03); }
.carousel-nav-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.8); border: none; cursor: pointer; display: none; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.15); z-index: 10; transition: background 0.2s; }
.carousel-nav-btn:hover { background: #fff; }
@media (min-width: 768px) { .carousel-nav-btn { display: flex; width: 56px; height: 56px; } }
.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }
@media (min-width: 768px) { .carousel-prev { left: 32px; } .carousel-next { right: 32px; } }
.carousel-dots { display: flex; justify-content: center; gap: 12px; margin-top: 32px; }
@media (min-width: 768px) { .carousel-dots { margin-top: 48px; } }
.carousel-dot { width: 12px; height: 12px; border-radius: 50%; background: #DCD5CD; border: none; cursor: pointer; padding: 0; transition: background 0.2s, transform 0.2s; }
@media (min-width: 768px) { .carousel-dot { width: 16px; height: 16px; } }
.carousel-dot.active { transform: scale(1.25); }

/* ── Pricing V2 ── */
.pricing-v2 { padding: 56px 24px; background: #F5F0E8; }
.pricing-v2-inner { max-width: 896px; margin: 0 auto; }
.pricing-v2-header { text-align: center; margin-bottom: 24px; }
.pricing-v2-header h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: #333333; margin-bottom: 12px; }
.pricing-price { font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 700; color: #333333; }
.pricing-period { font-size: 1.25rem; color: #6b6b6b; }
.pricing-price-wrap { margin-bottom: 20px; }
.pricing-cta { display: inline-flex; align-items: center; justify-content: center; padding: 18px 48px; font-size: 1.125rem; font-weight: 600; background: #B86F64; color: #fff; border-radius: 12px; box-shadow: 0 8px 24px rgba(184,111,100,0.35); transition: background 0.2s, transform 0.2s; text-decoration: none; margin-bottom: 10px; }
.pricing-cta:hover { background: #A65D52; transform: scale(1.03); color: #fff; }
.pricing-no-cc { font-size: 0.875rem; color: #6b6b6b; }
.pricing-benefits { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 36px; }
@media (min-width: 768px) { .pricing-benefits { grid-template-columns: repeat(3, 1fr); } }
.pricing-benefit { text-align: center; }
.pricing-benefit h4 { font-weight: 600; color: #333333; margin-bottom: 6px; font-size: 0.95rem; }
.pricing-benefit p { font-size: 0.875rem; color: #6b6b6b; line-height: 1.6; }
.pricing-tagline { text-align: center; font-size: 1.25rem; color: #333333; font-weight: 500; max-width: 672px; margin: 36px auto 0; }

/* ── FAQ V2 ── */
.faq-v2 { padding: 96px 24px; background: #FDFBF9; }
.faq-v2-inner { max-width: 896px; margin: 0 auto; }
.faq-v2 h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: #333333; text-align: center; margin-bottom: 48px; }
.faq-v2 details { border-bottom: 1px solid #E8E2DA; }
.faq-v2 summary { display: flex; justify-content: space-between; align-items: center; cursor: pointer; list-style: none; padding: 20px 0; font-size: 1.125rem; font-weight: 500; color: #333333; text-align: left; }
.faq-v2 summary::-webkit-details-marker { display: none; }
.faq-v2 summary::after { content: ''; width: 1rem; height: 1rem; flex-shrink: 0; margin-left: 1rem; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-size: contain; background-repeat: no-repeat; transition: transform 0.2s ease-out; }
.faq-v2 details[open] summary::after { transform: rotate(180deg); }
.faq-v2 .faq-ans { color: #555555; font-size: 1rem; line-height: 1.625; padding-bottom: 20px; }

/* ── Featured Articles ── */
.articles-section { padding: 64px 24px; background: #FDFBF9; }
.articles-inner { max-width: 1152px; margin: 0 auto; }
.articles-section h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; color: #333333; text-align: center; margin-bottom: 40px; }
.articles-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .articles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .articles-grid { grid-template-columns: repeat(3, 1fr); } }
.article-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: box-shadow 0.2s, transform 0.2s; text-decoration: none; color: inherit; display: block; }
.article-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-2px); }
.article-card-img { width: 100%; height: 160px; object-fit: cover; background: #F5F0E8; }
.article-card-body { padding: 20px; }
.article-card-tag { font-size: 0.75rem; font-weight: 600; color: #B86F64; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.article-card-title { font-size: 1.05rem; font-weight: 700; color: #333333; line-height: 1.4; margin-bottom: 8px; }
.article-card-excerpt { font-size: 0.875rem; color: #6b6b6b; line-height: 1.6; }
.articles-all-btn { display: inline-block; padding: 12px 32px; background: #B86F64; color: #fff; border-radius: 8px; font-size: 1rem; font-weight: 600; text-decoration: none; transition: background 0.2s; }
.articles-all-btn:hover { background: #A65D52; }

/* ── Final CTA ── */
.final-cta { padding: 128px 24px; background: linear-gradient(135deg, #B86F64, #A65D52); color: #fff; text-align: center; }
.final-cta-inner { max-width: 896px; margin: 0 auto; }
.final-cta h2 { font-size: clamp(2.2rem, 5vw, 3.75rem); font-weight: 700; margin-bottom: 24px; line-height: 1.2; }
.final-cta > .final-cta-inner > p { font-size: clamp(1.1rem, 2vw, 1.5rem); opacity: 0.9; margin-bottom: 64px; max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.final-cta-btns { display: flex; flex-direction: column; gap: 16px; justify-content: center; }
@media (min-width: 640px) { .final-cta-btns { flex-direction: row; } }
.final-btn-outline { display: inline-flex; align-items: center; justify-content: center; padding: 16px 32px; font-size: 1.125rem; font-weight: 600; background: #fff; color: #B86F64; border: 2px solid #fff; border-radius: 8px; box-shadow: 0 4px 16px rgba(0,0,0,0.15); transition: background 0.2s, transform 0.2s; text-decoration: none; }
.final-btn-outline:hover { background: #f9f9f9; transform: scale(1.03); }
.final-btn-solid { display: inline-flex; align-items: center; justify-content: center; padding: 16px 32px; font-size: 1.125rem; font-weight: 600; background: rgba(184,111,100,0.35); color: #fff; border: 2px solid rgba(255,255,255,0.5); border-radius: 8px; box-shadow: 0 4px 16px rgba(0,0,0,0.15); transition: background 0.2s, transform 0.2s; text-decoration: none; }
.final-btn-solid:hover { background: rgba(184,111,100,0.6); transform: scale(1.03); }

/* ════════════════════════════════════════════════════
   THEMED LANDING PAGES (perheelle, ystaville, jne.)
   ════════════════════════════════════════════════════ */

/* ── Themed Hero: 2-column (text + card image) + wave ── */
.th-hero {
  position: relative;
  background: linear-gradient(135deg, #FDFBF9 0%, #F5F0E8 50%, #E9DFD4 100%);
  padding: 96px 24px 160px;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.th-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) { .th-hero-inner { grid-template-columns: 1fr 1fr; } }
.th-hero-left { text-align: center; }
@media (min-width: 1024px) { .th-hero-left { text-align: left; } }
.th-hero-eyebrow { font-size: 0.875rem; color: #B86F64; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.th-hero-left h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; color: #333333; margin-bottom: 24px; line-height: 1.2; }
.th-hero-left .th-hero-ingress { font-size: clamp(1.1rem, 2vw, 1.4rem); color: #555555; margin-bottom: 40px; line-height: 1.65; max-width: 520px; margin-left: auto; margin-right: auto; }
@media (min-width: 1024px) { .th-hero-left .th-hero-ingress { margin-left: 0; margin-right: 0; } }
.th-hero-btns { display: flex; flex-direction: column; gap: 16px; justify-content: center; }
@media (min-width: 540px) { .th-hero-btns { flex-direction: row; } }
@media (min-width: 1024px) { .th-hero-btns { justify-content: flex-start; } }
.th-btn-primary { display: inline-flex; align-items: center; justify-content: center; padding: 16px 32px; font-size: 1.05rem; font-weight: 600; background: #B86F64; color: #fff; border-radius: 8px; box-shadow: 0 4px 16px rgba(184,111,100,0.3); transition: background 0.2s, transform 0.2s; text-decoration: none; }
.th-btn-primary:hover { background: #A65D52; transform: scale(1.03); color: #fff; }
.th-btn-secondary { display: inline-flex; align-items: center; justify-content: center; padding: 16px 32px; font-size: 1.05rem; font-weight: 600; background: #fff; color: #B86F64; border: 2px solid #B86F64; border-radius: 8px; transition: background 0.2s, transform 0.2s; text-decoration: none; }
.th-btn-secondary:hover { background: #fdf5f4; transform: scale(1.03); }
.th-hero-right { display: flex; justify-content: center; }
@media (min-width: 1024px) { .th-hero-right { justify-content: flex-end; } }
.th-hero-img-wrap { position: relative; display: inline-block; }
.th-hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: -16px;
  background: rgba(220, 213, 205, 0.35);
  border-radius: 28px;
  filter: blur(24px);
  z-index: 0;
}
.th-hero-img-wrap img { position: relative; z-index: 1; border-radius: 16px; box-shadow: 0 25px 60px rgba(0,0,0,0.16); width: 100%; max-width: 576px; height: auto; object-fit: cover; }
.th-hero-wave { position: absolute; bottom: 0; left: 0; right: 0; overflow: hidden; }
.th-hero-wave svg { width: 100%; height: 80px; display: block; }

/* ── Phone section: heading + phone image left + content right ── */
.th-phone { padding: 80px 24px 96px; background: #FDFBF9; }
.th-phone-inner { max-width: 1152px; margin: 0 auto; }
.th-phone-header { text-align: center; margin-bottom: 56px; }
.th-phone-header h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; color: #333333; margin-bottom: 16px; line-height: 1.2; }
.th-phone-header p { font-size: 1.05rem; color: #555555; max-width: 560px; margin: 0 auto; line-height: 1.7; }
.th-phone-cols { display: flex; flex-direction: column; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .th-phone-cols { flex-direction: row; gap: 64px; } }
.th-phone-img { flex: 0 0 auto; display: flex; justify-content: center; }
.th-phone-img img { width: 100%; max-width: 320px; height: auto; object-fit: contain; }
@media (min-width: 1024px) { .th-phone-img img { max-width: 380px; } }
.th-phone-content { flex: 1; display: flex; flex-direction: column; gap: 28px; }
.th-phone-text h3 { font-size: 1.25rem; font-weight: 700; color: #333333; margin-bottom: 10px; }
.th-phone-text p { font-size: 1rem; color: #555555; line-height: 1.7; }
.th-phone-box { background: linear-gradient(135deg, #B86F64, #A65D52); border-radius: 16px; padding: 28px 32px; box-shadow: 0 8px 24px rgba(184,111,100,0.25); }
.th-phone-box h3 { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.th-phone-box p { font-size: 1rem; color: rgba(255,255,255,0.92); line-height: 1.7; }

/* ── Category 2×2 grid ── */
.th-cat { padding: 72px 24px 104px; background: #F5F0E8; }
.th-cat-inner { max-width: 960px; margin: 0 auto; }
.th-cat h2 { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 700; color: #333333; text-align: center; margin-bottom: 16px; }
.th-cat-sub { font-size: 1.05rem; color: #555555; text-align: center; margin-bottom: 56px; max-width: 540px; margin-left: auto; margin-right: auto; }
.th-cat-grid { display: grid; grid-template-columns: 1fr; gap: 36px 64px; }
@media (min-width: 768px) { .th-cat-grid { grid-template-columns: 1fr 1fr; } }
.th-cat-item h3 { font-size: 1.2rem; font-weight: 600; color: #B86F64; margin-bottom: 10px; }
.th-cat-item p { font-size: 1rem; color: #555555; line-height: 1.7; }

/* ── Statement section + wave ── */
.th-statement { padding: 48px 24px 128px; background: #F5F0E8; position: relative; overflow: hidden; }
.th-statement-inner { max-width: 768px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.th-statement h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 600; color: #B86F64; margin-bottom: 24px; }
.th-statement p { font-size: clamp(1.05rem, 2vw, 1.3rem); color: #333333; line-height: 1.8; font-style: italic; }
.th-statement-wave { position: absolute; bottom: 0; left: 0; right: 0; overflow: hidden; }
.th-statement-wave svg { width: 100%; height: 80px; display: block; }

/* ── Two-column final CTA ── */
.th-cta2 { padding: 96px 24px; background: linear-gradient(135deg, #B86F64, #A65D52); }
.th-cta2-inner { max-width: 1080px; margin: 0 auto; }
.th-cta2-cols { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 768px) { .th-cta2-cols { grid-template-columns: 1fr 1fr; position: relative; } }
.th-cta2-col { color: #fff; padding: 0 0 48px; }
@media (min-width: 768px) { .th-cta2-col { padding: 0 48px 0 0; } }
.th-cta2-col + .th-cta2-col { border-top: 1px solid rgba(255,255,255,0.25); padding-top: 48px; }
@media (min-width: 768px) { .th-cta2-col + .th-cta2-col { border-top: none; padding-top: 0; padding-left: 48px; padding-right: 0; border-left: 1px solid rgba(255,255,255,0.25); } }
.th-cta2-col h3 { font-size: clamp(1.2rem, 2.5vw, 1.65rem); font-weight: 700; margin-bottom: 16px; line-height: 1.3; }
.th-cta2-col p { font-size: 1rem; opacity: 0.9; margin-bottom: 28px; line-height: 1.7; }
.th-btn-white { display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px; font-size: 1rem; font-weight: 600; background: #fff; color: #B86F64; border: 2px solid #fff; border-radius: 8px; box-shadow: 0 4px 16px rgba(0,0,0,0.15); transition: background 0.2s, transform 0.2s; text-decoration: none; }
.th-btn-white:hover { background: #f9f9f9; transform: scale(1.03); }
.th-btn-outline-white { display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px; font-size: 1rem; font-weight: 600; background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7); border-radius: 8px; transition: background 0.2s, transform 0.2s; text-decoration: none; }
.th-btn-outline-white:hover { background: rgba(255,255,255,0.15); transform: scale(1.03); }

/* ════════════════════════════════════════════════════
   ARTICLE LISTING PAGE (/fi/artikkelit)
   ════════════════════════════════════════════════════ */
.art-listing-hero { padding: 80px 24px 48px; background: #FDFBF9; max-width: var(--max-w); margin: 0 auto; }
.art-listing-hero .section-label { font-size: 0.875rem; font-weight: 600; color: #B86F64; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; display: block; }
.art-listing-hero h1 { font-size: clamp(1.9rem, 4.5vw, 2.75rem); font-weight: 700; color: #333333; margin-bottom: 16px; }
.art-listing-hero .art-intro { color: #555555; font-size: 1.05rem; line-height: 1.7; max-width: 600px; }
.art-listing-section { padding: 24px 24px 96px; background: #FDFBF9; }
.art-listing-section .articles-inner { max-width: var(--max-w); margin: 0 auto; }

/* ════════════════════════════════════════════════════
   SINGLE ARTICLE PAGE (standalone SSR)
   ════════════════════════════════════════════════════ */
.art-page-wrap { background: #FDFBF9; min-height: 100vh; }
.art-page { max-width: 760px; margin: 0 auto; padding: 72px 24px 96px; }
.art-page-back { display: inline-flex; align-items: center; gap: 6px; font-size: 0.9rem; color: #B86F64; font-weight: 600; margin-bottom: 36px; text-decoration: none; }
.art-page-back:hover { text-decoration: underline; }
.art-page-back::before { content: '←'; }
.art-page-date { font-size: 0.875rem; color: #B86F64; font-weight: 600; margin-bottom: 16px; display: block; }
.art-page-title { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; color: #333333; line-height: 1.2; margin-bottom: 20px; }
.art-page-desc { font-size: 1.1rem; color: #555555; line-height: 1.7; margin-bottom: 36px; border-left: 3px solid #B86F64; padding-left: 20px; font-style: italic; }
.art-page-img { width: 100%; max-height: 460px; object-fit: cover; border-radius: 12px; margin-bottom: 48px; display: block; }
.art-page-body { font-size: 1.05rem; color: #333333; line-height: 1.85; }
.art-page-body h2 { font-size: 1.5rem; font-weight: 700; color: #333333; margin: 48px 0 16px; }
.art-page-body h3 { font-size: 1.2rem; font-weight: 600; color: #333333; margin: 32px 0 12px; }
.art-page-body p { margin-bottom: 20px; }
.art-page-body ul, .art-page-body ol { margin: 0 0 20px 24px; }
.art-page-body li { margin-bottom: 8px; }
.art-page-body a { color: #B86F64; text-decoration: underline; }
.art-page-body blockquote { border-left: 3px solid #B86F64; margin: 32px 0; padding: 16px 24px; background: #F5F0E8; border-radius: 0 8px 8px 0; font-style: italic; color: #555555; }
.art-page-body img { border-radius: 8px; margin: 16px 0; }
