@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Manrope:wght@400;500;700;800&display=swap");

:root {
    --bg: #ffffff;
    --paper: #ffffff;
    --header-offset: 78px;
    --ink: #24161a;
    --muted: #705c63;
    --soft: #fbf5f7;
    --soft-pink: #f8e6ec;
    --line: #ead8de;
    --accent: #da4f7f;
    --accent-2: #c96f47;
    --burgundy: #b23361;
    --plum: #24161a;
    --reverse: #ffffff;
    --radius: 10px;
    --serif: "Fraunces", Georgia, serif;
    --sans: "Manrope", "Trebuchet MS", Verdana, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--bg);
    font-family: var(--sans);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--accent);
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.narrow {
    width: min(960px, calc(100% - 40px));
}

.progress-bar,
.bg-square::before {
    display: none;
}

.site-header {
    z-index: 40;
    position: relative;
    top: 0;
    width: 100%;
    background: transparent;
}

.site-header + .hero {
    margin-top: -200px;
    padding-top: 300px !important;
}

.site-header + .page-hero,
.site-header + .article-shell,
.site-header + .guide-shell {
    margin-top: calc(var(--header-offset) * -1);
}

.header-inner,
.main-nav,
.hero-actions,
.article-meta,
.search-inner,
.hero-stats {
    display: flex;
    align-items: center;
}

.header-inner {
    min-height: var(--header-offset);
    gap: 28px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 700;
}

.logo-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--ink);
    background: var(--paper);
    box-shadow: inset 0 0 0 1px var(--line);
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
}

.main-nav {
    gap: 22px;
    margin-left: auto;
    font-size: 13px;
    font-weight: 800;
}

.header-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    transition: background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.header-cta,
.btn-dark {
    color: var(--reverse);
    background: var(--plum);
    box-shadow: none;
}

.btn-dark:hover,
.header-cta:hover {
    color: var(--reverse);
    background: var(--burgundy);
    box-shadow: none;
}

.btn-light:hover {
    color: var(--reverse);
    background: var(--accent);
    box-shadow: none;
}

.btn-light {
    color: var(--reverse);
    background: var(--burgundy);
    box-shadow: none;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--paper);
    box-shadow: inset 0 0 0 1px var(--line);
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink);
}

