/* ============================================
   KLICK THINK LLC — Site Styles
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: 'Comfortaa', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #5E5E5E;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #E46931;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #c4551f;
}

/* --- Container --- */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3 {
  color: #333333;
  font-weight: 400;
  line-height: 1.3;
}

.section-title {
  font-family: 'Kaushan Script', cursive;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1.25rem;
  color: #0C2117;
}

.section-title.left {
  text-align: left;
}

.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  line-height: 1.7;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(12, 33, 23, 0.97);
  backdrop-filter: blur(8px);
  transition: background 0.3s ease;
}

.nav-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo-img {
  height: 28px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: #F5EFDF;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #E46931;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #F5EFDF;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* --- Sections --- */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: #F5EFDF;
}

/* --- Hero --- */
.hero {
  background: #0C2117;
  padding: 10rem 0 6rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-content {
  text-align: center;
}

.hero-headline {
  font-family: 'Kaushan Script', cursive;
  font-size: 3.25rem;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: #ABC4AB;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: 'Comfortaa', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-primary {
  background: #E46931;
  color: #FFFFFF;
}

.btn-primary:hover {
  background: #c4551f;
  color: #FFFFFF;
}

.btn-secondary {
  background: transparent;
  color: #E46931;
  border: 2px solid #E46931;
}

.btn-secondary:hover {
  background: #E46931;
  color: #FFFFFF;
}

/* --- Cards --- */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.card {
  background: #FFFFFF;
  border: 1px solid #e8e4de;
  border-radius: 8px;
  padding: 2rem 1.75rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.card-title {
  font-family: 'Kaushan Script', cursive;
  font-size: 1.25rem;
  color: #0C2117;
  margin-bottom: 0.5rem;
}

.card-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Highlight --- */
.highlight {
  font-size: 1.05rem;
  color: #0C2117;
  font-weight: 700;
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-left: 4px solid #E46931;
  background: rgba(228, 105, 49, 0.04);
  border-radius: 0 6px 6px 0;
}

/* --- Steps --- */
.steps {
  max-width: 640px;
  margin: 2.5rem auto 0;
}

.step {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #E46931;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.step-content h3 {
  font-family: 'Kaushan Script', cursive;
  font-size: 1.15rem;
  color: #0C2117;
  margin-bottom: 0.25rem;
}

.step-content p {
  font-size: 0.95rem;
}

.steps-summary {
  text-align: center;
  font-weight: 700;
  color: #0C2117;
  margin-top: 2rem;
  font-size: 1.05rem;
}

/* --- Checklist --- */
.checklist {
  list-style: none;
  max-width: 640px;
  margin: 0 auto;
}

.checklist li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  font-size: 1rem;
  border-bottom: 1px solid #e0dcd5;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #E46931;
  font-weight: 700;
  font-size: 1.1rem;
}

.checklist li:last-child {
  border-bottom: none;
}

.cta-mid {
  text-align: center;
  margin-top: 2.5rem;
}

/* --- About --- */
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

.photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: #0C2117;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-placeholder span {
  font-family: 'Kaushan Script', cursive;
  font-size: 3rem;
  color: #F5EFDF;
}

.about-text p {
  margin-bottom: 1rem;
}

.about-location {
  font-size: 0.9rem;
  color: #ABC4AB;
  font-weight: 700;
  margin-top: 1.5rem;
}

/* --- Insights Teaser --- */
.insights-links {
  text-align: center;
  margin: 1.5rem 0 1rem;
}

.insights-soon {
  font-size: 0.95rem;
  color: #999;
  font-style: italic;
}

.insights-more {
  display: block;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
}

/* --- Contact --- */
.contact-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid #E46931;
  border-radius: 6px;
  color: #E46931;
  transition: all 0.2s ease;
}

.contact-link:hover {
  background: #E46931;
  color: #FFFFFF;
}

/* --- Footer --- */
.footer {
  background: #0C2117;
  padding: 2rem 0;
  text-align: center;
}

.footer p {
  color: #ABC4AB;
  font-size: 0.8rem;
}

/* --- Insights Page --- */
.hero-short {
  padding: 7rem 0 3rem;
  min-height: auto;
}

.hero-short .hero-headline {
  font-size: 2.5rem;
}

.insights-page {
  max-width: 640px;
}

.insights-soon-page {
  text-align: center;
  color: #999;
  font-style: italic;
  padding: 3rem 0;
}

.insight-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #e8e4de;
}

.insight-item:last-child {
  border-bottom: none;
}

.insight-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #E46931;
  margin-bottom: 0.25rem;
}

.insight-title {
  font-family: 'Kaushan Script', cursive;
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.insight-title a {
  color: #0C2117;
}

.insight-title a:hover {
  color: #E46931;
}

.insight-excerpt {
  font-size: 0.95rem;
  color: #888;
}

/* --- Article Template --- */
.article-page {
  max-width: 660px;
}

.article-meta {
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.article-meta span {
  margin-right: 1rem;
}

.article-body h2 {
  font-family: 'Kaushan Script', cursive;
  font-size: 1.5rem;
  color: #0C2117;
  margin: 2.5rem 0 1rem;
}

.article-body h3 {
  font-family: 'Kaushan Script', cursive;
  font-size: 1.2rem;
  color: #0C2117;
  margin: 2rem 0 0.75rem;
}

.article-body p {
  margin-bottom: 1.25rem;
}

.article-body blockquote {
  border-left: 4px solid #E46931;
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #333;
  background: rgba(228, 105, 49, 0.04);
  border-radius: 0 6px 6px 0;
}

.article-tags {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e8e4de;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.article-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ABC4AB;
  background: #0C2117;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
}

.article-nav {
  margin-top: 2rem;
}

.article-nav a {
  font-weight: 700;
  font-size: 0.9rem;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 768px) {
  .hero {
    padding: 8rem 0 4rem;
    min-height: auto;
  }

  .hero-headline {
    font-size: 2.25rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-photo {
    max-width: 220px;
    margin: 0 auto;
  }

  .section-title.left {
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .contact-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .contact-link {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* Mobile nav */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(12, 33, 23, 0.98);
    flex-direction: column;
    padding: 1.5rem 24px;
    gap: 1rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 1.85rem;
  }

  .container {
    padding: 0 16px;
  }

  .step {
    gap: 1rem;
  }

  .step-number {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
}
