/* ============================================================
   DezignerDude v4.0 — Main Stylesheet
   Playfair Display + DM Sans
   Parchment · Ochre · Maroon · Teal · Violet
   Amazon Associates: dezignerdude-21 | dezign-21
   ============================================================ */

:root {
  --bg:      #FAF6EE;
  --bg2:     #F3ECD8;
  --bg3:     #EAE0C4;
  --ink:     #1E1206;
  --ink2:    #5A3E1C;
  --ink3:    #9A7840;
  --amber:   #C87800;
  --amber2:  #E8A020;
  --amber3:  #F5CC60;
  --maroon:  #7C1818;
  --maroon2: #A02424;
  --teal:    #0A6858;
  --teal2:   #128070;
  --teal3:   #D0EEE8;
  --card:    #FFFDF5;
  --bd:      #E0CFA0;
  --bd2:     #CEC090;
  --r:       16px;
  --r2:      12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── NAV ── */
.dd-nav {
  height: 64px;
  padding: 0 clamp(20px, 5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 246, 238, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bd);
  position: sticky;
  top: 0;
  z-index: 50;
}

.dd-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.dd-logo span { color: var(--maroon); }

.dd-nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
}
.dd-nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink2);
  padding: 6px 11px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  display: block;
}
.dd-nav-links a:hover { background: var(--bg2); color: var(--ink); }
.dd-nav-links .nav-cta a,
.dd-nav-links a.nav-cta {
  background: var(--maroon) !important;
  color: #fff !important;
  border-radius: 100px;
  padding: 6px 18px;
}
.dd-nav-links .nav-cta a:hover,
.dd-nav-links a.nav-cta:hover {
  background: var(--maroon2) !important;
}

.dd-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.dd-hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  display: block;
  transition: all 0.25s;
}

/* ── TICKER ── */
.dd-ticker {
  background: var(--ink);
  border-bottom: 2px solid var(--amber);
  overflow: hidden;
  padding: 8px 0;
}
.dd-ticker-track {
  display: flex;
  width: max-content;
  animation: ddTick 30s linear infinite;
}
.dd-ticker-track:hover { animation-play-state: paused; }
.dd-ticker-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  white-space: nowrap;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.dd-ticker-item a { color: rgba(245, 204, 96, 0.8); transition: color 0.2s; }
.dd-ticker-item a:hover { color: #fff; }
.dd-ticker-item .tsep { color: var(--amber); font-size: 0.45rem; }
@keyframes ddTick { to { transform: translateX(-50%); } }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 26px;
  border-radius: 100px;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: var(--maroon);
  color: #fff;
  box-shadow: 0 4px 18px rgba(124, 24, 24, 0.24);
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--maroon2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(124, 24, 24, 0.3);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.88rem;
  color: var(--ink2);
  font-weight: 500;
  transition: color 0.2s;
  text-decoration: none;
}
.btn-ghost:hover { color: var(--maroon); }
.btn-ghost .arr { display: inline-block; transition: transform 0.2s; }
.btn-ghost:hover .arr { transform: translateX(4px); }

/* ── HERO ── */
.dd-hero {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 80px) clamp(20px, 5vw, 56px) clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}
.hero-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--amber);
  border-radius: 1px;
  flex-shrink: 0;
}
.dd-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 18px;
}
.dd-hero h1 em { font-style: italic; color: var(--maroon); }
.hero-sub {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  color: var(--ink2);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 28px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* Hero mini mosaic */
.hero-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}
.hm-card {
  border-radius: var(--r);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--bd);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.hm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30, 18, 6, 0.1);
  border-color: var(--amber);
}
.hm-card.tall { grid-row: span 2; }
.hm-thumb {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.hm-card.tall .hm-thumb { height: 190px; }
.hm-card:not(.tall) .hm-thumb { height: 110px; }
.hm-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hm-thumb svg { width: 100%; height: 100%; }
.hm-body { padding: 12px 14px 14px; flex: 1; display: flex; flex-direction: column; gap: 5px; }
.hm-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.86rem;
  line-height: 1.3;
  color: var(--ink);
  flex: 1;
}
.hm-card.tall .hm-title { font-size: 1rem; }
.hm-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.66rem;
  color: var(--ink3);
  padding-top: 8px;
  border-top: 1px solid var(--bd);
  margin-top: auto;
}

