/* watiara.shop – unique editorial asymmetric warm layout 2026 */
:root {
  --bg: #f8f4ef;
  --bg-alt: #efe9e1;
  --bg-dark: #1c1916;
  --ink: #1c1916;
  --muted: #6b635a;
  --accent: #a65d3f;
  --accent-soft: #d4a28a;
  --line: #e0d8ce;
  --max: 720px;
  --wide: 1100px;
  --space: clamp(2.5rem, 5vw, 5rem);
  --font-serif: Georgia, "Times New Roman", Times, serif;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 100%;
  background: var(--accent);
  z-index: 100;
  display: none;
}
@media (min-width: 900px) { body::before { display: block; } }
a { color: var(--accent); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s, color 0.2s; }
a:hover { border-bottom-color: var(--accent); }
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
  padding: 1.1rem 0;
}
.header-inner {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  border: none;
}
.logo:hover { color: var(--accent); border: none; }
.logo span { color: var(--accent); font-weight: 400; }
nav { display: flex; flex-wrap: wrap; gap: 0.35rem 1.4rem; align-items: center; }
nav a {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  border: none;
  font-weight: 500;
}
nav a:hover, nav a.active { color: var(--ink); border: none; }
main { flex: 1; width: 100%; }
.container { max-width: var(--wide); margin: 0 auto; padding: 0 1.5rem; }
.narrow { max-width: var(--max); margin: 0 auto; }
.hero { padding: var(--space) 0 calc(var(--space) * 0.7); border-bottom: 1px solid var(--line); }
.hero-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); margin-bottom: 1.2rem; font-weight: 600; }
.hero h1 { font-family: var(--font-serif); font-size: clamp(2.4rem, 6vw, 3.8rem); line-height: 1.12; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 1.8rem; max-width: 14ch; }
.hero-lead { font-size: 1.15rem; color: var(--muted); max-width: 38ch; line-height: 1.65; }
.section { padding: var(--space) 0; }
.section + .section { border-top: 1px solid var(--line); }
.section-title { font-family: var(--font-serif); font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 2rem; letter-spacing: -0.02em; }
.article-stack { display: flex; flex-direction: column; gap: 0; }
.article-item {
  padding: 2.4rem 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem 2rem;
  align-items: start;
  transition: background 0.25s;
}
.article-item:hover { background: var(--bg-alt); }
.article-num { font-family: var(--font-serif); font-size: 2.2rem; color: var(--accent-soft); line-height: 1; min-width: 2.5rem; }
.article-item h2 { font-family: var(--font-serif); font-size: 1.45rem; line-height: 1.3; margin-bottom: 0.6rem; letter-spacing: -0.015em; }
.article-item h2 a { color: var(--ink); border: none; }
.article-item h2 a:hover { color: var(--accent); }
.article-item p { color: var(--muted); font-size: 0.98rem; max-width: 52ch; }
.article-meta { font-size: 0.78rem; color: var(--muted); margin-top: 0.8rem; letter-spacing: 0.03em; }
.article-header { padding: var(--space) 0 2.5rem; border-bottom: 1px solid var(--line); }
.article-header .label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 1rem; font-weight: 600; }
.article-header h1 { font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3rem); line-height: 1.15; letter-spacing: -0.025em; margin-bottom: 1.2rem; }
.article-header .meta { font-size: 0.85rem; color: var(--muted); }
.article-body { padding: 3rem 0 var(--space); }
.article-body h2 { font-family: var(--font-serif); font-size: 1.45rem; margin: 2.8rem 0 1.1rem; letter-spacing: -0.015em; }
.article-body h3 { font-size: 1.1rem; margin: 2rem 0 0.8rem; font-weight: 600; }
.article-body p { margin-bottom: 1.35rem; }
.article-body ul, .article-body ol { margin: 1.4rem 0 1.6rem 1.4rem; }
.article-body li { margin-bottom: 0.55rem; }
.article-body blockquote {
  margin: 2.5rem 0;
  padding: 1.5rem 0 1.5rem 1.5rem;
  border-left: 3px solid var(--accent);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--ink);
}
.pull-note {
  background: var(--bg-alt);
  padding: 1.6rem 1.8rem;
  margin: 2.5rem 0;
  border-left: 3px solid var(--accent-soft);
  font-size: 0.95rem;
  color: var(--muted);
}
.author-teaser { background: var(--bg-dark); color: #f0ebe4; padding: var(--space) 0; margin-top: auto; }
.author-teaser .container { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 700px) { .author-teaser .container { grid-template-columns: 1.2fr 1fr; align-items: center; } }
.author-teaser h2 { font-family: var(--font-serif); font-size: 1.8rem; margin-bottom: 1rem; color: #fff; }
.author-teaser p { color: #c9c0b5; margin-bottom: 1.5rem; max-width: 40ch; }
.btn {
  display: inline-block;
  padding: 0.75rem 1.6rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid #f0ebe4;
  color: #f0ebe4;
  background: transparent;
  transition: background 0.2s, color 0.2s;
  border-radius: 0;
  cursor: pointer;
  font-weight: 500;
}
.btn:hover { background: #f0ebe4; color: var(--bg-dark); border-color: #f0ebe4; }
.btn-accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-accent:hover { background: #8f4d34; border-color: #8f4d34; color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; padding: var(--space) 0; }
@media (min-width: 800px) { .contact-grid { grid-template-columns: 1fr 1.1fr; } }
.contact-info h1 { font-family: var(--font-serif); font-size: 2.2rem; margin-bottom: 1.5rem; }
.contact-info p { color: var(--muted); margin-bottom: 1.2rem; }
.contact-details { margin-top: 2rem; font-size: 0.95rem; }
.contact-details dt { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 0.25rem; }
.contact-details dd { margin-bottom: 1.3rem; color: var(--ink); }
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.4rem; color: var(--muted); }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  border-radius: 0;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group textarea { min-height: 150px; resize: vertical; }
.thankyou { text-align: center; padding: calc(var(--space) * 1.5) 0; }
.thankyou h1 { font-family: var(--font-serif); font-size: 2.6rem; margin-bottom: 1rem; }
.thankyou p { color: var(--muted); max-width: 36ch; margin: 0 auto 2rem; }
.policy-body { padding: 3rem 0 var(--space); }
.policy-body h1 { font-family: var(--font-serif); font-size: 2.3rem; margin-bottom: 1.5rem; }
.policy-body h2 { font-family: var(--font-serif); font-size: 1.35rem; margin: 2.4rem 0 1rem; }
.policy-body p, .policy-body li { margin-bottom: 1rem; color: var(--ink); }
.policy-body ul { margin-left: 1.3rem; margin-bottom: 1.5rem; }
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding: 3.5rem 0 2rem;
  margin-top: auto;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 0.8rem; }
.footer-brand span { color: var(--accent); }
.footer-about { color: var(--muted); max-width: 32ch; line-height: 1.6; }
.footer-col h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.45rem; }
.footer-col a { color: var(--muted); border: none; font-size: 0.9rem; }
.footer-col a:hover { color: var(--ink); }
.footer-address { color: var(--muted); line-height: 1.6; font-size: 0.9rem; }
.footer-bottom {
  max-width: var(--wide);
  margin: 2.5rem auto 0;
  padding: 1.5rem 1.5rem 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
}
.footer-bottom a { color: var(--muted); border: none; margin-right: 1rem; }
.footer-bottom a:hover { color: var(--ink); }
.disclaimer { font-size: 0.78rem; color: var(--muted); max-width: 60ch; line-height: 1.5; }
@media (max-width: 600px) {
  html { font-size: 16px; }
  .article-item { grid-template-columns: 1fr; gap: 0.6rem; }
  .article-num { font-size: 1.5rem; }
  nav { gap: 0.3rem 1rem; }
}