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

:root {
  --paper: #fbf7f2;
  --paper-deep: #f3e8e7;
  --ink: #352137;
  --muted: #765f70;
  --mauve: #a65d83;
  --mauve-dark: #743d61;
  --lavender: #e6d8e9;
  --lilac: #cbb4d3;
  --line: rgba(116, 61, 97, .16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 6%, rgba(226, 201, 222, .45), transparent 22rem),
    var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.09'/%3E%3C/svg%3E");
}
a { color: inherit; }
a:focus-visible, button:focus-visible {
  outline: 3px solid rgba(166, 93, 131, .42);
  outline-offset: 4px;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  margin: 18px auto 0;
  padding: 10px 14px 10px 12px;
  border: 1px solid rgba(255,255,255,.86);
  border-radius: 999px;
  background: rgba(255, 251, 248, .82);
  box-shadow: 0 15px 34px rgba(86, 47, 70, .08);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.02em;
  text-decoration: none;
}
.brand img { width: 36px; height: 36px; border-radius: 12px; object-fit: cover; }
.brand span { font-size: 17px; letter-spacing: -.04em; }
.site-nav { display: flex; align-items: center; gap: clamp(12px, 2.5vw, 30px); }
.site-nav a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}
.site-nav a:hover { color: var(--mauve-dark); transform: translateY(-1px); }
.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--mauve-dark);
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(116, 61, 97, .18);
}
.hero {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(80px, 12vw, 142px) 20px 90px;
  text-align: center;
}
.hero::after {
  position: absolute;
  right: 2%;
  bottom: 10%;
  width: 68px;
  height: 68px;
  border: 1px solid var(--lilac);
  border-radius: 44% 56% 58% 42%;
  content: "";
  opacity: .7;
  transform: rotate(24deg);
}
.eyebrow {
  display: block;
  margin-bottom: 16px;
  color: var(--mauve-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 600; }
.hero h1 {
  max-width: 780px;
  margin: 0 auto 18px;
  color: var(--ink);
  font-size: clamp(46px, 7vw, 82px);
  letter-spacing: -.055em;
  line-height: .95;
}
.hero h1 em { color: var(--mauve); font-style: italic; }
.hero p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
}
.articles-wrap { width: min(1160px, calc(100% - 40px)); margin: 0 auto; padding: 0 0 110px; }
.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  color: var(--mauve-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.section-kicker::after { width: 68px; height: 1px; background: var(--lilac); content: ""; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.article-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 252, 249, .84);
  box-shadow: 0 8px 22px rgba(91, 48, 73, .04);
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.article-card:hover { border-color: rgba(166, 93, 131, .38); box-shadow: 0 22px 48px rgba(91, 48, 73, .12); transform: translateY(-6px); }
.card-art {
  position: relative;
  display: grid;
  min-height: 152px;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #eaddec, #f8e5e4);
}
.card-art::before, .card-art::after { position: absolute; border-radius: 999px; content: ""; }
.card-art::before { width: 150px; height: 150px; background: rgba(255,255,255,.42); transform: translate(-48px, 34px); }
.card-art::after { width: 96px; height: 96px; border: 1px solid rgba(116, 61, 97, .18); transform: translate(74px, -38px); }
.card-art .shape {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 42% 58% 56% 44%;
  background: linear-gradient(145deg, #d5b3dc, #9e5b88);
  box-shadow: 9px 12px 22px rgba(116, 61, 97, .2), inset 8px 7px 8px rgba(255,255,255,.35);
  transform: rotate(-13deg);
}
.card-art .shape::after { position: absolute; inset: 15px 20px 11px; border-radius: 50%; background: rgba(255,255,255,.55); content: ""; }
.card-art.style { background: linear-gradient(135deg, #e9d9e5, #f4e0d4); }
.card-art.style .shape { border-radius: 50% 44% 58% 46%; background: linear-gradient(145deg, #e9b8bf, #9b658d); transform: rotate(16deg); }
.card-art.relations { background: linear-gradient(135deg, #ead8e5, #f3d7d5); }
.card-art.relations .shape { border-radius: 50% 50% 44% 56%; background: linear-gradient(145deg, #e7b0bb, #9d547c); transform: rotate(45deg) scale(.86); }
.card-art.voice { background: linear-gradient(135deg, #e6e0ee, #ead8df); }
.card-art.voice .shape { border-radius: 42%; background: linear-gradient(145deg, #c9bfdd, #725c91); transform: rotate(8deg); }
.card-art.friends { background: linear-gradient(135deg, #e6e1ec, #f0ded7); }
.card-art.friends .shape { border-radius: 50%; background: linear-gradient(145deg, #d8c1d8, #af7188); transform: rotate(-28deg) scale(.9); }
.card-art.wellness { background: linear-gradient(135deg, #eee1e1, #e4dce9); }
.card-art.wellness .shape { border-radius: 58% 42% 45% 55%; background: linear-gradient(145deg, #e6c1bf, #9f7196); transform: rotate(22deg); }
.card-body { display: flex; flex: 1; flex-direction: column; padding: 22px 23px 20px; }
.card-category { margin-bottom: 9px; color: var(--mauve-dark); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.card-body h2 { margin: 0 0 10px; font-size: 25px; letter-spacing: -.035em; line-height: 1.02; }
.card-body p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.card-meta { display: flex; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 20px; color: #987f91; font-size: 11px; }
.card-meta strong { color: var(--mauve-dark); font-weight: 700; }
.site-footer { margin-top: 20px; padding: 34px 20px 42px; border-top: 1px solid var(--line); text-align: center; }
.site-footer p { margin: 0; color: var(--muted); font-size: 12px; }

.article-page { width: min(800px, calc(100% - 40px)); margin: 0 auto; padding: 76px 0 100px; }
.breadcrumbs { margin-bottom: 34px; color: #8e778a; font-size: 12px; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--mauve-dark); text-decoration: underline; text-underline-offset: 3px; }
.article-header { max-width: 750px; }
.article-header h1 { margin: 0 0 20px; color: var(--ink); font-size: clamp(44px, 7vw, 72px); letter-spacing: -.06em; line-height: .94; }
.article-header .dek { max-width: 650px; margin: 0 0 25px; color: var(--muted); font-size: 18px; line-height: 1.55; }
.article-meta { display: flex; align-items: center; gap: 14px; padding: 18px 0 28px; border-bottom: 1px solid var(--line); color: #8e778a; font-size: 12px; }
.article-meta::before { width: 28px; height: 28px; border: 1px solid rgba(255,255,255,.8); border-radius: 10px 13px 11px 12px; background: url("images/logo-taelya-icon.png") center / cover, var(--lavender); content: ""; box-shadow: 0 3px 9px rgba(116, 61, 97, .13); }
.article-meta strong { color: var(--ink); }
.article-content { padding-top: 38px; color: #574459; font-size: 17px; line-height: 1.85; }
.article-content > p:first-child::first-letter { float: left; margin: .08em .1em 0 0; color: var(--mauve-dark); font-family: var(--serif); font-size: 4.4em; line-height: .72; }
.article-content p { margin: 0 0 23px; }
.article-content h2 { margin: 44px 0 10px; color: var(--ink); font-size: 32px; letter-spacing: -.04em; line-height: 1.05; }
.article-content ul { margin: -3px 0 27px; padding-left: 24px; }
.article-content li { margin: 8px 0; padding-left: 5px; }
.article-content blockquote { margin: 40px 0; padding: 25px 28px; border-left: 3px solid var(--mauve); background: rgba(230, 216, 233, .42); color: var(--mauve-dark); font-family: var(--serif); font-size: 25px; font-style: italic; line-height: 1.22; }
.article-cta { margin-top: 48px; padding: 35px 30px; border: 1px solid rgba(166, 93, 131, .22); border-radius: 26px; background: linear-gradient(135deg, rgba(230,216,233,.7), rgba(249,231,226,.72)); text-align: center; }
.article-cta h2 { margin: 0 0 8px; color: var(--ink); font-size: 34px; }
.article-cta p { max-width: 480px; margin: 0 auto 22px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.button {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--mauve-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(116, 61, 97, .2);
  transition: transform .2s ease, background-color .2s ease;
}
.button:hover { background: var(--mauve); transform: translateY(-2px); }
.related { margin-top: 55px; padding-top: 28px; border-top: 1px solid var(--line); }
.related h2 { margin: 0 0 18px; font-size: 30px; }
.related-list { display: grid; gap: 10px; }
.related-list a { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 15px 17px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255, 252, 249, .68); color: var(--ink); font-size: 14px; font-weight: 600; text-decoration: none; transition: border-color .2s ease, transform .2s ease; }
.related-list a:hover { border-color: rgba(166, 93, 131, .4); transform: translateX(3px); }
.related-list span { color: var(--mauve-dark); font-size: 18px; }

@media (max-width: 820px) {
  .article-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .site-header { width: calc(100% - 24px); margin-top: 12px; }
  .site-nav { gap: 10px; }
  .site-nav a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 9px 12px; font-size: 11px !important; }
  .hero { padding-top: 88px; padding-bottom: 70px; }
  .hero h1 { font-size: clamp(43px, 14vw, 64px); }
  .articles-wrap, .article-page { width: calc(100% - 28px); }
  .article-grid { grid-template-columns: 1fr; gap: 16px; }
  .article-card { min-height: 0; }
  .card-art { min-height: 138px; }
  .article-page { padding-top: 50px; }
  .article-header h1 { font-size: clamp(42px, 12vw, 62px); }
  .article-header .dek { font-size: 16px; }
  .article-content { font-size: 16px; line-height: 1.78; }
  .article-content h2 { font-size: 29px; }
  .article-content blockquote { margin-inline: 0; padding: 21px; font-size: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}