/* Tags & badges */
.dd-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(200, 120, 0, 0.1);
  border: 1px solid rgba(200, 120, 0, 0.18);
  padding: 2px 8px;
  border-radius: 100px;
}
.dd-tag.hot { color: var(--maroon); background: rgba(124, 24, 24, 0.08); border-color: rgba(124, 24, 24, 0.18); }
.dd-tag.new { color: var(--teal); background: rgba(10, 104, 88, 0.08); border-color: rgba(10, 104, 88, 0.2); }
.amz-badge {
  background: var(--maroon);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ── MOSAIC SCROLL ── */
.dd-mosaic {
  background: var(--bg2);
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
  padding: clamp(28px, 4vw, 44px) 0;
}
.mosaic-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 56px);
  margin-bottom: 18px;
}
.mosaic-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.65rem);
  color: var(--ink);
}
.mosaic-head a { font-size: 0.75rem; color: var(--maroon); font-weight: 500; transition: color 0.2s; }
.mosaic-head a:hover { color: var(--maroon2); }

.dd-mscroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px clamp(20px, 5vw, 56px) 16px;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--amber) var(--bd);
}
.dd-mscroll:active { cursor: grabbing; }
.dd-mscroll::-webkit-scrollbar { height: 3px; }
.dd-mscroll::-webkit-scrollbar-track { background: var(--bd); }
.dd-mscroll::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 2px; }

.mc {
  flex: 0 0 auto;
  scroll-snap-align: start;
  border-radius: 18px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--bd);
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  display: flex;
  flex-direction: column;
}
.mc:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 38px rgba(30, 18, 6, 0.1);
  border-color: var(--amber2);
}
.mc.sz-w { width: 300px; }
.mc.sz-m { width: 240px; }
.mc.sz-s { width: 196px; }

.mc-art {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.mc.sz-w .mc-art { height: 164px; }
.mc.sz-m .mc-art { height: 136px; }
.mc.sz-s .mc-art { height: 116px; }
.mc-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mc-art svg { width: 100%; height: 100%; }

.mc-body { padding: 13px 15px 15px; flex: 1; display: flex; flex-direction: column; gap: 5px; }
.mc-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.mc-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.88rem;
  line-height: 1.3;
  color: var(--ink);
  flex: 1;
}
.mc.sz-w .mc-title { font-size: 1rem; }
.mc-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.66rem;
  color: var(--ink3);
  padding-top: 8px;
  border-top: 1px solid var(--bd);
  margin-top: auto;
}

.mc-loadmore {
  flex: 0 0 auto;
  width: 180px;
  scroll-snap-align: start;
  border-radius: 18px;
  background: rgba(200, 120, 0, 0.07);
  border: 2px dashed var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  min-height: 200px;
  text-align: center;
}
.mc-loadmore:hover { background: rgba(200, 120, 0, 0.13); border-color: var(--amber2); }
.mc-loadmore-icon { font-size: 1.4rem; color: var(--amber); margin-bottom: 8px; }
.mc-loadmore-label {
  font-family: 'Playfair Display', serif;
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.3;
}
.mc-loading { font-size: 0.7rem; color: var(--ink3); margin-top: 6px; display: none; }