.search-panel {
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.search-inner {
    gap: 16px;
    min-height: 48px;
    overflow-x: auto;
    white-space: nowrap;
}

.eyebrow,
.post-meta {
    color: var(--burgundy);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.search-inner a {
    color: var(--burgundy);
    font-size: 13px;
}

.hero,
.page-hero,
.article-hero {
    position: relative;
    padding: 82px 0;
}

.product-hero {
    padding: 74px 0 54px;
    overflow: hidden;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.hero-stage {
    display: grid;
    justify-items: center;
    text-align: center;
}

.hero-stage > * {
    min-width: 0;
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 980px;
    padding: 0;
}

h1,
h2,
h3 {
    margin: 0 0 16px;
    font-family: var(--serif);
    line-height: 1.02;
    font-weight: 700;
}

h1 {
    max-width: 1040px;
    font-size: 84px;
}

h2 {
    font-size: 60px;
}

h3 {
    font-size: 25px;
}

p {
    margin: 0 0 18px;
    color: var(--muted);
}

.hero p,
.page-hero p {
    max-width: 680px;
    font-size: 20px;
}

.hero p {
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.hero-stats {
    justify-content: center;
    gap: 42px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.hero-stats span {
    display: grid;
    gap: 2px;
    color: var(--muted);
    font-size: 13px;
}

.hero-stats strong {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 34px;
    line-height: 1;
}

.hero-media {
    position: relative;
    width: min(940px, 100%);
    min-height: 520px;
    margin-top: 34px;
}

.hero-media img {
    position: relative;
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius);
    box-shadow: 0 34px 90px rgba(15, 23, 42, .14);
}

.floating-note {
    position: absolute;
    width: min(250px, calc(100% - 56px));
    padding: 22px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 24px 60px rgba(15, 23, 42, .12);
    backdrop-filter: blur(10px);
    text-align: left;
}

.note-left {
    left: -64px;
    top: 54px;
}

.note-right {
    right: -42px;
    bottom: 42px;
}

.floating-note span {
    color: var(--burgundy);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.floating-note strong {
    display: block;
    margin: 6px 0 10px;
    font-family: var(--serif);
    font-size: 28px;
    line-height: 1;
}

.floating-note a,
.text-link,
.card-link {
    color: var(--burgundy);
    font-size: 13px;
    font-weight: 900;
}

.benefit-strip {
    background: #fff;
    color: var(--ink);
    border-bottom: 1px solid rgba(15, 23, 42, .09);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.benefit-grid > div {
    min-height: 170px;
    padding: 34px 30px;
    border-left: 1px solid rgba(15, 23, 42, .09);
}

.benefit-grid > div:last-child {
    border-right: 1px solid rgba(15, 23, 42, .09);
}

.benefit-grid span {
    color: var(--accent-2);
    font-weight: 900;
}

.benefit-grid strong {
    display: block;
    margin: 8px 0;
    font-family: var(--serif);
    font-size: 30px;
    line-height: 1.05;
}

.benefit-grid p {
    color: rgba(15, 23, 42, .68);
}

.section {
    padding: 86px 0;
}

.muted {
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.guide-section {
    background: var(--paper);
}

.guide-panel {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.guide-copy {
    max-width: 520px;
}

.guide-copy .btn {
    margin-top: 10px;
}

.guide-image img,
.story-media img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: 0 34px 80px rgba(15, 23, 42, .12);
}

.features-section,
.reviews-section,
.trending-section {
    background: var(--paper);
}

.features-layout {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 70px;
    align-items: start;
}

.feature-intro {
    position: sticky;
    top: 116px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.feature-list a {
    min-height: 230px;
    padding: 34px;
    border-radius: var(--radius);
    background: var(--paper);
    border: 1px solid var(--line);
}

.feature-list span {
    color: var(--accent);
    font-weight: 900;
}

.feature-list strong {
    display: block;
    max-width: 300px;
    margin: 18px 0 14px;
    font-family: var(--serif);
    font-size: 34px;
    line-height: 1;
}

.subscribe-band {
    padding: 72px 0;
    color: var(--ink);
    background: var(--paper);
    box-shadow: inset 0 1px 0 var(--line), inset 0 -1px 0 var(--line);
}

.subscribe-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
    gap: 40px;
    align-items: center;
}

.subscribe-inner h2 {
    margin: 0;
    color: var(--ink);
}

.subscribe-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 8px;
    border-radius: 999px;
    background: var(--soft-pink);
    box-shadow: inset 0 0 0 1px var(--line);
}

.subscribe-form input,
.subscribe-form button {
    min-height: 48px;
    border: 0;
    border-radius: 999px;
    font: inherit;
}

.subscribe-form input {
    min-width: 0;
    padding: 0 18px;
    color: var(--ink);
    background: transparent;
}

.subscribe-form input::placeholder {
    color: rgba(95, 107, 133, .7);
}

.subscribe-form button {
    padding: 0 24px;
    color: var(--ink);
    background: var(--paper);
    box-shadow: inset 0 0 0 1px var(--line);
    font-weight: 900;
}

.story-section {
    background: var(--paper);
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(300px, .85fr) minmax(0, 1fr);
    gap: 86px;
    align-items: center;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.story-stats span {
    display: grid;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.story-stats strong {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 46px;
    line-height: 1;
}

.dark-promo {
    color: var(--ink);
    background: var(--paper);
    box-shadow: inset 0 1px 0 var(--line), inset 0 -1px 0 var(--line);
}

.promo-grid {
    display: grid;
    grid-template-columns: 1.1fr .8fr auto;
    gap: 38px;
    align-items: end;
}

.dark-promo .eyebrow {
    color: var(--accent);
}

.dark-promo h2,
.dark-promo p {
    color: var(--ink);
}

.dark-promo p {
    max-width: 430px;
    color: var(--muted);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.simple-card {
    display: grid;
    align-content: start;
    min-height: 310px;
    padding: 32px;
    border-radius: var(--radius);
    background: var(--paper);
    border: 1px solid var(--line);
}

.simple-card span {
    color: var(--burgundy);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.simple-card strong {
    display: block;
    margin: 18px 0 12px;
    font-family: var(--serif);
    font-size: 34px;
    line-height: 1;
}

.review-grid blockquote {
    min-height: 280px;
    padding: 34px;
    border-radius: var(--radius);
    background: var(--paper);
}

.review-grid blockquote p {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 31px;
    line-height: 1.12;
}

.review-grid cite {
    color: var(--burgundy);
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.projects-section {
    background: var(--paper);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.project-tile {
    position: relative;
    display: grid;
    align-content: end;
    min-height: 390px;
    padding: 28px;
    overflow: hidden;
    border-radius: var(--radius);
    color: var(--ink);
    background: linear-gradient(180deg, rgba(255, 255, 255, .88), rgba(255, 255, 255, .95)), url("/assets/img/guide-flatlay.png") center / cover no-repeat;
    box-shadow: inset 0 0 0 1px var(--line);
}

.project-tile:nth-child(2n) {
    background-image: linear-gradient(180deg, rgba(255, 255, 255, .88), rgba(255, 255, 255, .95)), url("/assets/img/review-kit.png");
}

.project-tile span {
    color: var(--accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.project-tile strong {
    display: block;
    margin-top: 10px;
    font-family: var(--serif);
    font-size: 32px;
    line-height: 1;
}

.trend-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.trend-card {
    min-width: 0;
}

.trend-image {
    display: block;
    aspect-ratio: 4 / 5;
    margin-bottom: 18px;
    border-radius: var(--radius);
    background: url("/assets/img/review-kit.png") center / cover no-repeat;
}

.trend-card:nth-child(2n) .trend-image {
    background-image: url("/assets/img/guide-flatlay.png");
}

.trend-card h3 {
    font-size: 26px;
}

.contact-strip {
    padding: 82px 0;
    text-align: center;
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.contact-inner {
    display: grid;
    justify-items: center;
}

.contact-inner p {
    max-width: 520px;
}

.showcase-section {
    background: var(--paper);
}

.split-showcase {
    display: grid;
    grid-template-columns: minmax(300px, .9fr) minmax(0, 1fr);
    gap: 84px;
    align-items: center;
}

.showcase-media img,
.image-widget img {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
}

.showcase-media img {
    aspect-ratio: 1 / 1;
    box-shadow: 0 34px 80px rgba(15, 23, 42, .12);
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 26px 0;
}

.check-grid span {
    padding: 14px 16px;
    border-radius: var(--radius);
    background: var(--soft-pink);
    color: var(--burgundy);
    font-weight: 900;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 48px;
    align-items: start;
}

.section-heading {
    margin-bottom: 34px;
}

.centered {
    text-align: center;
}

.post-list {
    display: grid;
    gap: 26px;
}

.post-row {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 26px;
    padding: 22px;
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: 0 18px 44px rgba(15, 23, 42, .06);
}

.thumb,
.hero-image {
    display: block;
    border-radius: var(--radius);
    background: var(--soft) url("/assets/img/guide-flatlay.png") center / cover no-repeat;
}

.post-row:nth-child(2n) .thumb,
.guide-image {
    background-image: url("/assets/img/review-kit.png");
}

.thumb {
    min-height: 150px;
}

.post-row h2,
.post-row h3,
.article-card h2 {
    font-size: 36px;
}

.sidebar {
    display: grid;
    gap: 18px;
}

.widget,
.takeaways-box,
.feature-card,
.category-card,
.article-card {
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: none;
}

.widget {
    padding: 24px;
}

.image-widget {
    padding: 12px 12px 24px;
}

.image-widget h3,
.image-widget p,
.image-widget .text-link {
    margin-left: 12px;
    margin-right: 12px;
}

.widget h3 {
    font-size: 25px;
}

.dark-widget {
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
}

.dark-widget p {
    color: var(--muted);
}

.topic-link,
.site-footer a {
    display: block;
    padding: 8px 0;
    color: var(--muted);
    box-shadow: 0 1px 0 rgba(15, 23, 42, .08);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.category-card,
.article-card {
    padding: 28px;
}

.article-card {
    background: var(--paper);
    box-shadow: 0 18px 44px rgba(15, 23, 42, .06);
}

.category-card {
    display: grid;
    align-content: start;
    min-height: 280px;
    border: 1px solid rgba(15, 23, 42, .08);
}

.category-card h3,
.article-card h2 {
    font-size: 30px;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    display: inline-flex;
    width: fit-content;
    min-height: 44px;
    margin-bottom: 14px;
    padding: 0 22px;
    border-radius: 999px;
    color: var(--reverse);
    background: var(--burgundy);
    box-shadow: none;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
    transition: background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.category-pill:hover {
    color: var(--reverse);
    background: var(--accent);
}

.card-link {
    align-self: end;
    margin-top: 10px;
}

.quote-section {
    color: var(--ink);
    background: var(--paper);
    box-shadow: inset 0 1px 0 var(--line), inset 0 -1px 0 var(--line);
}

.quote-grid {
    display: grid;
    grid-template-columns: .7fr 1fr;
    gap: 60px;
    align-items: center;
}

.quote-section .eyebrow {
    color: var(--accent);
}

.quote-section h2 {
    color: var(--ink);
}

blockquote {
    margin: 0;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 50px;
    line-height: 1.12;
}

.clean-list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

.page-hero {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.site-header + .page-hero {
    padding-top: calc(82px + var(--header-offset));
}

.article-shell {
    background: var(--paper);
}

.article-hero {
    text-align: center;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.article-shell .article-hero .category-pill,
.guide-shell .article-hero .category-pill {
    background: var(--burgundy);
}

.site-header + .article-shell .article-hero,
.site-header + .guide-shell .article-hero {
    padding-top: calc(82px + var(--header-offset));
}

.article-meta {
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 14px;
}

.article-layout {
    display: grid;
    grid-template-columns: 210px minmax(0, 800px);
    gap: 44px;
    align-items: start;
    padding-top: 54px;
    padding-bottom: 82px;
}

.toc {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: var(--radius);
    background: var(--paper);
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 18px 44px rgba(15, 23, 42, .06);
    font-size: 14px;
}

.toc strong {
    color: var(--burgundy);
}

.toc a {
    color: var(--ink);
}

.article-content {
    font-size: 18px;
}

.article-content h2 {
    margin-top: 46px;
    font-size: 42px;
}

.article-content h3 {
    margin-top: 26px;
    font-size: 26px;
}

.hero-image {
    height: 390px;
    margin-bottom: 30px;
}

.takeaways-box {
    padding: 30px;
    background: var(--soft-pink);
    border: 1px solid var(--line);
}

.takeaways-box h2,
.takeaways-box h3,
.takeaways-box strong {
    color: var(--burgundy);
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pros-cons > div {
    padding: 24px;
    border-radius: var(--radius);
    background: var(--soft-pink);
    border: 1px solid var(--line);
}

.pros-cons strong,
.pros-cons h3 {
    color: var(--burgundy);
}

.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
}

table {
    width: 100%;
    min-width: 660px;
    border-collapse: collapse;
    background: var(--paper);
}

th,
td {
    padding: 15px;
    text-align: left;
    box-shadow: inset 0 -1px 0 rgba(15, 23, 42, .08);
}

th {
    color: var(--plum);
    background: var(--soft-pink);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.faq details {
    margin-bottom: 10px;
    padding: 16px 18px;
    border-radius: var(--radius);
    background: var(--paper);
    border: 1px solid var(--line);
}

.faq summary {
    cursor: pointer;
    font-weight: 900;
}

.article-footer {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 44px;
    padding-top: 22px;
    box-shadow: inset 0 1px 0 rgba(15, 23, 42, .08);
}

.article-footer a {
    padding: 5px 11px;
    border-radius: 999px;
    color: var(--reverse);
    background: var(--plum);
    border: 1px solid var(--plum);
}

.article-footer a:hover {
    color: var(--reverse);
    background: var(--burgundy);
    border-color: var(--burgundy);
}

.newsletter {
    padding: 66px 0;
    background: var(--paper);
    box-shadow: inset 0 1px 0 var(--line);
}

.newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
}

.newsletter h2 {
    font-size: 60px;
}

.site-footer {
    padding: 60px 0 30px;
    color: var(--muted);
    background: var(--paper);
    box-shadow: inset 0 1px 0 var(--line);
}

.site-footer p,
.site-footer a {
    color: var(--muted);
}

.site-footer a:not(:last-child) {
    box-shadow: 0 1px 0 rgba(15, 23, 42, .08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr .7fr;
    gap: 38px;
}

.footer-logo {
    margin-bottom: 16px;
    color: var(--ink);
}

.footer-logo .logo-mark {
    color: var(--ink);
    background: var(--paper);
    box-shadow: inset 0 0 0 1px var(--line);
}

.site-footer h3 {
    color: var(--ink);
    font-family: var(--serif);
}

.copyright {
    margin-top: 34px;
    padding-top: 19px;
    box-shadow: inset 0 1px 0 rgba(15, 23, 42, .08);
    font-size: 14px;
}

code {
    padding: 2px 6px;
    border-radius: 6px;
    background: var(--soft-pink);
    box-shadow: inset 0 0 0 1px var(--line);
}

@media (max-width: 1020px) {
    :root {
        --header-offset: 68px;
    }

    .menu-toggle {
        display: inline-block;
    }

    .main-nav {
        position: absolute;
        top: var(--header-offset);
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        border-radius: var(--radius);
        background: var(--paper);
        box-shadow: 0 24px 60px rgba(15, 23, 42, .12);
    }

    .main-nav.is-open {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    .content-grid,
    .article-layout,
    .newsletter-inner,
    .footer-grid,
    .split-showcase,
    .quote-grid,
    .guide-panel,
    .features-layout,
    .subscribe-inner,
    .story-grid,
    .promo-grid {
        grid-template-columns: 1fr;
    }

    .product-hero {
        min-height: auto;
        padding-top: 62px;
    }

    .hero-media {
        min-height: 430px;
    }

    .hero-media img {
        height: 430px;
    }

    .note-left {
        left: 18px;
        top: 24px;
    }

    .note-right {
        right: 18px;
        bottom: 24px;
    }

    .toc {
        position: static;
    }

    h1 {
        font-size: 72px;
    }

    h2,
    .newsletter h2 {
        font-size: 50px;
    }

    .card-grid,
    .benefit-grid,
    .review-grid,
    .project-grid,
    .trend-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-intro {
        position: static;
    }

    .feature-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .project-tile {
        min-height: 320px;
    }
}

@media (max-width: 680px) {
    .container,
    .narrow {
        width: min(100% - 24px, 1120px);
    }

    .main-nav {
        left: 12px;
        right: 12px;
    }

    .logo {
        font-size: 20px;
    }

    .logo-mark {
        width: 32px;
        height: 32px;
    }

    .hero,
    .page-hero,
    .article-hero {
        padding: 50px 0;
    }

    .product-hero {
        padding: 42px 0 34px;
    }

    .hero-copy {
        padding: 12px 0 0;
    }

    h1 {
        font-size: 46px;
        line-height: .98;
    }

    .hero p,
    .page-hero p {
        font-size: 16px;
    }

    h2,
    .newsletter h2,
    .article-content h2 {
        font-size: 34px;
    }

    h3,
    .category-card h3,
    .article-card h2,
    .post-row h2,
    .post-row h3 {
        font-size: 25px;
    }

    blockquote {
        font-size: 30px;
    }

    .hero-media {
        min-height: 340px;
        margin-top: 28px;
    }

    .hero-media img {
        height: 340px;
    }

    .floating-note {
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: auto;
        padding: 18px;
    }

    .note-left {
        display: none;
    }

    .note-right {
        top: auto;
        right: 16px;
    }

    .section {
        padding: 52px 0;
    }

    .feature-card,
    .category-card,
    .article-card,
    .widget {
        padding: 22px;
    }

    .image-widget {
        padding: 12px 12px 22px;
    }

    .post-row,
    .pros-cons,
    .card-grid,
    .benefit-grid,
    .check-grid,
    .feature-list,
    .review-grid,
    .project-grid,
    .trend-grid,
    .story-stats {
        grid-template-columns: 1fr;
    }

    .guide-panel,
    .features-layout,
    .story-grid {
        gap: 36px;
    }

    .feature-list a,
    .review-grid blockquote {
        min-height: 0;
        padding: 26px;
    }

    .feature-list strong,
    .review-grid blockquote p,
    .project-tile strong {
        font-size: 28px;
    }

    .subscribe-band {
        padding: 48px 0;
    }

    .subscribe-form {
        grid-template-columns: 1fr;
        border-radius: var(--radius);
    }

    .subscribe-form input,
    .subscribe-form button {
        border-radius: var(--radius);
    }

    .story-stats {
        gap: 12px;
    }

    .story-stats span {
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(15, 23, 42, .12);
    }

    .project-tile {
        min-height: 280px;
    }

    .contact-strip {
        padding: 56px 0;
    }

    .benefit-grid > div,
    .benefit-grid > div:last-child {
        min-height: 0;
        border: 0;
        border-top: 1px solid rgba(255, 255, 255, .12);
    }

    .post-row {
        padding: 14px;
    }

    .thumb {
        min-height: 210px;
    }

    .hero-image {
        height: 250px;
    }
}
