/* Owanava.shop – unique 2026: warm clay + charcoal + soft sage */
:root {
  --bg: #F7F3EE;
  --bg-alt: #EFE9E0;
  --surface: #FFFFFF;
  --text: #2C2A28;
  --text-soft: #5E5954;
  --primary: #2C2A28;
  --primary-hover: #1A1917;
  --accent: #C17B5C;
  --accent-soft: #E0B59A;
  --sage: #8A9A7E;
  --muted: #9A948C;
  --border: #E0D8CE;
  --radius: 4px;
  --radius-lg: 16px;
  --shadow: 0 10px 30px rgba(44, 42, 40, 0.07);
  --max: 1100px;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17.5px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.78;
  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: 600;
  line-height: 1.22;
  color: var(--primary);
}
h1 { font-size: clamp(2.3rem, 5.2vw, 3.3rem); margin-bottom: 1.3rem; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.65rem, 3.4vw, 2.15rem); margin: 2.5rem 0 1.1rem; }
h3 { font-size: 1.28rem; margin: 1.8rem 0 0.7rem; }
p { margin-bottom: 1.25rem; }
ul, ol { margin: 0 0 1.4rem 1.5rem; }
li { margin-bottom: 0.5rem; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 1.6rem; }
.section { padding: 4.2rem 0; }
.section-alt { background: var(--bg-alt); }

/* HEADER – different: thick bottom border, logo left, nav right with different hover */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 243, 238, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--primary);
  padding: 1.1rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.logo span { color: var(--accent); }
.nav { display: flex; gap: 1.7rem; align-items: center; }
.nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.nav a:hover { color: var(--accent); }
.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}
.nav-cta:hover { background: var(--accent); color: #fff !important; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 30px; height: 22px; position: relative;
}
.nav-toggle span {
  display: block; width: 100%; height: 2.5px; 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-aligned with right accent block */
.hero {
  padding: 5rem 0 4.5rem;
  background: var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.3rem;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.3rem;
}
.hero-lead {
  font-size: 1.18rem;
  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.7rem; border-radius: var(--radius);
  font-weight: 600; font-size: 0.92rem; border: none; cursor: pointer; transition: all .2s;
  text-transform: uppercase; letter-spacing: 0.03em; font-size: 0.8rem;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--accent); color: #fff; }
.btn-outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.hero-visual {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 3rem 2.4rem;
  color: #fff;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.hero-visual::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.3;
}
.hero-visual-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}
.hero-visual p { opacity: 0.85; font-size: 0.95rem; position: relative; z-index: 1; }

/* CARDS – top accent line, different shape */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.8rem;
}
.card {
  background: var(--surface);
  border-top: 3px solid var(--accent);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 2rem 1.8rem;
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 8px rgba(44,42,40,0.04);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-tag {
  font-size: 0.68rem; font-weight: 700; 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.4rem; font-weight: 700; font-size: 0.85rem; color: var(--primary); text-transform: uppercase; letter-spacing: 0.03em; }
.card-link:hover { color: var(--accent); }

/* ARTICLE */
.article-hero {
  padding: 3.8rem 0 2.4rem;
  border-bottom: 2px solid var(--border);
  margin-bottom: 3rem;
}
.article-meta {
  display: flex; flex-wrap: wrap; gap: 1.2rem;
  font-size: 0.82rem; color: var(--text-soft); margin-bottom: 1.2rem;
  text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600;
}
.article-body { max-width: 680px; margin: 0 auto; }
.article-body h2 { margin-top: 3rem; }
.pull-quote {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.35;
  color: var(--primary);
  text-align: center;
  margin: 3.2rem auto;
  max-width: 28ch;
  font-style: italic;
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  padding: 1.5rem 0;
}

/* ABOUT – stacked with side accent */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
  align-items: start;
}
.about-side {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.8rem 2.3rem;
  position: sticky;
  top: 100px;
}
.about-side h2 { color: #fff; margin-top: 0; font-size: 1.6rem; }
.about-side p { opacity: 0.9; }
.about-list { list-style: none; margin: 1.8rem 0 0; padding: 0; }
.about-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  font-size: 0.95rem;
}

/* CONTACT – different: form first full width-ish, info in horizontal cards below or side */
.contact-wrap { max-width: 820px; margin: 0 auto; }
.contact-form-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.contact-info-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
}
.contact-info-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.35rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.45rem; font-size: 0.9rem; }
.form-group input, .form-group textarea {
  width: 100%; padding: 0.9rem 1.15rem;
  border: 2px 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: 160px; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--text-soft); margin-top: 1rem; }

/* THANKS */
.thanks-box {
  text-align: center; max-width: 480px; margin: 5.5rem auto;
  background: var(--surface); border: 2px solid var(--primary);
  border-radius: var(--radius-lg); padding: 3.5rem 2.5rem;
}
.thanks-box h1 { font-size: 2.3rem; }

/* FOOTER – different structure: brand top full, then 3 cols, bottom bar */
.site-footer {
  margin-top: auto;
  background: var(--primary);
  color: rgba(255,255,255,0.9);
  padding: 3.8rem 0 0;
}
.footer-top {
  text-align: center;
  margin-bottom: 2.8rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.8rem; color: #fff; margin-bottom: 0.6rem;
}
.footer-brand span { color: var(--accent-soft); }
.footer-tagline { font-size: 0.95rem; opacity: 0.75; max-width: 40ch; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-address { font-size: 0.92rem; line-height: 1.7; opacity: 0.85; }
.footer-col h4 {
  color: #fff; font-size: 0.78rem; margin-bottom: 1.1rem;
  font-family: var(--font-body); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: rgba(255,255,255,0.75); font-size: 0.92rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 1.4rem 0;
  font-size: 0.8rem; opacity: 0.75;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer-legal a { color: rgba(255,255,255,0.75); }
.disclaimer { font-size: 0.78rem; opacity: 0.65; max-width: 600px; 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-info-row { 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: 3px solid var(--primary);
    flex-direction: column; padding: 1.4rem 1.6rem 1.8rem; gap: 1rem;
  }
  .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; }
}