.scroll-arrows {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding: 6px clamp(20px, 5vw, 56px) 0;
}
.sarr {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--bd);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--ink);
  transition: all 0.2s;
  user-select: none;
  line-height: 1;
}
.sarr:hover { background: var(--maroon); color: #fff; border-color: var(--maroon); }

/* Art background tints */
.art-tablet  { background: #E8F0FA; }
.art-pen     { background: #FDF0E0; }
.art-palette { background: #F0EAF8; }
.art-desk    { background: #E8F5EE; }
.art-book    { background: #FFF0E8; }
.art-teal    { background: #D8F0EA; }
.art-amber   { background: #FFF4D8; }
.art-violet  { background: #F0EAFC; }

/* ── CONTENT SPLIT ── */
.dd-split {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 56px) clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(28px, 4vw, 52px);
}

.sec-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bd);
}
.sec-label h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: var(--ink);
}
.sec-label a { font-size: 0.74rem; color: var(--maroon); font-weight: 500; transition: color 0.2s; }
.sec-label a:hover { color: var(--maroon2); }

/* Trending */
.dd-tlist { display: flex; flex-direction: column; gap: 9px; }
.ti {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: var(--card);
  border: 1px solid var(--bd);
  border-radius: 13px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.ti:hover {
  border-color: var(--maroon);
  box-shadow: 0 5px 20px rgba(124, 24, 24, 0.1);
  transform: translateX(3px);
  color: inherit;
}
.ti-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  color: var(--bd2);
  line-height: 1;
  min-width: 28px;
  text-align: center;
  flex-shrink: 0;
}
.ti-art {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ti-art svg { width: 44px; height: 44px; }
.ti-info { flex: 1; min-width: 0; }
.ti-info h4 {
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ti-info p {
  font-size: 0.72rem;
  color: var(--ink3);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ti-right { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; flex-shrink: 0; }
.ti-price { font-size: 0.86rem; font-weight: 600; color: var(--maroon); white-space: nowrap; }
.ti-arr { font-size: 0.78rem; color: var(--ink3); transition: transform 0.2s, color 0.2s; }
.ti:hover .ti-arr { transform: translateX(3px); color: var(--maroon); }

/* Newsletter */
.dd-nl {
  background: var(--ink);
  border-radius: 20px;
  padding: clamp(22px, 3vw, 30px);
  border: 2px solid var(--amber);
  position: sticky;
  top: 76px;
}
.dd-nl h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--amber3);
  margin-bottom: 7px;
  line-height: 1.2;
}
.dd-nl-sub { font-size: 0.8rem; color: rgba(250, 246, 238, 0.5); margin-bottom: 16px; line-height: 1.65; }
.dd-nl-perks { list-style: none; margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.dd-nl-perks li {
  font-size: 0.76rem;
  color: rgba(250, 246, 238, 0.55);
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.dd-nl-perks li::before { content: '✦'; color: var(--amber3); flex-shrink: 0; font-size: 0.6rem; margin-top: 3px; }
.dd-nl-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(200, 120, 0, 0.3);
  border-radius: 9px;
  padding: 10px 13px;
  color: #FAF6EE;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.86rem;
  outline: none;
  margin-bottom: 9px;
  transition: border-color 0.2s;
}
.dd-nl-input::placeholder { color: rgba(250, 246, 238, 0.28); }
.dd-nl-input:focus { border-color: var(--amber3); }
.dd-nl-btn {
  width: 100%;
  background: var(--maroon);
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 11px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.dd-nl-btn:hover { background: var(--maroon2); transform: translateY(-1px); }
.dd-nl-note { font-size: 0.65rem; color: rgba(250, 246, 238, 0.22); margin-top: 9px; text-align: center; }

/* ── CATEGORIES ── */
.dd-cats {
  background: var(--bg2);
  border-top: 1px solid var(--bd);
  padding: clamp(32px, 5vw, 52px) clamp(20px, 5vw, 56px);
}
.dd-cats-inner { max-width: 1240px; margin: 0 auto; }
.cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px;
}
.cat-card {
  border-radius: 15px;
  padding: clamp(16px, 2.5vw, 22px) clamp(14px, 2vw, 18px);
  border: 1px solid var(--bd);
  background: var(--card);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.cat-card:hover {
  transform: translateY(-4px);
  border-color: var(--maroon);
  box-shadow: 0 8px 22px rgba(124, 24, 24, 0.1);
  color: inherit;
}
.cat-art {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-art svg { width: 40px; height: 40px; }
.cat-name { font-weight: 500; font-size: 0.86rem; color: var(--ink); line-height: 1.3; }
.cat-cnt { font-size: 0.7rem; color: var(--ink3); }

/* ── STATIC PAGES ── */
.page-wrap { max-width: 1000px; margin: 0 auto; padding: clamp(32px, 5vw, 52px) clamp(20px, 5vw, 56px) clamp(48px, 6vw, 72px); }
.page-hero {
  background: var(--bg2);
  border: 1px solid var(--bd);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 44px);
  margin-bottom: clamp(28px, 4vw, 44px);
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 14px;
}
.page-hero p { font-size: 1rem; color: var(--ink2); line-height: 1.8; }
.page-body { font-size: 1rem; line-height: 1.88; color: var(--ink); }
.page-body h2 { font-family: 'Playfair Display', serif; font-size: 1.55rem; color: var(--ink); margin: clamp(20px, 3vw, 32px) 0 14px; }
.page-body h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--amber); margin: 20px 0 10px; }
.page-body p { margin-bottom: 16px; }
.page-body a { color: var(--maroon); }
.page-body ul, .page-body ol { margin: 0 0 16px 24px; }
.page-body li { margin-bottom: 6px; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0; }
.info-card { background: var(--card); border: 1px solid var(--bd); border-radius: 14px; padding: 20px; }
.info-card .ic-icon { font-size: 1.4rem; margin-bottom: 8px; }
.info-card h4 { font-weight: 600; font-size: 0.92rem; color: var(--ink); margin-bottom: 6px; }
.info-card p { font-size: 0.8rem; color: var(--ink2); line-height: 1.6; margin: 0; }
.tools-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 20px 0; }
.tool-card {
  background: var(--card); border: 1px solid var(--bd); border-radius: 15px; padding: 18px;
  display: flex; gap: 14px; align-items: flex-start;
  text-decoration: none; color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.tool-card:hover { border-color: var(--maroon); box-shadow: 0 6px 22px rgba(124, 24, 24, 0.1); transform: translateY(-3px); color: inherit; }
.tool-icon { font-size: 1.6rem; width: 50px; height: 50px; background: rgba(200, 120, 0, 0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tool-info h4 { font-weight: 600; font-size: 0.9rem; color: var(--ink); margin-bottom: 4px; line-height: 1.3; }
.tool-info p { font-size: 0.78rem; color: var(--ink2); line-height: 1.5; margin-bottom: 6px; }
.tool-price { font-size: 0.8rem; font-weight: 700; color: var(--maroon); }

/* ── SINGLE POST ── */
.post-wrap { max-width: 800px; margin: 0 auto; padding: clamp(28px, 4vw, 44px) clamp(20px, 5vw, 56px) clamp(48px, 6vw, 72px); }
.post-header { margin-bottom: 28px; }
.post-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  color: var(--ink);
  margin: 14px 0 12px;
}
.post-meta { font-size: 0.8rem; color: var(--ink3); display: flex; gap: 16px; flex-wrap: wrap; }
.post-thumb { width: 100%; border-radius: 16px; margin-bottom: 28px; max-height: 440px; object-fit: cover; }
.affiliate-disclosure {
  background: rgba(200, 120, 0, 0.1);
  border-left: 3px solid var(--amber);
  border-radius: 0 10px 10px 0;
  padding: 12px 16px;
  font-size: 0.82rem;
  color: var(--ink2);
  line-height: 1.6;
  margin-bottom: 28px;
}
.post-body { font-size: 1rem; line-height: 1.88; color: var(--ink); }
.post-body h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--ink); margin: clamp(20px, 3vw, 32px) 0 14px; }
.post-body h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--amber); margin: 20px 0 10px; }
.post-body p { margin-bottom: 16px; }
.post-body a { color: var(--maroon); }
.post-body img { border-radius: 12px; margin: 20px 0; width: 100%; }
.post-nav { margin-top: 40px; padding-top: 24px; border-top: 2px solid var(--bd); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; }
.post-nav a { color: var(--maroon); font-weight: 500; }
.post-nav a:hover { color: var(--maroon2); }

/* Amazon product card (inside posts) */
.amazon-product-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 2px solid var(--bd);
  border-radius: 16px;
  padding: 18px;
  margin: 24px 0;
  background: var(--card);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.amazon-product-card:hover { border-color: var(--maroon); box-shadow: 0 8px 28px rgba(124, 24, 24, 0.12); transform: translateY(-2px); color: inherit; }
.apc-icon { width: 68px; height: 68px; border-radius: 12px; background: rgba(200, 120, 0, 0.1); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; flex-shrink: 0; }
.apc-body { flex: 1; }
.apc-body h4 { font-weight: 600; font-size: 0.95rem; color: var(--ink); margin-bottom: 5px; line-height: 1.3; }
.apc-body p { font-size: 0.82rem; color: var(--ink2); line-height: 1.55; margin-bottom: 10px; }
.apc-cta { display: inline-flex; align-items: center; gap: 5px; font-size: 0.82rem; font-weight: 700; color: var(--maroon); background: rgba(124, 24, 24, 0.08); padding: 6px 14px; border-radius: 100px; }

/* ── ARCHIVE ── */
.archive-wrap { max-width: 1240px; margin: 0 auto; padding: clamp(32px, 5vw, 52px) clamp(20px, 5vw, 56px); }
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.post-card {
  background: var(--card); border: 1px solid var(--bd); border-radius: 16px; overflow: hidden;
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(30, 18, 6, 0.1); border-color: var(--amber); color: inherit; }
.card-thumb { width: 100%; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.card-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.card-thumb svg { width: 100%; height: 100%; }
.card-body { padding: 15px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.card-title { font-family: 'Playfair Display', serif; font-size: 1rem; line-height: 1.35; color: var(--ink); flex: 1; }
.card-meta { font-size: 0.72rem; color: var(--ink3); display: flex; justify-content: space-between; align-items: center; padding-top: 10px; border-top: 1px solid var(--bd); margin-top: auto; }
.dd-pagination { margin-top: 40px; text-align: center; }
.dd-pagination a, .dd-pagination span { display: inline-block; padding: 6px 14px; border-radius: 8px; text-decoration: none; color: var(--ink2); border: 1px solid var(--bd); margin: 2px; transition: all 0.2s; font-size: 0.84rem; }
.dd-pagination a:hover { background: var(--maroon); color: #fff; border-color: var(--maroon); }
.dd-pagination .current { background: var(--maroon); color: #fff; border-color: var(--maroon); }

/* ── FOOTER ── */
.dd-footer {
  background: var(--ink);
  border-top: 3px solid var(--amber);
  padding: clamp(36px, 5vw, 56px) clamp(20px, 5vw, 56px) clamp(20px, 3vw, 28px);
}
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 40px);
  margin-bottom: clamp(24px, 4vw, 36px);
  padding-bottom: clamp(20px, 3vw, 32px);
  border-bottom: 1px solid rgba(200, 120, 0, 0.18);
}
.f-logo { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: #FAF6EE; text-decoration: none; }
.f-logo span { color: var(--amber3); }
.f-desc { font-size: 0.76rem; color: rgba(250, 246, 238, 0.38); max-width: 230px; margin-top: 9px; line-height: 1.7; }
.f-col h4 { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); margin-bottom: 12px; }
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.f-col a { font-size: 0.78rem; color: rgba(250, 246, 238, 0.38); text-decoration: none; transition: color 0.2s; }
.f-col a:hover { color: #FAF6EE; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 9px; font-size: 0.67rem; color: rgba(250, 246, 238, 0.26); }
.f-notice { max-width: 560px; line-height: 1.65; }

/* ── RESPONSIVE ── */
@media (max-width: 1040px) {
  .dd-split { grid-template-columns: 1fr; }
  .dd-nl { position: static; }
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .dd-hero { grid-template-columns: 1fr; }
  .hero-mosaic { display: none; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .dd-nav-links { display: none; }
  .dd-nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(250, 246, 238, 0.98);
    padding: 14px clamp(20px, 5vw, 56px);
    gap: 4px;
    border-bottom: 2px solid var(--amber);
    z-index: 48;
  }
  .dd-nav-links.open a { font-size: 0.9rem; padding: 9px 10px; display: block; }
  .dd-hamburger { display: flex; }
  .dd-nav { position: relative; }
  .posts-grid { grid-template-columns: 1fr; }
  .mc.sz-w { width: 270px; }
  .mc.sz-m { width: 216px; }
  .mc.sz-s { width: 180px; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { flex-direction: column; }
  .amazon-product-card { flex-direction: column; }
  .info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 400px) {
  .cats-grid { grid-template-columns: 1fr 1fr; }
}

/* ── ANIMATIONS ── */
@keyframes ddFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.dd-hero > * { animation: ddFadeUp 0.5s ease both; }
.dd-hero > *:nth-child(2) { animation-delay: 0.1s; }
