@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;1,500&display=swap");
:root {
  --green: #2d503e;
  --olive: #777c50;
  --paper: #fafaf6;
  --ink: #252b25;
  --muted: #6c7268;
  --line: #dce0d5;
  --sand: #eeeade;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid #a78143;
  outline-offset: 5px;
}
button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
header {
  max-width: 1440px;
  margin: auto;
  padding: 14px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}
.brand img {
  width: 120px;
  height: 66px;
  object-fit: contain;
  display: block;
}
nav {
  display: flex;
  gap: 32px;
}
header nav a {
  font-size: 14px;
}
.header-cta {
  font-size: 14px;
  border-bottom: 1px solid var(--green);
  padding: 7px 0;
}
.header-cta span {
  margin-left: 20px;
}
.hero {
  max-width: 1440px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 590px;
  padding: 46px 5% 48px;
  gap: 38px;
}
.hero-copy {
  padding: 48px 0 0;
}
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 20px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -1.4px;
}
h1 {
  font-size: clamp(42px, 4.5vw, 67px);
  margin-bottom: 26px;
}
h1 em {
  font-weight: 500;
  color: var(--green);
}
.hero-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 15px 24px;
  background: var(--green);
  color: white;
  border: 0;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  min-height: 48px;
}
.button:hover {
  background: #213d2e;
}
.hero .button {
  margin-top: 15px;
}
.hero-note {
  margin-top: 50px;
  font-size: 12px;
  color: var(--muted);
}
.hero-note span {
  margin-right: 18px;
  color: var(--green);
}
.hero-image {
  position: relative;
  min-width: 0;
}
.hero-image > img,
.photo-pending {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 450px;
  background: #d3dacb;
}
.hero-image:after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, #17251999);
}
.image-label {
  position: absolute;
  bottom: 26px;
  left: 30px;
  right: 20px;
  color: white;
  z-index: 1;
  font-size: 11px;
  letter-spacing: 1.6px;
}
.image-label b {
  display: block;
  font-size: 19px;
  letter-spacing: 0;
  margin-top: 7px;
  font-weight: 500;
}
.category-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 23px 5%;
  border-block: 1px solid var(--line);
  gap: 20px;
  max-width: 1440px;
  margin: auto;
}
.category-strip > span {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--muted);
}
.category-strip a {
  font-size: 15px;
}
.tools-band {
  padding: 54px 5% 58px;
  background: #edf0e7;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 27px;
}
.section-head h2 {
  font-size: 32px;
  margin-bottom: 0;
}
.section-head .eyebrow {
  margin-bottom: 12px;
}
.section-head > a,
.section-head > span {
  font-size: 13px;
  color: var(--muted);
}
.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tool-grid > a {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 25px 22px;
  border: 1px solid #d8dece;
  background: #fafbf6;
}
.tool-grid h3 {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 600;
}
.tool-grid p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.tool-grid b {
  margin-left: auto;
  font-weight: 400;
}
.tool-icon {
  font-size: 30px;
  color: var(--green);
}
.articles {
  max-width: 1440px;
  padding: 70px 5%;
  margin: auto;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px 26px;
}
.article-card > img,
.article-card > .photo-pending {
  width: 100%;
  height: 235px;
  min-height: 0;
  object-fit: cover;
  transition: filter 0.2s;
}
.article-card:hover > img {
  filter: brightness(0.92);
}
.article-card > div:not(.photo-pending) {
  padding: 19px 0 0;
}
.article-card .eyebrow {
  font-size: 11px;
}
.article-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: 25px;
  line-height: 1.3;
  margin: 12px 0;
}
.article-card p {
  font-size: 14px;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.read {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  border-bottom: 1px solid var(--line);
  padding: 5px 0 15px;
}
.closing {
  background: var(--sand);
  text-align: center;
  padding: 64px 20px;
}
.closing h2 {
  font-size: 42px;
}
.closing .button {
  margin-top: 8px;
}
footer {
  padding: 50px 5% 28px;
  background: #253e31;
  color: #f2f3ea;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 26px;
}
footer strong {
  font-size: 18px;
  letter-spacing: 2px;
}
footer p,
footer a {
  font-size: 13px;
  color: #d0d9cc;
}
footer > div:nth-child(2) {
  display: flex;
  gap: 26px;
}
footer small {
  width: 100%;
  border-top: 1px solid #5c6b5f;
  padding-top: 20px;
  color: #b7c3b5;
  font-size: 12px;
}
.tools-page,
.post {
  max-width: 1200px;
  padding: 55px 5% 70px;
  margin: auto;
}
.tools-page > h1 {
  font-size: 58px;
}
.intro {
  font-size: 19px;
  color: var(--muted);
  line-height: 1.7;
}
.tool-tabs {
  padding: 20px 0 30px;
  flex-wrap: wrap;
}
.tool-tabs a {
  border-bottom: 1px solid var(--green);
  font-size: 14px;
}
.tool-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  padding: 50px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 25px;
}
.tool-panel h2 {
  font-size: 34px;
}
.tool-panel p {
  color: var(--muted);
}
.form-grid,
.wall-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.wall-row {
  margin-bottom: 14px;
}
label {
  display: block;
  font-size: 14px;
  color: var(--green);
}
input,
select {
  display: block;
  width: 100%;
  border: 1px solid #bcc7b7;
  background: white;
  padding: 11px;
  margin-top: 7px;
  border-radius: 3px;
  color: var(--ink);
  min-width: 0;
}
.form-grid {
  margin: 18px 0 25px;
}
.text-button {
  border: 0;
  background: transparent;
  color: var(--green);
  text-decoration: underline;
  padding: 8px 0;
  font-size: 14px;
}
.result {
  background: #eaf0e4;
  padding: 34px;
  align-self: stretch;
}
.result h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
}
.result .number {
  font-size: 52px;
  color: var(--green);
  line-height: 1.2;
  margin: 20px 0;
}
.result .error {
  color: #912f1f;
}
.result p {
  font-size: 14px;
}
.form-note {
  font-size: 13px;
}
.check-item {
  display: flex;
  align-items: start;
  gap: 12px;
  font-size: 14px;
  margin: 12px 0;
  color: var(--ink);
}
.check-item input {
  width: 18px;
  height: 18px;
  flex: none;
  margin: 3px 0;
}
.check-item:has(:checked) {
  text-decoration: line-through;
  opacity: 0.65;
}
.schedule h4 {
  margin-bottom: 8px;
}
.breadcrumb,
.byline {
  font-size: 13px;
  color: var(--muted);
}
.post > .eyebrow {
  margin-top: 25px;
}
.post > h1 {
  max-width: 960px;
  font-size: 52px;
}
.cover {
  width: 100%;
  height: 480px;
  object-fit: cover;
  margin-top: 14px;
}
.ad {
  border: 1px solid var(--line);
  min-height: 115px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #8b9286;
  background: #f1f2ed;
  margin: 32px 0;
}
.ad span {
  font-size: 10px;
  letter-spacing: 2px;
}
.adsbygoogle {
  font-size: 12px;
  margin-top: 8px;
}
.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 55px;
}
.post article h2 {
  font-size: 32px;
  line-height: 1.3;
  margin: 35px 0 18px;
}
.post article p {
  line-height: 1.85;
}
.body-photo {
  width: 100%;
  height: 340px;
  object-fit: cover;
  margin: 15px 0;
}
.contents {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #eef0e8;
  padding: 24px;
  font-size: 14px;
}
.contents a,
.post article p a,
details a {
  text-decoration: underline;
}
.faq h3 {
  font-size: 18px;
  margin: 25px 0 8px;
}
.post-cta {
  background: var(--sand);
  padding: 28px;
  margin-top: 35px;
}
.post-cta h2 {
  margin-top: 0 !important;
}
.reading-aside {
  border-top: 2px solid var(--green);
  padding-top: 25px;
}
.reading-aside h3 {
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
}
.reading-aside p,
.reading-aside a {
  font-size: 14px;
}
details {
  font-size: 13px;
  margin-top: 25px;
}
.narrow {
  max-width: 850px;
}
.narrow h2 {
  margin-top: 35px;
}
.narrow p {
  line-height: 1.85;
}
@media (min-width: 1441px) {
  .tools-band {
    padding-inline: max(5%, calc((100vw - 1296px) / 2));
  }
}
@media (max-width: 900px) {
  header nav {
    gap: 16px;
  }
  .header-cta {
    display: none;
  }
  .hero {
    gap: 24px;
    min-height: auto;
  }
  .hero-copy {
    padding-top: 25px;
  }
  .hero h1 {
    font-size: 46px;
  }
  .hero-image > img,
  .photo-pending {
    min-height: 410px;
  }
  .hero-note {
    margin-top: 25px;
  }
  .tool-grid {
    grid-template-columns: 1fr;
  }
  .tool-grid > a {
    padding: 20px;
  }
  .article-grid {
    grid-template-columns: 1fr 1fr;
  }
  .category-strip > span {
    display: none;
  }
  .tool-panel {
    gap: 24px;
  }
  .post-layout {
    grid-template-columns: 1fr;
  }
  .reading-aside {
    display: none;
  }
  .section-head {
    align-items: start;
  }
  .section-head > span {
    display: none;
  }
}
@media (max-width: 600px) {
  header {
    padding: 12px 6%;
    gap: 12px;
  }
  .brand img {
    width: 91px;
    height: 51px;
  }
  header nav {
    gap: 13px;
  }
  header nav a {
    font-size: 12px;
  }
  header nav a:nth-child(2) {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 28px 6% 30px;
    gap: 28px;
  }
  .hero-copy {
    padding: 8px 0 0;
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 16px;
  }
  .hero-note {
    display: none;
  }
  .hero-image {
    height: 335px;
  }
  .hero-image > img {
    min-height: 0;
    height: 335px;
  }
  .eyebrow {
    font-size: 11px;
    letter-spacing: 1.3px;
  }
  .category-strip {
    overflow: auto;
    gap: 23px;
    padding-inline: 6%;
  }
  .category-strip a {
    font-size: 13px;
  }
  .tools-band,
  .articles {
    padding: 38px 6%;
  }
  .section-head {
    display: block;
  }
  .section-head h2 {
    font-size: 29px;
  }
  .section-head > a {
    display: inline-block;
    margin-top: 15px;
  }
  .article-grid {
    gap: 30px 17px;
  }
  .article-card > img {
    height: 160px;
  }
  .article-card h3 {
    font-size: 21px;
  }
  .article-card p {
    display: none;
  }
  .article-card .eyebrow {
    font-size: 10px;
    letter-spacing: 0.6px;
  }
  .closing h2 {
    font-size: 33px;
  }
  footer {
    padding: 36px 6% 22px;
  }
  footer > div:nth-child(2) {
    flex-wrap: wrap;
    gap: 16px;
  }
  .tools-page,
  .post {
    padding: 35px 6%;
  }
  .tools-page > h1,
  .post > h1 {
    font-size: 39px;
  }
  .tool-panel {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 35px;
  }
  .tool-panel h2 {
    font-size: 30px;
  }
  .result {
    padding: 25px;
  }
  .form-grid,
  .wall-row {
    gap: 14px;
  }
  .intro {
    font-size: 17px;
  }
  .cover {
    height: 280px;
  }
  .body-photo {
    height: 240px;
  }
  .post article h2 {
    font-size: 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
/* Casa e Harmonia — editorial, cores naturais e leitura confortável. */
:root {
  --green: #294d40;
  --olive: #52653f;
  --paper: #fcf9f3;
  --ink: #263e35;
  --muted: #58665d;
  --line: #d9ddd1;
  --sand: #ececdb;
  --terra: #a44630;
}
body {
  background: var(--paper);
}
header {
  max-width: none;
  padding: 12px max(5%, calc((100% - 1320px) / 2));
  background: #fffdf8;
  border: 0;
}
.brand img {
  width: 150px;
  height: 83px;
}
header nav a {
  font-weight: 600;
}
.header-cta {
  background: var(--green);
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  border: 0;
}
.hero {
  max-width: 1440px;
  gap: 64px;
  padding-top: 40px;
  padding-bottom: 64px;
  align-items: center;
  min-height: 620px;
}
.hero-copy {
  padding: 0;
}
h1 {
  font-size: clamp(42px, 4.8vw, 72px);
  letter-spacing: -2px;
}
h1 em {
  color: var(--terra);
}
.hero-image {
  height: 520px;
  min-height: 0;
  border-radius: 150px 16px 16px 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 18px 18px 0 #e5e9d4;
}
.hero-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.image-label {
  background: linear-gradient(transparent, #132d24ef);
  color: white;
  position: absolute;
  bottom: 0;
  padding: 64px 28px 24px;
  width: 100%;
  left: 0;
}
.image-label b {
  display: block;
  font-size: 20px;
  margin-top: 8px;
}
.hero-note {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 28px;
  font-size: 13px;
}
.hero-note span {
  color: var(--terra);
  font-weight: 700;
}
.button {
  border-radius: 30px;
  background: var(--green);
  padding: 15px 24px;
  font-weight: 600;
}
.button:hover {
  background: #153b2c;
}
.category-strip {
  max-width: 1280px;
  margin: 0 auto 50px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 16px;
  background: #e9eedf;
  border: 0;
  flex-wrap: wrap;
}
.category-strip > span {
  font-size: 10px;
  letter-spacing: 1.5px;
  max-width: 160px;
}
.category-strip a {
  background: #fffdf8;
  border-radius: 28px;
  padding: 10px 24px;
  font-size: 14px;
}
.category-strip a:nth-of-type(2) {
  background: #f6dac5;
}
.category-strip a:nth-of-type(3) {
  background: #d6e4d6;
}
.category-strip a:nth-of-type(4) {
  background: #f2e5b1;
}
.tools-band {
  background: #f3dfd2;
  padding: 54px max(5%, calc((100% - 1280px) / 2));
  max-width: none;
  margin: 0;
}
.section-head h2 {
  font-size: clamp(30px, 3vw, 44px);
  max-width: 700px;
}
.section-head {
  gap: 24px;
}
.tool-grid {
  gap: 18px;
}
.tool-grid > a {
  background: #fffaf3;
  border: 0;
  border-radius: 16px;
  padding: 26px;
  transition: box-shadow 0.2s;
}
.tool-grid > a:hover {
  box-shadow: 0 8px 24px #63342315;
}
.tool-icon {
  background: #e8eddf;
  color: var(--green);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: none;
}
.tool-grid h3 {
  font-size: 18px;
}
.articles {
  max-width: 1440px;
  padding: 70px 5%;
}
.search-tools {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  background: #edf0e6;
  padding: 24px;
  border-radius: 16px;
  margin: 28px 0 12px;
}
.search-tools label {
  font-size: 14px;
  font-weight: 600;
}
.search-tools input,
.search-tools select {
  background: #fff;
  margin-top: 8px;
}
#search-count {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}
.article-grid {
  gap: 32px 24px;
}
.article-card {
  background: #fffdf9;
  border: 1px solid #e4e4d9;
  border-radius: 18px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.article-card:hover {
  box-shadow: 0 12px 32px #2c4c3712;
}
.article-card > img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.article-card > div {
  padding: 24px;
}
.article-card .eyebrow {
  color: var(--terra);
  font-size: 10px;
}
.article-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  line-height: 1.3;
  font-weight: 500;
}
.article-card p {
  font-size: 14px;
  color: var(--muted);
}
.read {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 13px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}
.closing {
  background: #e5ebd8;
  border-radius: 24px;
  max-width: 1280px;
  margin: 0 auto 70px;
  padding: 56px 24px;
}
.closing h2 {
  font-size: clamp(32px, 4vw, 50px);
}
footer {
  background: #274a3d;
  color: #fffaf0;
  max-width: none;
  padding: 50px max(5%, calc((100% - 1280px) / 2));
  border: 0;
}
footer small,
footer p {
  color: #e1e8db;
}
footer a {
  color: #fffaf0;
}
.post {
  max-width: 1200px;
  padding: 48px 5%;
  margin: auto;
}
.post > h1 {
  max-width: 950px;
  font-size: clamp(38px, 4.8vw, 64px);
}
.post > .intro {
  max-width: 900px;
}
.post .cover {
  border-radius: 20px;
  max-height: 510px;
  object-fit: cover;
  width: 100%;
  margin: 24px 0 40px;
}
.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 64px;
}
.post-layout article {
  min-width: 0;
}
.post h2 {
  font-size: 32px;
  margin-top: 36px;
}
.post article p {
  font-size: 18px;
  line-height: 1.85;
}
.post article a,
.narrow a:not(.button) {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contents {
  background: #eef0e6;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.body-photo {
  border-radius: 16px;
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.reading-aside {
  background: #f3dfd2;
  border-radius: 16px;
  padding: 28px;
  height: fit-content;
  position: sticky;
  top: 24px;
}
.reading-aside h3 {
  font-family: Georgia, serif;
  font-size: 28px;
  line-height: 1.2;
}
.post-cta {
  background: #e7ecdb;
  border-radius: 16px;
  padding: 28px;
}
.post-cta h2 {
  margin-top: 0;
}
.faq {
  border-bottom: 1px solid var(--line);
}
details {
  margin: 25px 0;
  padding: 20px;
  background: #f0f0e7;
  border-radius: 12px;
}
details p {
  font-size: 13px !important;
  overflow-wrap: anywhere;
}
.narrow {
  max-width: 850px;
}
.tools-page {
  max-width: 1280px;
  padding: 48px 5%;
  margin: auto;
}
.tool-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}
.tool-tabs a {
  background: #e8eddc;
  padding: 12px 18px;
  border-radius: 30px;
}
.tool-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fffdf8;
  padding: 36px;
  margin: 30px 0;
  scroll-margin-top: 24px;
}
.tool-panel > div {
  min-width: 0;
}
.tool-panel h2 {
  font-size: 36px;
}
.result {
  background: #e9eddf;
  border-radius: 16px;
  padding: 28px;
  align-self: stretch;
  overflow-wrap: anywhere;
}
.tool-panel:nth-of-type(even) .result {
  background: #f5e2d4;
}
.result h3 {
  font-family: Georgia, serif;
  font-size: 30px;
  line-height: 1.25;
}
.number {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.3;
  font-weight: 700;
}
.form-grid,
.wall-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0;
}
label {
  display: block;
  font-size: 14px;
}
input:not([type="checkbox"]),
select {
  display: block;
  width: 100%;
  min-width: 0;
  border: 1px solid #b6c0b2;
  background: #fff;
  border-radius: 9px;
  padding: 12px;
  min-height: 48px;
  color: var(--ink);
}
input:disabled {
  background: #e8e8e0;
  color: #666;
}
.form-note {
  font-size: 13px;
  line-height: 1.6;
}
.text-button {
  color: var(--green);
  background: transparent;
  border: 0;
  text-decoration: underline;
  padding: 10px 0;
  min-height: 44px;
}
.check-item {
  display: flex;
  align-items: start;
  gap: 10px;
  margin: 12px 0;
}
.check-item input {
  width: 20px;
  height: 20px;
  flex: none;
  accent-color: var(--green);
}
.swatches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 20px 0;
}
.swatch span {
  display: block;
  height: 115px;
  border-radius: 50px 50px 8px 8px;
  border: 1px solid #0002;
}
.swatch small {
  display: block;
  font-size: 12px;
  margin-top: 8px;
}
.skip {
  position: absolute;
  top: -100px;
  left: 20px;
  background: white;
  padding: 12px;
  z-index: 10;
}
.skip:focus {
  top: 12px;
}
[hidden] {
  display: none !important;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid #9a452f;
  outline-offset: 4px;
}
.byline,
.breadcrumb {
  font-size: 13px;
}
.byline a {
  text-decoration: underline;
}
.ad {
  display: none;
}
@media (max-width: 900px) {
  header {
    gap: 16px;
    flex-wrap: wrap;
  }
  header nav {
    gap: 18px;
    order: 3;
    width: 100%;
    justify-content: center;
  }
  header nav a:nth-child(2) {
    display: block;
  }
  .hero {
    gap: 28px;
    padding-top: 30px;
    min-height: 0;
  }
  .hero-image {
    height: 440px;
  }
  .category-strip {
    margin-left: 5%;
    margin-right: 5%;
  }
  .category-strip > span {
    max-width: none;
    width: 100%;
  }
  .tool-grid {
    grid-template-columns: 1fr;
  }
  .post-layout {
    grid-template-columns: 1fr;
  }
  .reading-aside {
    position: static;
  }
  .closing {
    margin-left: 5%;
    margin-right: 5%;
  }
  .tool-panel {
    gap: 24px;
    padding: 24px;
  }
  .tool-panel h2 {
    font-size: 30px;
  }
}
@media (max-width: 600px) {
  header {
    padding: 10px 5%;
  }
  .brand img {
    width: 120px;
    height: 66px;
  }
  .header-cta {
    font-size: 12px;
    padding: 10px 14px;
  }
  .header-cta span {
    margin-left: 8px;
  }
  header nav a {
    font-size: 12px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-bottom: 40px;
  }
  .hero-copy {
    padding: 12px 0;
  }
  .hero h1 {
    font-size: 46px;
  }
  .hero-image {
    height: 340px;
    border-radius: 100px 14px 14px 14px;
    box-shadow: 8px 8px 0 #e5e9d4;
  }
  .hero-note {
    margin-top: 22px;
  }
  .category-strip {
    padding: 18px;
    margin-bottom: 30px;
  }
  .category-strip a {
    padding: 9px 14px;
    font-size: 12px;
  }
  .section-head {
    align-items: start;
    flex-direction: column;
  }
  .tools-band {
    padding-top: 36px;
    padding-bottom: 36px;
  }
  .articles {
    padding-top: 40px;
  }
  .search-tools,
  .article-grid,
  .tool-panel {
    grid-template-columns: 1fr;
  }
  .article-card > img {
    height: 240px;
  }
  .tool-panel {
    padding: 20px;
  }
  .tool-tabs {
    gap: 8px;
  }
  .tool-tabs a {
    font-size: 13px;
    padding: 10px 12px;
  }
  .form-grid,
  .wall-row {
    gap: 12px;
  }
  .result {
    padding: 22px;
  }
  .tools-page {
    padding-top: 32px;
  }
  .post {
    padding-top: 32px;
  }
  .post .cover {
    height: 260px;
  }
  .post h2 {
    font-size: 28px;
  }
  .post article p {
    font-size: 17px;
  }
  .body-photo {
    height: 230px;
  }
  footer {
    gap: 24px;
  }
  .closing {
    padding: 36px 20px;
  }
  .eyebrow {
    letter-spacing: 1.3px;
  }
  .swatch span {
    height: 90px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
@media print {
  header,
  footer,
  .tool-tabs,
  .reading-aside,
  .post-cta {
    display: none;
  }
  .tool-panel {
    break-inside: avoid;
  }
  .post-layout {
    display: block;
  }
  body {
    background: white;
    color: black;
  }
}

.form-grid > label,
.wall-row > label {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}
.form-grid > label input,
.form-grid > label select {
  margin-top: 0;
}
