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

:root {
  --orange:      #ff6b35;
  --teal:        #0a7c6e;
  --amber:       #f59e0b;
  --bg:          #f7f3ee;
  --bg-card:     #ffffff;
  --text:        #1a1a1a;
  --text-muted:  #888;
  --text-light:  #bbb;
  --border:      #e0d8ce;
  --border-hover:#c8bdb0;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  min-height: 100vh;
}

/* Nav */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: 'Amatic SC', cursive;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--teal);
  background: #fff;
}

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

nav ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.25s;
}
nav ul a:hover { color: var(--teal); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--text);
}

/* Hero split */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  background: #ede8e0;
}

.hero-left {
  background: #ede8e0;
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-left h1 {
  font-family: 'Amatic SC', cursive;
  font-size: clamp(48px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero-left h1 em {
  font-style: italic;
  color: #0a7c6e;
}

.hero-quote {
  font-size: 16px;
  color: #666;
  line-height: 1.85;
  border-left: 2px solid #0a7c6e;
  padding-left: 1rem;
  font-style: italic;
  margin-bottom: 2.5rem;
  font-family: 'Cormorant Garamond', serif;
}

.hero-btn {
  display: inline-block;
  background: #0a7c6e;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 500;
  width: fit-content;
  transition: opacity 0.2s;
}
.hero-btn:hover { opacity: 0.85; }

.hero-right {
  background: #ddd8cf;
  position: relative;
  overflow: hidden;
}
.hero-nebula {
  width: 100%;
  height: 100%;
}
.hero-nebula svg { width: 100%; height: 100%; }

/* Posts section (homepage) */
.posts-section {
  padding: 3rem 2.5rem 1.5rem;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}

.section-title {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-title::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--teal);
}

.see-all {
  font-size: 11px;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s;
}
.see-all:hover { opacity: 0.7; }

/* Cards scroll */
.cards-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cards-scroll::-webkit-scrollbar { display: none; }
.cards-scroll.grabbing { cursor: grabbing; }

.card {
  flex: 0 0 290px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.25s, transform 0.25s;
}
.card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
}

.card-img {
  height: 168px;
  position: relative;
  overflow: hidden;
  background: #0a1614;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}
.card:hover .card-img img { opacity: 0.9; }

.card-nebula {
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 40% 50%, #0a3d38 0%, #0a1614 70%);
}

.card-cat {
  position: absolute;
  top: 10px; left: 10px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(10,22,20,0.75);
  color: #5dcaa5;
  border: 0.5px solid rgba(93,202,165,0.4);
}

.card-body { padding: 1.15rem; }

.card-date {
  font-size: 10px;
  color: var(--teal);
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.card-body p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.card-read {
  color: var(--orange);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}
.card-read:hover { color: var(--amber); }

.drag-hint {
  margin-top: 0.85rem;
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-align: center;
}

/* Featured strip */
.featured-strip {
  background: var(--teal);
  padding: 3rem 2.5rem;
  margin-top: 1rem;
}

.strip-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.strip-num {
  font-family: 'Amatic SC', cursive;
  font-size: 90px;
  color: rgba(255,255,255,0.12);
  font-weight: 700;
  line-height: 1;
  user-select: none;
}

.strip-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.6rem;
}

.strip-title {
  font-family: 'Amatic SC', cursive;
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.strip-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

.strip-link {
  display: inline-block;
  margin-top: 1.1rem;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}
.strip-link:hover { opacity: 0.75; }

/* Posts grid page */
.page-header {
  text-align: center;
  padding: 4rem 2rem 2.5rem;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-family: 'Amatic SC', cursive;
  font-size: 52px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2rem;
  padding: 3rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.post-card {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.25s, transform 0.25s;
}
.post-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
}

.post-card-img {
  height: 195px;
  position: relative;
  overflow: hidden;
  background: #0a1614;
}
.post-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card-body { padding: 1.4rem; }

.post-card-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}
.post-card-body h2 a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.25s;
}
.post-card-body h2 a:hover { color: var(--teal); }

.post-card-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Single post */
.single-post {
  max-width: 720px;
  margin: 0 auto;
  padding: 3.5rem 2rem 5rem;
}

.single-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.post-cat-tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--teal);
  color: var(--teal);
  margin-bottom: 1.25rem;
}

.single-header h1 {
  font-family: 'Amatic SC', cursive;
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.single-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-style: italic;
}

.single-meta {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.08em;
}

.single-cover {
  margin-bottom: 2.5rem;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.single-cover img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.single-content {
  font-size: 16px;
  line-height: 1.9;
  color: #333;
}

.single-content h2 {
  font-family: 'Amatic SC', cursive;
  font-size: 34px;
  font-weight: 700;
  color: var(--text);
  margin: 2.5rem 0 1rem;
  letter-spacing: 0.02em;
}

.single-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--teal);
  margin: 2rem 0 0.75rem;
}

.single-content p { margin-bottom: 1.5rem; }

.single-content a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.single-content blockquote {
  border-left: 3px solid var(--orange);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  color: #555;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  background: #fdf8f3;
  border-radius: 0 4px 4px 0;
}

.single-content img {
  width: 100%;
  border-radius: 6px;
  margin: 1.5rem 0;
  border: 1px solid var(--border);
}

.single-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.back-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  transition: color 0.25s;
}
.back-link:hover { color: var(--teal); }

/* Footer */
footer {
  text-align: center;
  padding: 2.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-title {
  font-family: 'Amatic SC', cursive;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.footer-sub {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* Mobile */
@media (max-width: 768px) {
  nav { padding: 0.9rem 1.25rem; }
  .logo span { font-size: 18px; }
  nav ul {
    display: none;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 62px; right: 0;
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 1.5rem;
    min-width: 180px;
    z-index: 200;
  }
  nav ul.open { display: flex; }
  .nav-toggle { display: block; }

  .hero-split { grid-template-columns: 1fr; }
  .hero-right { height: 260px; }
  .hero-left { padding: 2.5rem 1.5rem; }
  .hero-left h1 { font-size: 52px; }

  .posts-section, .posts-grid { padding-left: 1.25rem; padding-right: 1.25rem; }
  .posts-grid { grid-template-columns: 1fr; }

  .strip-inner { grid-template-columns: 1fr; gap: 1rem; }
  .strip-num { display: none; }

  .single-post { padding: 2rem 1.25rem 3rem; }
  .single-header h1 { font-size: 38px; }
}
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin: 2rem 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.tiktok-wrap {
  margin: 2rem auto;
  max-width: 400px;
}