/* Wentino.shop – unique 2026: soft blush + charcoal + cream */
:root {
  --bg: #F9F5F2;
  --bg-alt: #F0E9E3;
  --surface: #FFFFFF;
  --text: #2A2420;
  --text-soft: #5C534C;
  --primary: #2A2420;
  --primary-hover: #1A1614;
  --accent: #C17B6A;
  --accent-soft: #E0B5A8;
  --muted: #9A8F86;
  --border: #E5DBD3;
  --radius: 6px;
  --radius-lg: 18px;
  --shadow: 0 12px 32px rgba(42, 36, 32, 0.07);
  --max: 1040px;
  --font-body: 'Sora', system-ui, sans-serif;
  --font-display: 'Instrument Serif', Georgia, serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.25;
  color: var(--primary);
}
h1 { font-size: clamp(2.4rem, 5.2vw, 3.3rem); margin-bottom: 1.3rem; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.3vw, 2.1rem); margin: 2.7rem 0 1.1rem; }
h3 { font-size: 1.28rem; margin: 1.8rem 0 0.7rem; }
p { margin-bottom: 1.3rem; }
ul, ol { margin: 0 0 1.4rem 1.5rem; }
li { margin-bottom: 0.55rem; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4.3rem 0; }
.section-alt { background: var(--bg-alt); }

/* HEADER – left logo, right nav, thin top line */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(249, 245, 242, 0.95);
  backdrop-filter: blur(12px);
  border-top: 3px solid var(--accent);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.logo span { color: var(--accent); }
.nav { display: flex; gap: 1.4rem; align-items: center; flex-wrap: wrap; }
.nav a {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-soft);
}
.nav a:hover { color: var(--primary); }
.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.82rem;
}
.nav-cta:hover { background: var(--accent); color: #fff !important; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 22px; position: relative;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px; background: var(--primary);
  position: absolute; left: 0; transition: .25s;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }

/* HERO – left text + right soft block */
.hero {
  padding: 5rem 0 4.5rem;
  background: var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.hero-lead {
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 36ch;
  margin-bottom: 2.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.6rem; border-radius: var(--radius);
  font-weight: 600; font-size: 0.88rem; border: none; cursor: pointer; transition: all .2s;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--accent); color: #fff; }
.btn-outline {
  background: transparent; color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.hero-side {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.8rem 2.3rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.hero-side::before {
  content: '';
  position: absolute;
  top: -50px; right: -30px;
  width: 140px; height: 140px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.25;
}
.hero-side h2 {
  color: #fff;
  font-size: 1.6rem;
  margin: 0 0 0.8rem;
  position: relative;
  z-index: 1;
}
.hero-side p { opacity: 0.85; font-size: 0.95rem; position: relative; z-index: 1; margin: 0; }

/* CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.7rem;
}
.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
  border: 1px solid var(--border);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-tag {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.8rem;
}
.card h3 { font-size: 1.22rem; margin: 0 0 0.8rem; }
.card p { color: var(--text-soft); font-size: 0.95rem; flex-grow: 1; }
.card-link { margin-top: 1.3rem; font-weight: 600; font-size: 0.88rem; color: var(--primary); }
.card-link:hover { color: var(--accent); }

/* ARTICLE */
.article-hero {
  padding: 3.6rem 0 2.3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.8rem;
  text-align: center;
}
.article-meta {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 1.1rem; font-size: 0.82rem; color: var(--text-soft); margin-bottom: 1.1rem;
  text-transform: uppercase; letter-spacing: 0.04em; font-weight: 500;
}
.article-body { max-width: 680px; margin: 0 auto; }
.article-body h2 { margin-top: 3rem; }
.pull-quote {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.4;
  color: var(--primary);
  text-align: center;
  margin: 3.2rem auto;
  max-width: 28ch;
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  text-align: left;
}

/* ABOUT */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3.2rem;
  align-items: start;
}
.about-side {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.6rem 2.2rem;
  position: sticky;
  top: 100px;
}
.about-side h2 { color: #fff; margin-top: 0; font-size: 1.5rem; }
.about-side p { opacity: 0.9; }
.about-list { list-style: none; margin: 1.6rem 0 0; padding: 0; }
.about-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  font-size: 0.95rem;
}

/* CONTACT – different: form left, info right stacked */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-form-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.3rem;
  box-shadow: var(--shadow);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
.contact-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 1.7rem;
}
.contact-card strong {
  display: block; font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--muted); margin-bottom: 0.4rem;
}
.form-group { margin-bottom: 1.3rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.4rem; font-size: 0.9rem; }
.form-group input, .form-group textarea {
  width: 100%; padding: 0.9rem 1.1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: inherit; font-size: 1rem; background: var(--bg);
  transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group textarea { min-height: 150px; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--text-soft); margin-top: 0.9rem; }

/* THANKS */
.thanks-box {
  text-align: center; max-width: 470px; margin: 5rem auto;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 3.3rem 2.3rem; box-shadow: var(--shadow);
}
.thanks-box h1 { font-size: 2.2rem; }

/* FOOTER – different structure */
.site-footer {
  margin-top: auto;
  background: var(--primary);
  color: rgba(255,255,255,0.9);
  padding: 3.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.4rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem; color: #fff; margin-bottom: 0.8rem;
}
.footer-brand span { color: var(--accent-soft); }
.footer-address { font-size: 0.9rem; line-height: 1.7; opacity: 0.85; }
.footer-col h4 {
  color: #fff; font-size: 0.78rem; margin-bottom: 1rem;
  font-family: var(--font-body); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.07em;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.45rem; }
.footer-col a { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 1.3rem 0;
  font-size: 0.8rem; opacity: 0.75;
}
.footer-bottom-inner {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  max-width: var(--max); margin: 0 auto; padding: 0 1.5rem;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 1.3rem; }
.footer-legal a { color: rgba(255,255,255,0.75); }
.disclaimer { font-size: 0.78rem; opacity: 0.65; max-width: 520px; margin-top: 1rem; line-height: 1.5; }
.policy-content { max-width: 720px; margin: 0 auto; }
.policy-content h2 { margin-top: 2.6rem; }
.text-center { text-align: center; }

@media (max-width: 900px) {
  .hero-grid, .about-layout, .contact-grid { grid-template-columns: 1fr; }
  .about-side { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    flex-direction: column; padding: 1.3rem 1.5rem 1.7rem; gap: 0.9rem;
  }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-cta { width: 100%; text-align: center; }
}
@media (max-width: 560px) {
  html { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 3.5rem 0 3rem; }
  .section { padding: 3.2rem 0; }
  .cards-grid { grid-template-columns: 1fr; }
}
