/* Hitchel.shop - Unique 2026 design: Warm Citrus Asymmetric Editorial
   Completely original layout system - never used before
   Palette: Cream peach bg, burnt orange, deep moss, charcoal
   Radius: 4px sharp modern
   Shadows: none - pure flat with borders
   Spacing: generous 1.75rem base
*/

:root {
  --bg: #FFF8F0;
  --bg-alt: #FDEBD0;
  --surface: #FFFFFF;
  --ink: #1C2526;
  --ink-soft: #3D4F50;
  --accent: #E07A3D;
  --accent-dark: #C45C26;
  --moss: #2D5A4A;
  --moss-light: #3D7A65;
  --border: #E8D5C4;
  --highlight: #FFF3E0;
  --radius: 4px;
  --space: 1.75rem;
  --max: 1180px;
  --font-head: "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Georgia", "Times New Roman", serif;
}

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

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

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

/* === UNIQUE ASYMMETRIC HEADER === */
.site-header {
  background: var(--moss);
  color: #fff;
  padding: 0;
  position: relative;
  z-index: 100;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.1rem 1.5rem;
}

.logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.logo span {
  color: var(--accent);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.nav-main {
  display: flex;
  gap: 0.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-main a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.02em;
}

.nav-main a:hover,
.nav-main a.active {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.header-cta {
  background: var(--accent);
  color: #fff !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.1rem !important;
}

.header-cta:hover {
  background: var(--accent-dark) !important;
}

/* Mobile nav toggle - pure CSS checkbox hack unique */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: #fff;
  height: 2px;
  width: 100%;
  position: absolute;
  transition: 0.25s;
}

.nav-toggle-label span {
  top: 9px;
}

.nav-toggle-label span::before {
  content: "";
  top: -8px;
}

.nav-toggle-label span::after {
  content: "";
  top: 8px;
}

/* === HERO - ASYMMETRIC SPLIT UNIQUE === */
.hero {
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 60%);
  padding: 4.5rem 1.5rem 3.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 55%;
  height: 140%;
  background: var(--moss);
  opacity: 0.04;
  transform: rotate(12deg);
  pointer-events: none;
}

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

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 4.5vw, 3.1rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 1.4rem;
}

.hero-content h1 em {
  font-style: normal;
  color: var(--accent);
  display: block;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 34ch;
  margin-bottom: 2rem;
}

.hero-meta {
  display: flex;
  gap: 1.5rem;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--moss);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-aside {
  background: var(--surface);
  border: 2px solid var(--border);
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  position: relative;
}

.hero-aside::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  z-index: -1;
}

.hero-aside h2 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--moss);
  margin-bottom: 0.9rem;
  letter-spacing: -0.01em;
}

.hero-aside p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  border-color: var(--moss);
  color: var(--moss);
}

.btn-outline:hover {
  background: var(--moss);
  color: #fff;
}

/* === MAIN LAYOUT === */
main {
  flex: 1;
  padding: 3.5rem 1.5rem 4rem;
}

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

/* Section titles - unique underline style */
.section-head {
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 0.9rem;
}

.section-head h2 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.section-head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 64px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

/* === ARTICLE GRID - ASYMMETRIC 3+2 UNIQUE === */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.75rem;
}

.article-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.6rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}

.article-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.article-card.featured {
  grid-column: span 7;
  background: var(--highlight);
  border-color: var(--accent);
}

.article-card.wide {
  grid-column: span 5;
}

.article-card.normal {
  grid-column: span 4;
}

.card-tag {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.7rem;
}

.article-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

.article-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.article-card h3 a:hover {
  color: var(--accent);
}

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

.card-meta {
  font-family: var(--font-head);
  font-size: 0.78rem;
  color: var(--moss);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === ABOUT TEASER === */
.about-strip {
  margin-top: 4.5rem;
  background: var(--moss);
  color: #fff;
  border-radius: var(--radius);
  padding: 2.75rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.about-strip h2 {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.about-strip p {
  opacity: 0.9;
  max-width: 52ch;
  font-size: 1.02rem;
}

/* === ARTICLE PAGE LAYOUT === */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
}

.article-body {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2.75rem 2.5rem;
}

.article-body h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: var(--ink);
}

.article-meta {
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--moss);
  font-weight: 600;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--border);
}

.article-body p {
  margin-bottom: 1.35rem;
  font-size: 1.05rem;
}

.article-body h2 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 2.25rem 0 1rem;
  color: var(--moss);
  letter-spacing: -0.02em;
}

.article-body ul,
.article-body ol {
  margin: 1.25rem 0 1.5rem 1.4rem;
}

.article-body li {
  margin-bottom: 0.6rem;
}

.article-body blockquote {
  border-left: 4px solid var(--accent);
  padding: 0.9rem 0 0.9rem 1.4rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--ink-soft);
  background: var(--highlight);
}

.sidebar {
  position: sticky;
  top: 1.5rem;
}

.sidebar-box {
  background: var(--bg-alt);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sidebar-box h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
  color: var(--moss);
}

.sidebar-box a {
  display: block;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}

.sidebar-box a:last-child {
  border-bottom: none;
}

.sidebar-box a:hover {
  color: var(--accent);
}

/* === CONTACT FORM UNIQUE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
}

.contact-info h1 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

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

.address-block {
  background: var(--highlight);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  margin-top: 1.5rem;
}

.address-block strong {
  font-family: var(--font-head);
  display: block;
  margin-bottom: 0.4rem;
  color: var(--moss);
}

.form-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.2s;
}

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

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* === LEGAL PAGES === */
.legal-content {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2.75rem 2.5rem;
  max-width: 820px;
  margin: 0 auto;
}

.legal-content h1 {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.legal-content .updated {
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--moss);
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2.2rem 0 0.9rem;
  color: var(--moss);
}

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

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

/* === THANK YOU === */
.thanks-box {
  text-align: center;
  max-width: 560px;
  margin: 4rem auto;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
}

.thanks-box h1 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--moss);
  margin-bottom: 1rem;
}

/* === FOOTER UNIQUE === */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.82);
  padding: 3rem 1.5rem 2rem;
  margin-top: auto;
}

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

.footer-brand {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

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

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.92rem;
  margin-bottom: 0.45rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-address {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.85;
}

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

.footer-bottom a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--accent);
}

.disclaimer {
  font-size: 0.78rem;
  opacity: 0.7;
  max-width: 60ch;
  margin-top: 0.5rem;
}

/* === RESPONSIVE === */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .article-card.featured,
  .article-card.wide,
  .article-card.normal {
    grid-column: span 12;
  }
  
  .articles-grid {
    grid-template-columns: 1fr;
  }
  
  .article-layout {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    position: static;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .about-strip {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }
  
  .nav-toggle-label {
    display: block;
  }
  
  .nav-main {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--moss);
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  
  .nav-toggle:checked ~ .nav-main {
    display: flex;
  }
  
  .header-cta {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .article-body,
  .legal-content {
    padding: 1.75rem 1.35rem;
  }
  
  .hero {
    padding: 3rem 1.25rem 2.5rem;
  }
}

/* Utility */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
