:root {
  --diy-ink: #2b2521;
  --diy-ink-2: #443a33;
  --diy-copy: #5d5149;
  --diy-muted: #81736a;
  --diy-amber: #c96b2c;
  --diy-amber-dark: #a84f1f;
  --diy-honey: #e6a15f;
  --diy-wax: #fff9f1;
  --diy-cream: #f8efe4;
  --diy-sand: #f0e2d2;
  --diy-line: #ded1c3;
  --diy-sage: #758174;
  --diy-white: #ffffff;
  --diy-shadow-sm: 0 10px 30px rgba(55, 38, 26, .07);
  --diy-shadow: 0 24px 65px rgba(55, 38, 26, .12);
  --diy-radius-sm: 12px;
  --diy-radius: 20px;
  --diy-radius-lg: 30px;
  --theme-palette-color-1: var(--diy-amber);
  --theme-palette-color-2: var(--diy-amber-dark);
  --theme-palette-color-3: var(--diy-copy);
  --theme-palette-color-4: var(--diy-ink);
  --theme-palette-color-5: var(--diy-line);
  --theme-palette-color-6: var(--diy-cream);
  --theme-palette-color-7: #fff;
  --theme-palette-color-8: var(--diy-wax);
}

html { scroll-behavior: smooth; }
body.diy101-studio-active {
  color: var(--diy-copy);
  background: #fbf7f2;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.diy101-studio-active #header,
body.diy101-studio-active #footer,
body.diy101-studio-active .ct-header,
body.diy101-studio-active .ct-footer { display: none !important; }
body.diy101-studio-active a { text-underline-offset: 3px; }
body.diy101-studio-active ::selection { color: #fff; background: var(--diy-amber); }
body.diy101-studio-active :focus-visible {
  outline: 3px solid rgba(201, 107, 44, .42) !important;
  outline-offset: 3px;
}
.diy101-shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.diy101-section { padding: 100px 0; }
.diy101-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--diy-amber-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  line-height: 1.3;
  text-transform: uppercase;
}
.diy101-eyebrow:before { content: ""; width: 30px; height: 2px; border-radius: 99px; background: currentColor; }
.diy101-section-heading { max-width: 760px; margin-bottom: 44px; }
.diy101-section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: end;
  gap: 80px;
  max-width: none;
}
.diy101-section-heading h2,
.diy101-tools h2,
.diy101-method h2,
.diy101-about-strip h2,
.diy101-about h2 {
  margin: 0;
  color: var(--diy-ink);
  font-size: clamp(32px, 4.1vw, 54px);
  line-height: 1.06;
  letter-spacing: -.045em;
}
.diy101-section-heading p,
.diy101-tools p,
.diy101-method p,
.diy101-about-strip p {
  margin: 18px 0 0;
  color: var(--diy-copy);
  font-size: 18px;
  line-height: 1.7;
}
.diy101-section-heading--split > p { margin: 0 0 4px; }

/* Header */
.diy101-header {
  position: sticky;
  top: 0;
  z-index: 9990;
  border-bottom: 1px solid rgba(222, 209, 195, .86);
  background: rgba(255, 253, 249, .93);
  box-shadow: 0 8px 34px rgba(55, 38, 26, .045);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.admin-bar .diy101-header { top: 32px; }
.diy101-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  min-height: 82px;
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}
.diy101-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--diy-ink);
  text-decoration: none;
  white-space: nowrap;
}
.diy101-brand img { flex: 0 0 auto; border-radius: 14px; box-shadow: 0 8px 20px rgba(43, 37, 33, .11); }
.diy101-brand__text { display: grid; gap: 2px; }
.diy101-brand__text strong { color: var(--diy-ink); font-size: 18px; line-height: 1.1; letter-spacing: -.025em; }
.diy101-brand__text small { color: var(--diy-muted); font-size: 11px; font-weight: 700; letter-spacing: .045em; text-transform: uppercase; }
.diy101-nav { justify-self: end; }
.diy101-menu,
.diy101-menu ul { margin: 0; padding: 0; list-style: none; }
.diy101-menu { display: flex; align-items: center; gap: 3px; }
.diy101-menu > li { position: relative; }
.diy101-menu a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 13px;
  border-radius: 11px;
  color: var(--diy-ink-2);
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.diy101-menu > li > a:hover,
.diy101-menu > .current-menu-item > a,
.diy101-menu > .current-menu-parent > a { color: var(--diy-amber-dark); background: #fff0e4; }
.diy101-menu .menu-item-has-children > a:after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.diy101-menu .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  min-width: 220px;
  padding: 9px;
  border: 1px solid var(--diy-line);
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--diy-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}
.diy101-menu li:hover > .sub-menu,
.diy101-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.diy101-menu .sub-menu a { min-height: 42px; }
.diy101-search-toggle,
.diy101-nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 13px;
  color: #fff;
  background: var(--diy-ink);
  box-shadow: 0 10px 24px rgba(43, 37, 33, .18);
  cursor: pointer;
}
.diy101-search-toggle:hover { background: var(--diy-amber-dark); }
.diy101-search-toggle svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.diy101-nav-toggle { display: none; background: transparent; box-shadow: none; }
.diy101-nav-toggle span:not(.screen-reader-text) { display: block; width: 22px; height: 2px; margin: 3px 0; border-radius: 99px; background: var(--diy-ink); }
.diy101-search-panel {
  position: absolute;
  inset: 100% 0 auto;
  padding: 25px 20px 28px;
  border-top: 1px solid var(--diy-line);
  border-bottom: 1px solid var(--diy-line);
  background: #fffdf9;
  box-shadow: 0 24px 50px rgba(43, 37, 33, .13);
}
.diy101-search-panel form { width: min(760px, 100%); margin-inline: auto; }
.diy101-search-panel label { display: block; margin-bottom: 9px; color: var(--diy-ink); font-size: 13px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.diy101-search-panel__form { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.diy101-search-panel input {
  width: 100%;
  height: 54px;
  padding: 0 18px;
  border: 1px solid var(--diy-line) !important;
  border-radius: 14px !important;
  background: #fff !important;
  color: var(--diy-ink);
  font-size: 17px;
}
.diy101-search-panel button,
.diy101-button,
body.diy101-studio-active input[type="submit"],
body.diy101-studio-active .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent !important;
  border-radius: 13px !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--diy-amber), var(--diy-amber-dark)) !important;
  box-shadow: 0 12px 26px rgba(201, 107, 44, .24);
  font-size: 15px;
  font-weight: 820;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.diy101-search-panel button:hover,
