/* Tanageno.shop — Unique 2026 design
   Misty Rose + Deep Teal + Soft Gold
   Radius 24px, soft layered shadows
   Completely different from previous projects
*/

:root {
  --bg: #FDF8F5;
  --bg-soft: #F5EDE6;
  --surface: #FFFFFF;
  --ink: #1C2B2D;
  --ink-soft: #4A5C5E;
  --accent: #0F766E;
  --accent-hover: #0D9488;
  --deep: #134E4A;
  --gold: #D4A574;
  --border: #E8DDD4;
  --highlight: #FEF3C7;
  --radius: 24px;
  --radius-sm: 14px;
  --shadow: 0 6px 24px rgba(19, 78, 74, 0.07);
  --shadow-hover: 0 12px 36px rgba(19, 78, 74, 0.12);
  --max: 1100px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* HEADER — light with strong bottom accent */
.site-header {
  background: var(--surface);
  border-bottom: 3px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 200;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--deep);
  text-decoration: none;
  letter-spacing: -0.03em;
}

.logo em {
  font-style: normal;
  color: var(--accent);
  font-weight: 500;
  font-size: 0.78rem;
  margin-left: 0.3rem;
}

.nav {
  display: flex;
  gap: 0.15rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  transition: all 0.18s;
}

.nav a:hover,
.nav a.active {
  background: var(--bg-soft);
  color: var(--deep);
}

.nav a.cta {
  background: var(--accent);
  color: #fff !important;
}

.nav a.cta:hover { background: var(--accent-hover); }

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 22px;
  position: relative;
}

.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  position: absolute;
  transition: 0.2s;
}
.menu-btn span { top: 10px; }
.menu-btn span::before { content: ""; top: -7px; }
.menu-btn span::after { content: ""; top: 7px; }

/* HERO — left accent panel style */
.hero {
  padding: 3.8rem 1.5rem 3.2rem;
  background: linear-gradient(160deg, var(--bg-soft) 0%, var(--bg) 70%);
}

.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.8rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 4.3vw, 2.85rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 1.15rem;
}

.hero h1 span {
  color: var(--accent);
  display: block;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 36ch;
  margin-bottom: 1.7rem;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.18s;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--deep);
  background: var(--surface);
}

.hero-note {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}

.hero-note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.4rem;
  bottom: 1.4rem;
  width: 5px;
  background: var(--gold);
  border-radius: 0 4px 4px 0;
}

.hero-note h2 {
  font-size: 1.05rem;
  font-weight: 750;
  color: var(--deep);
  margin-bottom: 0.65rem;
}

.hero-note p {
  font-size: 0.94rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

/* MAIN */
main {
  flex: 1;
  padding: 3.2rem 1.5rem 4rem;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
}

.section-label {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.7rem;
  color: var(--ink);
}

/* Articles — 2 col with featured */
.posts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.post {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.65rem 1.55rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s;
}

.post:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.post.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, var(--highlight) 0%, var(--surface) 100%);
  padding: 2rem;
}

.post-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent);
  margin-bottom: 0.55rem;
}

.post h3 {
  font-size: 1.22rem;
  font-weight: 750;
  line-height: 1.3;
  margin-bottom: 0.7rem;
  letter-spacing: -0.02em;
}

.post h3 a {
  color: var(--ink);
  text-decoration: none;
}
.post h3 a:hover { color: var(--accent); }

.post p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  flex: 1;
  margin-bottom: 1.1rem;
}

.post-meta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.post-meta a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

/* About */
.about-band {
  margin-top: 3.4rem;
  background: var(--deep);
  color: #fff;
  border-radius: var(--radius);
  padding: 2.4rem 2.2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.about-band h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.about-band p {
  opacity: 0.92;
  max-width: 48ch;
  font-size: 1.02rem;
}

/* ARTICLE */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 255px;
  gap: 2.4rem;
  align-items: start;
}

.article-main {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2.4rem 2.3rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.article-main h1 {
  font-size: clamp(1.65rem, 3.2vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 0.8rem;
}

.article-meta {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 1.6rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.article-main p {
  margin-bottom: 1.2rem;
  font-size: 1.03rem;
}

.article-main h2 {
  font-size: 1.25rem;
  font-weight: 750;
  margin: 2rem 0 0.85rem;
  color: var(--deep);
}

.article-main ul, .article-main ol {
  margin: 1rem 0 1.3rem 1.3rem;
}

.article-main li { margin-bottom: 0.5rem; }

.article-main blockquote {
  margin: 1.7rem 0;
  padding: 1rem 1.25rem;
  background: var(--bg-soft);
  border-left: 5px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--ink-soft);
}

.side {
  position: sticky;
  top: 5.5rem;
}

.side-box {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 1.2rem;
}

.side-box h3 {
  font-size: 0.9rem;
  font-weight: 750;
  margin-bottom: 0.75rem;
  color: var(--deep);
}

.side-box a {
  display: block;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.88rem;
  padding: 0.32rem 0;
  border-bottom: 1px solid var(--border);
}
.side-box a:last-child { border: none; }
.side-box a:hover { color: var(--accent); }

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.6rem;
}

.contact-info h1 {
  font-size: 1.95rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}

.contact-info p {
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}

.info-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  margin-top: 1.3rem;
  border: 1px solid var(--border);
}

.info-card strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 0.3rem;
}

.form-box {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.9rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.field {
  margin-bottom: 1.2rem;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.78rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 1rem;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.18s;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

/* LEGAL */
.legal {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2.4rem 2.3rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  max-width: 780px;
  margin: 0 auto;
}

.legal h1 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.legal .date {
  font-size: 0.85rem;
  color: var(--deep);
  font-weight: 600;
  margin-bottom: 1.7rem;
}

.legal h2 {
  font-size: 1.18rem;
  font-weight: 750;
  margin: 1.9rem 0 0.75rem;
  color: var(--deep);
}

.legal p, .legal li {
  margin-bottom: 0.8rem;
  color: var(--ink-soft);
}

.legal ul {
  margin-left: 1.2rem;
  margin-bottom: 1rem;
}

/* THANKS */
.thanks {
  text-align: center;
  max-width: 500px;
  margin: 3.5rem auto;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2.6rem 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.thanks h1 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--deep);
  margin-bottom: 0.85rem;
}

/* FOOTER — different: left brand + right links */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.82);
  padding: 3rem 1.5rem 1.8rem;
  margin-top: auto;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand {
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.55rem;
}

.footer-brand span { color: var(--gold); }

.footer-desc {
  font-size: 0.92rem;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.footer-address {
  font-size: 0.9rem;
  line-height: 1.55;
  opacity: 0.75;
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.78rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
}

.footer-bottom a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--gold); }

.disclaimer {
  font-size: 0.74rem;
  opacity: 0.6;
  width: 100%;
  margin-top: 0.35rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .posts { grid-template-columns: 1fr; }
  .post.featured { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .side { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-band { grid-template-columns: 1fr; text-align: center; }
  .about-band p { margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .menu-btn { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 0.9rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .header-inner { position: relative; }
  .footer-grid { grid-template-columns: 1fr; }
  .article-main, .legal { padding: 1.5rem 1.25rem; }
  .hero { padding: 2.6rem 1.2rem 2.3rem; }
}