.diy101-button:hover,
body.diy101-studio-active input[type="submit"]:hover,
body.diy101-studio-active .wp-block-button__link:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(201, 107, 44, .30); filter: saturate(1.05); }
.diy101-reading-progress { position: fixed; top: 0; left: 0; z-index: 9999; width: 100%; height: 3px; pointer-events: none; }
.admin-bar .diy101-reading-progress { top: 32px; }
.diy101-reading-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--diy-amber), var(--diy-honey)); box-shadow: 0 0 12px rgba(201, 107, 44, .65); }

/* Theme wrapper cleanup */
body.diy101-home-page .hero-section,
body.diy101-home-page .entry-header,
body.diy101-about-page .hero-section,
body.diy101-about-page .entry-header { display: none !important; }
body.diy101-home-page .site-main,
body.diy101-about-page .site-main { padding: 0 !important; background: transparent; }
body.diy101-home-page .site-main > .ct-container,
body.diy101-about-page .site-main > .ct-container,
body.diy101-home-page .content-area,
body.diy101-about-page .content-area,
body.diy101-home-page article,
body.diy101-about-page article,
body.diy101-home-page .entry-content,
body.diy101-about-page .entry-content {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Home hero */
.diy101-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 86px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 16%, rgba(230, 161, 95, .18), transparent 25%),
    radial-gradient(circle at 8% 104%, rgba(201, 107, 44, .18), transparent 26%),
    linear-gradient(118deg, #211c19 0%, #34271f 56%, #513323 100%);
}
.diy101-hero:after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -220px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(255,255,255,.025), 0 0 0 145px rgba(255,255,255,.018);
}
.diy101-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr); align-items: center; gap: 72px; }
.diy101-hero .diy101-eyebrow { color: #efb67d; }
.diy101-hero__copy h1 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: clamp(52px, 6.2vw, 82px);
  line-height: .98;
  letter-spacing: -.058em;
}
.diy101-hero__copy > p { max-width: 700px; margin: 26px 0 0; color: #eadfd6; font-size: clamp(18px, 2vw, 21px); line-height: 1.68; }
.diy101-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.diy101-button--ghost { color: #fff !important; border-color: rgba(255,255,255,.32) !important; background: rgba(255,255,255,.07) !important; box-shadow: none; backdrop-filter: blur(8px); }
.diy101-button--ghost:hover { background: rgba(255,255,255,.13) !important; box-shadow: none; }
.diy101-hero__proof { display: flex; flex-wrap: wrap; gap: 18px 24px; margin-top: 35px; color: #d7c9be; font-size: 13px; font-weight: 760; }
.diy101-hero__proof span { display: inline-flex; align-items: center; gap: 8px; }
.diy101-hero__proof svg { width: 18px; height: 18px; fill: none; stroke: #efb67d; stroke-width: 1.8; }
.diy101-hero__visual img { display: block; width: 100%; height: auto; filter: drop-shadow(0 38px 60px rgba(0,0,0,.25)); }

/* Start path */
.diy101-start { background: #fffdf9; }
.diy101-path-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.diy101-path-card {
  position: relative;
  min-height: 350px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid var(--diy-line);
  border-radius: var(--diy-radius);
  color: var(--diy-copy);
  background: #fff;
  box-shadow: var(--diy-shadow-sm);
  text-decoration: none;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.diy101-path-card:after {
  content: "";
  position: absolute;
  right: -65px;
  bottom: -65px;
  width: 155px;
  height: 155px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,107,44,.12), transparent 68%);
}
.diy101-path-card:hover { transform: translateY(-7px); border-color: #d7ae8f; box-shadow: var(--diy-shadow); }
.diy101-path-card__number { color: var(--diy-amber-dark); font-size: 12px; font-weight: 850; letter-spacing: .08em; }
.diy101-path-card__icon { display: grid; place-items: center; width: 58px; height: 58px; margin-top: 35px; border-radius: 16px; color: var(--diy-amber-dark); background: #fff1e5; }
.diy101-path-card__icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.65; }
.diy101-path-card h3 { margin: 25px 0 10px; color: var(--diy-ink); font-size: 24px; line-height: 1.16; letter-spacing: -.03em; }
.diy101-path-card p { margin: 0 0 24px; color: var(--diy-copy); font-size: 15px; line-height: 1.65; }
.diy101-text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--diy-amber-dark); font-size: 14px; font-weight: 820; text-decoration: none; }
.diy101-text-link svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .2s ease; }
a:hover > .diy101-text-link svg,
.diy101-text-link:hover svg { transform: translateX(4px); }

/* Topic lab */
.diy101-lab { background: linear-gradient(180deg, #f7eee3 0%, #fbf7f2 100%); }
.diy101-topic-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 15px; }
.diy101-topic-card {
  position: relative;
  min-height: 245px;
  padding: 25px 24px;
  border: 1px solid rgba(222,209,195,.9);
  border-radius: 18px;
  color: var(--diy-copy);
  background: rgba(255,255,255,.82);
  text-decoration: none;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.diy101-topic-card:hover { transform: translateY(-4px); border-color: #d6a47e; background: #fff; }
.diy101-topic-card__icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; color: var(--diy-amber-dark); background: #fff0e3; }
.diy101-topic-card__icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.65; }
.diy101-topic-card h3 { margin: 34px 0 9px; color: var(--diy-ink); font-size: 22px; line-height: 1.15; }
.diy101-topic-card p { margin: 0; color: var(--diy-copy); font-size: 14px; line-height: 1.62; }
.diy101-topic-card > span:last-child { position: absolute; right: 20px; bottom: 20px; color: var(--diy-amber-dark); }
.diy101-topic-card > span:last-child svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; }

/* Tools */
.diy101-tools { color: #fff; background: linear-gradient(120deg, #2b2521 0%, #443126 100%); }
.diy101-tools__grid { display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: 80px; }
.diy101-tools .diy101-eyebrow { color: #efb67d; }
.diy101-tools h2 { color: #fff; }
.diy101-tools p { color: #e1d3c9; }
.diy101-tools .diy101-text-link { margin-top: 24px; color: #f2b87e; }
.diy101-tool-list { display: grid; gap: 12px; }
.diy101-tool-card {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 17px;
  min-height: 100px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 17px;
  color: #fff;
  background: rgba(255,255,255,.065);
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.diy101-tool-card:hover { transform: translateX(6px); border-color: rgba(239,182,125,.58); background: rgba(255,255,255,.10); }
.diy101-tool-card__icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 15px; color: #efb67d; background: rgba(239,182,125,.11); }
.diy101-tool-card svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.diy101-tool-card strong { display: block; color: #fff; font-size: 18px; line-height: 1.2; }
.diy101-tool-card small { display: block; margin-top: 5px; color: #d7c9bf; font-size: 13px; line-height: 1.45; }
.diy101-tool-card > b { color: #efb67d; }

/* Latest posts */
.diy101-latest { background: #fffdf9; }
.diy101-post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 23px; }
.diy101-post-card { overflow: hidden; border: 1px solid var(--diy-line); border-radius: var(--diy-radius); background: #fff; box-shadow: var(--diy-shadow-sm); transition: transform .22s ease, box-shadow .22s ease; }
.diy101-post-card:hover { transform: translateY(-5px); box-shadow: var(--diy-shadow); }
.diy101-post-card__image { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--diy-cream); }
.diy101-post-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.diy101-post-card:hover .diy101-post-card__image img { transform: scale(1.035); }
.diy101-post-card__placeholder { display: grid; place-items: center; width: 100%; height: 100%; color: var(--diy-amber-dark); background: linear-gradient(135deg, #f9e9d8, #fff7ee); }
.diy101-post-card__placeholder svg { width: 54px; height: 54px; fill: none; stroke: currentColor; stroke-width: 1.35; }
.diy101-post-card__body { padding: 23px; }
.diy101-post-card__body > span { color: var(--diy-muted); font-size: 11px; font-weight: 820; letter-spacing: .08em; text-transform: uppercase; }
.diy101-post-card h3 { margin: 10px 0 11px; font-size: 22px; line-height: 1.2; letter-spacing: -.03em; }
.diy101-post-card h3 a { color: var(--diy-ink); text-decoration: none; }
.diy101-post-card h3 a:hover { color: var(--diy-amber-dark); }
.diy101-post-card p { margin: 0 0 18px; color: var(--diy-copy); font-size: 14px; line-height: 1.65; }

/* Method */
.diy101-method { background: var(--diy-cream); }
.diy101-method__grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 90px; }
.diy101-method__steps { margin: 0; padding: 0; counter-reset: method; list-style: none; }
.diy101-method__steps li { position: relative; display: grid; grid-template-columns: 46px 1fr; gap: 2px 16px; padding: 20px 0; border-bottom: 1px solid var(--diy-line); }
.diy101-method__steps li:before { counter-increment: method; content: counter(method); grid-row: 1 / 3; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; color: #fff; background: var(--diy-ink); font-size: 13px; font-weight: 850; }
.diy101-method__steps strong { color: var(--diy-ink); font-size: 18px; }
.diy101-method__steps span { color: var(--diy-copy); font-size: 14px; }

/* Other categories */
.diy101-more { background: #fffdf9; }
.diy101-more__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.diy101-more-card { display: grid; grid-template-columns: 56px 1fr auto; align-items: center; gap: 18px; min-height: 150px; padding: 24px; border: 1px solid var(--diy-line); border-radius: var(--diy-radius); color: var(--diy-copy); background: #fff; text-decoration: none; box-shadow: var(--diy-shadow-sm); }
.diy101-more-card > span { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; color: var(--diy-amber-dark); background: #fff0e3; }
.diy101-more-card svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.65; }
.diy101-more-card h3 { margin: 0 0 6px; color: var(--diy-ink); font-size: 20px; }
.diy101-more-card p { margin: 0; color: var(--diy-copy); font-size: 13px; line-height: 1.55; }
.diy101-more-card > b { color: var(--diy-amber-dark); transition: transform .2s ease; }
.diy101-more-card:hover > b { transform: translateX(5px); }

/* About strip */
.diy101-about-strip { padding: 85px 0; color: #fff; background: linear-gradient(110deg, #a84f1f, #c96b2c 50%, #da884c); }
.diy101-about-strip__grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 90px; }
.diy101-about-strip .diy101-eyebrow { color: #fff2e6; }
.diy101-about-strip h2 { color: #fff; }
.diy101-about-strip p { color: #fff0e4; }
.diy101-button--light { margin-top: 22px; color: var(--diy-ink) !important; background: #fff !important; box-shadow: 0 12px 28px rgba(68,36,18,.18); }

/* About page */
.diy101-about-hero { padding: 100px 0 92px; color: #fff; background: linear-gradient(118deg, #211c19, #523323); }
.diy101-about-hero__grid { display: grid; grid-template-columns: 1fr 320px; align-items: center; gap: 90px; }
.diy101-about-hero .diy101-eyebrow { color: #efb67d; }
.diy101-about-hero h1 { max-width: 850px; margin: 0; color: #fff; font-size: clamp(48px, 6vw, 76px); line-height: 1; letter-spacing: -.055em; }
.diy101-about-hero p { max-width: 800px; margin: 26px 0 0; color: #eadfd6; font-size: 20px; line-height: 1.7; }
.diy101-about-hero__mark { display: grid; place-items: center; }
.diy101-about-hero__mark img { width: 230px; filter: drop-shadow(0 30px 44px rgba(0,0,0,.28)); }
.diy101-about-grid { display: grid; grid-template-columns: 1fr .88fr; gap: 90px; }
.diy101-about-copy p { font-size: 18px; line-height: 1.78; }
.diy101-about-values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.diy101-about-values > div { padding: 24px; border: 1px solid var(--diy-line); border-radius: 17px; background: #fff; box-shadow: var(--diy-shadow-sm); }
.diy101-about-values strong { display: block; margin-bottom: 8px; color: var(--diy-ink); font-size: 18px; }
.diy101-about-values span { color: var(--diy-copy); font-size: 14px; line-height: 1.55; }
.diy101-about-process { background: var(--diy-cream); }
.diy101-process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.diy101-process-grid > div { padding: 26px; border: 1px solid var(--diy-line); border-radius: 18px; background: #fff; }
.diy101-process-grid b { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; color: #fff; background: var(--diy-amber); font-size: 13px; }
.diy101-process-grid h3 { margin: 35px 0 10px; color: var(--diy-ink); font-size: 21px; line-height: 1.18; }
.diy101-process-grid p { margin: 0; font-size: 14px; line-height: 1.65; }
.diy101-publisher { background: #fffdf9; }
.diy101-publisher__grid { display: grid; grid-template-columns: 330px 1fr; align-items: center; gap: 80px; max-width: 980px; }
.diy101-publisher__photo { overflow: hidden; border: 10px solid #fff; border-radius: 28px; box-shadow: var(--diy-shadow); }
.diy101-publisher__photo img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; }
.diy101-publisher p { font-size: 17px; line-height: 1.78; }
.diy101-scope { background: #2b2521; color: #e9ddd4; }
.diy101-scope h2 { color: #fff; }
.diy101-scope .diy101-eyebrow { color: #efb67d; }
.diy101-scope__grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.diy101-scope__cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.diy101-scope__cards > div { padding: 27px; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(255,255,255,.055); }
.diy101-scope__cards h3 { margin: 0 0 18px; color: #fff; font-size: 20px; }
.diy101-scope__cards ul { margin: 0; padding-left: 19px; }
.diy101-scope__cards li { margin-bottom: 9px; color: #e0d2c7; font-size: 14px; }

/* Article and page presentation */
body.diy101-studio-active:not(.diy101-home-page):not(.diy101-about-page) .site-main { min-height: 60vh; background: #fbf7f2; }
body.diy101-studio-active .hero-section {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--diy-line);
  background: linear-gradient(135deg, #fffaf4 0%, #f3e6d8 100%);
}
body.diy101-studio-active .hero-section:after {
  content: "";
  position: absolute;
  right: -85px;
  bottom: -130px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(201,107,44,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(201,107,44,.045), 0 0 0 110px rgba(201,107,44,.025);
}
body.diy101-studio-active .hero-section .entry-title,
body.diy101-studio-active .hero-section .page-title { max-width: 960px; color: var(--diy-ink); font-size: clamp(38px, 5vw, 64px); line-height: 1.04; letter-spacing: -.05em; }
body.diy101-studio-active .entry-meta { color: var(--diy-muted); font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
body.diy101-studio-active .ct-breadcrumbs { color: var(--diy-muted); font-size: 12px; font-weight: 750; }
body.diy101-studio-active .ct-breadcrumbs a { color: var(--diy-amber-dark); }
body.diy101-studio-active.single-post .entry-content,
body.diy101-studio-active.page:not(.diy101-home-page):not(.diy101-about-page) .entry-content {
  max-width: 860px;
  margin-inline: auto;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--diy-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--diy-shadow-sm);
}
body.diy101-studio-active.single-post .entry-content > :first-child,
body.diy101-studio-active.page .entry-content > :first-child { margin-top: 0; }
body.diy101-studio-active .entry-content p { margin-bottom: 1.25em; }
body.diy101-studio-active.single-post .entry-content > p:first-of-type { color: var(--diy-ink-2); font-size: 20px; line-height: 1.7; }
body.diy101-studio-active .entry-content h2,
body.diy101-studio-active .entry-content h3,
body.diy101-studio-active .entry-content h4,
body.diy101-studio-active .entry-content h5,
body.diy101-studio-active .entry-content h6 { color: var(--diy-ink); letter-spacing: -.03em; scroll-margin-top: 115px; }
body.diy101-studio-active .entry-content h2 { position: relative; margin-top: 2.25em; padding-bottom: .48em; font-size: clamp(29px, 3.5vw, 38px); line-height: 1.14; }
body.diy101-studio-active .entry-content h2:after { content: ""; position: absolute; left: 0; bottom: 0; width: 58px; height: 4px; border-radius: 99px; background: linear-gradient(90deg, var(--diy-amber), var(--diy-honey)); }
body.diy101-studio-active .entry-content h3 { margin-top: 1.8em; font-size: clamp(23px, 2.8vw, 29px); line-height: 1.22; }
body.diy101-studio-active .entry-content a:not(.wp-block-button__link) { color: var(--diy-amber-dark); font-weight: 650; text-decoration-color: rgba(168,79,31,.30); }
body.diy101-studio-active .entry-content a:not(.wp-block-button__link):hover { color: var(--diy-amber); text-decoration-color: currentColor; }
body.diy101-studio-active .entry-content strong { color: var(--diy-ink-2); }
body.diy101-studio-active .entry-content ul,
body.diy101-studio-active .entry-content ol { padding-left: 1.35em; }
body.diy101-studio-active .entry-content li { margin-bottom: .48em; }
body.diy101-studio-active .entry-content li::marker { color: var(--diy-amber); font-weight: 850; }
body.diy101-studio-active .entry-content img { border-radius: 16px; }
body.diy101-studio-active .wp-block-image figcaption,
body.diy101-studio-active .wp-caption-text { color: var(--diy-muted); font-size: 13px; line-height: 1.55; }
body.diy101-studio-active .entry-content blockquote,
body.diy101-studio-active .wp-block-quote { margin: 1.8em 0; padding: 22px 26px; border: 0; border-left: 5px solid var(--diy-amber); border-radius: 0 15px 15px 0; color: var(--diy-ink-2); background: #fff3e8; }
body.diy101-studio-active .wp-block-details { margin: 1.35em 0; padding: 18px 20px; border: 1px solid var(--diy-line); border-radius: 14px; background: #fffdf9; }
body.diy101-studio-active .wp-block-details summary { color: var(--diy-ink); font-weight: 800; cursor: pointer; }
body.diy101-studio-active .diy101-table-scroll { margin: 1.8em 0; overflow-x: auto; border: 1px solid var(--diy-line); border-radius: 15px; box-shadow: 0 8px 24px rgba(55,38,26,.05); }
body.diy101-studio-active .diy101-table-scroll table,
body.diy101-studio-active .entry-content > table { width: 100%; margin: 0; border: 0; border-collapse: separate; border-spacing: 0; background: #fff; }
body.diy101-studio-active .entry-content th,
body.diy101-studio-active .entry-content td { padding: 14px 16px; border: 0; border-bottom: 1px solid #eee3d7; text-align: left; vertical-align: top; }
body.diy101-studio-active .entry-content th { color: var(--diy-ink); background: #f7eadc; font-size: 14px; font-weight: 820; }
body.diy101-studio-active .entry-content tr:last-child td { border-bottom: 0; }
body.diy101-studio-active .entry-content tbody tr:nth-child(even) { background: #fffaf5; }
body.diy101-studio-active .info-box,
body.diy101-studio-active .notice-box,
body.diy101-studio-active .key-takeaway,
body.diy101-studio-active .source-box,
body.diy101-studio-active .warning-box,
body.diy101-studio-active .important-note,
body.diy101-studio-active [class*="notice-"] { margin: 1.6em 0; padding: 20px 22px; border: 1px solid #e3c2a6; border-left: 5px solid var(--diy-amber); border-radius: 13px; background: #fff5eb; }
body.diy101-studio-active .warning-box,
body.diy101-studio-active .important-note,
body.diy101-studio-active .notice-warning { border-color: #e8c985; border-left-color: #b97913; background: #fff8df; }
body.diy101-studio-active input:not([type="submit"]),
body.diy101-studio-active select,
body.diy101-studio-active textarea { border: 1px solid var(--diy-line) !important; border-radius: 12px !important; background: #fff !important; }
body.diy101-studio-active input:focus,
body.diy101-studio-active select:focus,
body.diy101-studio-active textarea:focus { border-color: var(--diy-amber) !important; box-shadow: 0 0 0 4px rgba(201,107,44,.12) !important; }

/* Generated TOC, author and related */
.diy101-generated-toc { margin: 1.5em 0 2em; padding: 20px 22px; border: 1px solid var(--diy-line); border-radius: 15px; background: #fffaf5; }
.diy101-generated-toc summary { color: var(--diy-ink); font-size: 15px; font-weight: 850; cursor: pointer; }
.diy101-generated-toc ol { display: grid; gap: 7px; margin: 14px 0 0; padding-left: 20px; }
.diy101-generated-toc a { color: var(--diy-ink-2) !important; font-size: 14px; font-weight: 650 !important; text-decoration: none; }
.diy101-generated-toc a:hover { color: var(--diy-amber-dark) !important; }
.diy101-article-brand { display: grid; grid-template-columns: 64px 1fr; gap: 18px; margin-top: 55px; padding: 22px; border: 1px solid var(--diy-line); border-radius: 17px; background: var(--diy-wax); }
.diy101-article-brand img { width: 58px; border-radius: 15px; }
.diy101-article-brand strong { color: var(--diy-ink); font-size: 18px; }
.diy101-article-brand p { margin: 4px 0 8px !important; font-size: 14px; line-height: 1.55; }
.diy101-article-brand a { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; }
.diy101-article-brand svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
.diy101-related { margin-top: 48px; }
.diy101-related h2 { margin-top: 0 !important; }
.diy101-related__grid { display: grid; gap: 10px; }
.diy101-related__grid a { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 14px; padding: 15px 17px; border: 1px solid var(--diy-line); border-radius: 12px; color: var(--diy-ink-2) !important; background: #fff; text-decoration: none; }
.diy101-related__grid a:hover { border-color: #d7ae8f; background: #fffaf5; }
.diy101-related__grid svg { width: 18px; height: 18px; fill: none; stroke: var(--diy-amber-dark); stroke-width: 2; }

/* Archives and search */
body.diy101-studio-active.blog .entries,
body.diy101-studio-active.archive .entries,
body.diy101-studio-active.search .entries { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
body.diy101-studio-active .entry-card { height: 100%; overflow: hidden; border: 1px solid var(--diy-line) !important; border-radius: 20px !important; background: #fff !important; box-shadow: var(--diy-shadow-sm) !important; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
body.diy101-studio-active .entry-card:hover { transform: translateY(-5px); border-color: #d6ad8d !important; box-shadow: var(--diy-shadow) !important; }
body.diy101-studio-active .entry-card .entry-title { color: var(--diy-ink); font-size: clamp(21px, 2.1vw, 27px); line-height: 1.2; letter-spacing: -.03em; }
body.diy101-studio-active .entry-card .entry-title a { color: inherit; text-decoration: none; }
body.diy101-studio-active .entry-card .entry-title a:hover { color: var(--diy-amber-dark); }
body.diy101-studio-active .entry-card .entry-excerpt { color: var(--diy-copy); }
body.diy101-studio-active .ct-pagination a,
body.diy101-studio-active .ct-pagination .current { border-radius: 10px; font-weight: 800; }

/* Search and 404 custom templates */
.diy101-system-page { min-height: 64vh; padding: 86px 0 105px; background: #fbf7f2; }
.diy101-system-page__head { max-width: 780px; margin-bottom: 44px; }
.diy101-system-page h1 { margin: 0; color: var(--diy-ink); font-size: clamp(42px, 6vw, 72px); line-height: 1; letter-spacing: -.055em; }
.diy101-system-page__head p { margin: 20px 0 0; font-size: 18px; }
.diy101-search-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.diy101-search-result { padding: 24px; border: 1px solid var(--diy-line); border-radius: 18px; background: #fff; box-shadow: var(--diy-shadow-sm); }
.diy101-search-result span { color: var(--diy-muted); font-size: 11px; font-weight: 820; letter-spacing: .07em; text-transform: uppercase; }
.diy101-search-result h2 { margin: 10px 0; font-size: 23px; line-height: 1.2; }
.diy101-search-result h2 a { color: var(--diy-ink); text-decoration: none; }
.diy101-system-search { display: grid; grid-template-columns: 1fr auto; gap: 10px; max-width: 720px; margin-top: 28px; }
.diy101-system-search input { height: 54px; padding: 0 17px; border: 1px solid var(--diy-line); border-radius: 13px; background: #fff; }

/* Footer */
.diy101-footer { color: #d9cec5; background: #211c19; border-top: 5px solid var(--diy-amber); }
.diy101-footer__inner { display: grid; grid-template-columns: 1.55fr repeat(3, 1fr); gap: 60px; width: min(1180px, calc(100% - 40px)); margin-inline: auto; padding: 72px 0 56px; }
.diy101-brand--footer .diy101-brand__text strong { color: #fff; }
.diy101-brand--footer .diy101-brand__text small { color: #bcaea3; }
.diy101-footer__brand p { max-width: 390px; margin: 22px 0 0; color: #cfc2b8; font-size: 14px; line-height: 1.65; }
.diy101-footer h2 { margin: 0 0 17px; color: #fff; font-size: 13px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.diy101-footer__inner > div:not(.diy101-footer__brand) { display: flex; flex-direction: column; align-items: flex-start; }
.diy101-footer__inner a:not(.diy101-brand) { margin-bottom: 10px; color: #d9cec5; font-size: 14px; text-decoration: none; }
.diy101-footer__inner a:hover { color: #f0ae70; }
.diy101-footer__legal { display: flex; justify-content: space-between; gap: 30px; width: min(1180px, calc(100% - 40px)); margin-inline: auto; padding: 23px 0 30px; border-top: 1px solid rgba(255,255,255,.10); }
.diy101-footer__legal p { max-width: 620px; margin: 0; color: #a99b91; font-size: 11px; line-height: 1.55; }

/* Responsive */
@media (max-width: 1120px) {
  .diy101-header__inner { grid-template-columns: auto auto auto; }
  .diy101-nav-toggle { display: inline-grid; justify-self: end; }
  .diy101-nav { position: absolute; top: 100%; left: 0; right: 0; display: none; padding: 16px 20px 24px; border-top: 1px solid var(--diy-line); border-bottom: 1px solid var(--diy-line); background: #fffdf9; box-shadow: 0 25px 45px rgba(43,37,33,.13); }
  .diy101-nav.is-open { display: block; }
  .diy101-menu { display: grid; gap: 5px; max-width: 720px; margin-inline: auto; }
  .diy101-menu a { min-height: 46px; }
  .diy101-menu .sub-menu { position: static; display: none; min-width: 0; margin: 3px 0 8px 18px; padding: 4px 0 4px 12px; border: 0; border-left: 2px solid #efd8c3; border-radius: 0; background: transparent; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .diy101-menu .menu-item-has-children.is-submenu-open > .sub-menu { display: block; }
  .diy101-menu li:hover > .sub-menu { display: none; }
  .diy101-menu li.is-submenu-open:hover > .sub-menu { display: block; }
  .diy101-hero__grid { grid-template-columns: 1fr .78fr; gap: 35px; }
  .diy101-hero__copy h1 { font-size: clamp(48px, 6vw, 70px); }
  .diy101-path-grid,
  .diy101-topic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .diy101-process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .diy101-section { padding: 76px 0; }
  .diy101-section-heading--split,
  .diy101-tools__grid,
  .diy101-method__grid,
  .diy101-about-strip__grid,
  .diy101-about-hero__grid,
  .diy101-about-grid,
  .diy101-scope__grid { grid-template-columns: 1fr; gap: 38px; }
  .diy101-section-heading--split > p { margin: 0; }
  .diy101-hero { padding: 76px 0 60px; }
  .diy101-hero__grid { grid-template-columns: 1fr; }
  .diy101-hero__visual { max-width: 560px; margin-inline: auto; }
  .diy101-post-grid,
  .diy101-more__grid,
  body.diy101-studio-active.blog .entries,
  body.diy101-studio-active.archive .entries,
  body.diy101-studio-active.search .entries,
  .diy101-search-results { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .diy101-footer__inner { grid-template-columns: 1.5fr 1fr 1fr; }
  .diy101-footer__inner > div:last-child { grid-column: 2; }
  .diy101-publisher__grid { grid-template-columns: 260px 1fr; gap: 42px; }
}

@media (max-width: 689px) {
  body.diy101-studio-active { font-size: 16px; }
  .admin-bar .diy101-header { top: 46px; }
  .admin-bar .diy101-reading-progress { top: 46px; }
  .diy101-shell { width: min(100% - 28px, 1180px); }
  .diy101-header__inner { min-height: 72px; width: min(100% - 24px, 1240px); gap: 9px; }
  .diy101-brand { gap: 9px; }
  .diy101-brand img { width: 42px; height: 42px; border-radius: 12px; }
  .diy101-brand__text strong { font-size: 16px; }
  .diy101-brand__text small { font-size: 9px; }
  .diy101-search-toggle,
  .diy101-nav-toggle { width: 40px; height: 40px; }
  .diy101-nav-toggle { order: 2; }
  .diy101-search-toggle { order: 3; }
  .diy101-search-panel__form { grid-template-columns: 1fr; }
  .diy101-section { padding: 62px 0; }
  .diy101-section-heading { margin-bottom: 30px; }
  .diy101-section-heading h2,
  .diy101-tools h2,
  .diy101-method h2,
  .diy101-about-strip h2,
  .diy101-about h2 { font-size: 34px; }
  .diy101-section-heading p,
  .diy101-tools p,
  .diy101-method p,
  .diy101-about-strip p { font-size: 16px; }
  .diy101-hero { padding: 62px 0 50px; }
  .diy101-hero__copy h1 { font-size: 47px; }
  .diy101-hero__copy > p { font-size: 17px; }
  .diy101-actions { align-items: stretch; flex-direction: column; }
  .diy101-button { width: 100%; }
  .diy101-hero__proof { display: grid; gap: 10px; }
  .diy101-path-grid,
  .diy101-topic-grid,
  .diy101-post-grid,
  .diy101-more__grid,
  .diy101-about-values,
  .diy101-process-grid,
  .diy101-scope__cards,
  body.diy101-studio-active.blog .entries,
  body.diy101-studio-active.archive .entries,
  body.diy101-studio-active.search .entries,
  .diy101-search-results { grid-template-columns: 1fr; }
  .diy101-path-card { min-height: 310px; }
  .diy101-topic-card { min-height: 215px; }
  .diy101-tool-card { grid-template-columns: 48px 1fr auto; padding: 14px; }
  .diy101-tool-card__icon { width: 48px; height: 48px; }
  .diy101-more-card { grid-template-columns: 50px 1fr auto; padding: 18px; }
  .diy101-method__steps li { grid-template-columns: 42px 1fr; }
  .diy101-about-hero { padding: 68px 0 60px; }
  .diy101-about-hero h1 { font-size: 45px; }
  .diy101-about-hero p { font-size: 17px; }
  .diy101-about-hero__mark { display: none; }
  .diy101-publisher__grid { grid-template-columns: 1fr; }
  .diy101-publisher__photo { max-width: 300px; }
  body.diy101-studio-active.single-post .entry-content,
  body.diy101-studio-active.page:not(.diy101-home-page):not(.diy101-about-page) .entry-content { padding: 25px 19px; border-radius: 15px; }
  body.diy101-studio-active .hero-section .entry-title,
  body.diy101-studio-active .hero-section .page-title { font-size: 39px; }
  body.diy101-studio-active.single-post .entry-content > p:first-of-type { font-size: 18px; }
  body.diy101-studio-active .entry-content h2 { font-size: 29px; }
  body.diy101-studio-active .entry-content h3 { font-size: 24px; }
  .diy101-article-brand { grid-template-columns: 52px 1fr; padding: 17px; }
  .diy101-article-brand img { width: 50px; }
  .diy101-footer__inner { grid-template-columns: 1fr 1fr; gap: 38px 25px; width: min(100% - 28px, 1180px); padding: 55px 0 42px; }
  .diy101-footer__brand { grid-column: 1 / -1; }
  .diy101-footer__inner > div:last-child { grid-column: auto; }
  .diy101-footer__legal { flex-direction: column; width: min(100% - 28px, 1180px); }
  .diy101-system-search { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
