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

:root {
  --ink: #092f38;
  --deep: #073d49;
  --cream: #f6f0e4;
  --paper: #fffaf0;
  --coral: #f26b4f;
  --orange: #f1a33a;
  --aqua: #75c8c4;
  --sky: #a8d8db;
  --line: rgba(9, 47, 56, .16);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'DM Sans', Arial, sans-serif;
  --shadow: 0 24px 70px rgba(6, 45, 53, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: var(--sans); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
img, svg { max-width: 100%; }
button, input { font: inherit; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: fixed; z-index: 100; top: 8px; left: 8px; padding: 10px 16px; background: white; transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.site-header { position: absolute; z-index: 10; top: 0; width: 100%; color: var(--paper); }
.header-inner { height: 104px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.24); }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; line-height: .9; }
.brand-mark { position: relative; display: block; width: 42px; height: 42px; overflow: hidden; border: 1.5px solid currentColor; border-radius: 50%; }
.brand-mark::before { content: ''; position: absolute; width: 18px; height: 18px; top: 7px; left: 11px; border-radius: 50%; background: var(--orange); }
.brand-mark::after { content: ''; position: absolute; width: 58px; height: 25px; top: 25px; left: -8px; border-radius: 50%; border-top: 2px solid currentColor; box-shadow: 0 -7px 0 -5px currentColor; }
.brand-type { display: grid; gap: 4px; text-transform: uppercase; letter-spacing: .08em; }
.brand-type strong { font-size: 10px; font-weight: 500; }
.brand-type b { font-family: var(--serif); font-size: 20px; letter-spacing: .01em; }
.site-nav { display: flex; align-items: center; gap: 34px; font-size: 13px; font-weight: 600; }
.site-nav a { text-decoration: none; }
.site-nav a:not(.nav-cta):hover { color: #f7be63; }
.nav-cta { border: 1px solid rgba(255,255,255,.7); border-radius: 999px; padding: 9px 18px; transition: .2s; }
.nav-cta:hover { color: var(--ink); background: var(--paper); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle > span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px; background: currentColor; }

.eyebrow { margin: 0 0 22px; display: flex; align-items: center; gap: 11px; color: var(--coral); font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow > span { width: 27px; height: 1px; background: currentColor; }
.eyebrow-light { color: #f7bd69; }
h1, h2 { font-family: var(--serif); letter-spacing: -.045em; line-height: .96; }
h1 em, h2 em { color: var(--coral); font-weight: inherit; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 30px; min-height: 52px; padding: 0 24px; border-radius: 3px; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-decoration: none; text-transform: uppercase; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(6,45,53,.15); }
.button-primary { color: white; background: var(--coral); }
.button-dark { color: white; background: var(--ink); }

.hero { position: relative; overflow: hidden; color: var(--paper); background: var(--deep); }
.hero::before { content: ''; position: absolute; inset: 0; opacity: .075; background-image: linear-gradient(30deg, transparent 47%, #fff 48%, #fff 49%, transparent 50%); background-size: 15px 15px; mask-image: linear-gradient(to right, transparent, #000 60%); }
.hero-grid { position: relative; min-height: 720px; padding-top: 160px; padding-bottom: 100px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { max-width: 650px; margin: 0 0 28px; font-size: clamp(58px, 7.2vw, 101px); }
.hero h1 em { display: block; color: #f7bd69; }
.hero-lede { max-width: 550px; margin: 0 0 36px; color: rgba(255,250,240,.76); font-size: 18px; }
.hero-actions { display: flex; align-items: center; gap: 32px; }
.text-link { font-size: 12px; font-weight: 700; letter-spacing: .04em; text-underline-offset: 5px; text-transform: uppercase; }
.hero-art { position: relative; min-height: 480px; }
.sun-disc { position: absolute; width: 360px; height: 360px; top: 35px; right: -80px; border-radius: 50%; background: #ef9a38; opacity: .9; }
.postcard { position: absolute; overflow: hidden; color: var(--ink); background: var(--paper); box-shadow: var(--shadow); }
.postcard-main { width: 355px; height: 430px; top: 5px; left: 10px; padding: 15px; transform: rotate(-5deg); }
.postcard-main::after { content: ''; position: absolute; inset: 8px; border: 1px solid rgba(9,47,56,.25); pointer-events: none; }
.postcard-sky { position: relative; height: 55%; overflow: hidden; background: #aedbd9; }
.postcard-sun { position: absolute; width: 96px; height: 96px; right: 40px; bottom: -25px; border-radius: 50%; background: #f59b3a; }
.bird { position: absolute; width: 18px; height: 8px; border-top: 1.5px solid var(--ink); border-radius: 50%; }
.bird::after { content: ''; position: absolute; width: 18px; height: 8px; left: 13px; top: -2px; border-top: 1.5px solid var(--ink); border-radius: 50%; }
.bird-one { left: 60px; top: 70px; }.bird-two { left: 120px; top: 42px; transform: scale(.7); }
.postcard-water { position: absolute; inset: 54% 15px 79px; background: #4da6ac; }
.postcard-water span { position: relative; display: block; width: 70%; height: 1px; margin: 16px auto; background: rgba(255,255,255,.6); }
.postcard-water span:nth-child(2) { width: 43%; margin-left: 15%; }
.postcard-shore { position: absolute; height: 66px; inset: auto 15px 64px; background: #e9c98a; clip-path: polygon(0 35%, 45% 12%, 100% 42%, 100% 100%, 0 100%); }
.postcard-main p { position: absolute; z-index: 3; right: 22px; bottom: 15px; left: 22px; margin: 0; display: flex; justify-content: space-between; font-size: 9px; font-weight: 700; letter-spacing: .13em; }
.postcard-main p span { font-weight: 500; }
.postcard-small { width: 170px; height: 128px; right: -16px; bottom: 6px; display: grid; place-items: center; border: 9px solid #f5e9d4; background: var(--coral); transform: rotate(8deg); }
.postcard-small span { color: var(--paper); font-family: var(--serif); font-size: 18px; font-weight: 700; line-height: 1.05; text-align: center; }
.hero-stamp { position: absolute; z-index: 3; left: -32px; bottom: 10px; width: 110px; height: 110px; display: grid; place-content: center; border: 2px dashed var(--paper); border-radius: 50%; color: var(--paper); text-align: center; transform: rotate(-10deg); }
.hero-stamp::before { content: ''; position: absolute; inset: 5px; border: 1px solid var(--paper); border-radius: 50%; }
.hero-stamp b { font-family: var(--serif); font-size: 19px; }.hero-stamp span { font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.hero-ticker { position: relative; overflow: hidden; padding: 13px 0; color: var(--ink); background: #f3b24c; font-size: 10px; font-weight: 700; letter-spacing: .18em; white-space: nowrap; }
.hero-ticker div { width: max-content; animation: ticker 35s linear infinite; }.hero-ticker span { margin: 0 28px; }
@keyframes ticker { to { transform: translateX(-40%); } }

.category-section { padding: 120px 0 132px; background: var(--cream); }
.section-heading { margin-bottom: 55px; display: grid; grid-template-columns: 1fr 360px; align-items: end; gap: 60px; }
.section-heading h2 { max-width: 700px; margin: 0; font-size: clamp(45px, 6vw, 76px); }
.section-heading > p { margin: 0 0 6px; color: #5e7376; }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.category-card { position: relative; min-height: 350px; padding: 26px 25px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-decoration: none; transition: color .25s, background .25s, transform .25s; }
.category-card::before { content: ''; position: absolute; inset: 0; background: var(--card-color, var(--coral)); transform: scaleY(0); transform-origin: bottom; transition: transform .3s ease; }
.category-card > * { position: relative; z-index: 1; }
.category-card:hover { color: white; transform: translateY(-5px); }.category-card:hover::before { transform: scaleY(1); }
.card-number { color: #7a8c8d; font-size: 10px; font-weight: 600; letter-spacing: .12em; }
.category-card:hover .card-number { color: rgba(255,255,255,.7); }
.category-icon { position: relative; width: 64px; height: 64px; margin: 38px 0 32px; display: block; border: 1.5px solid currentColor; border-radius: 50%; }
.category-icon::before, .category-icon::after { content: ''; position: absolute; }
.icon-fork::before { width: 3px; height: 34px; left: 24px; top: 15px; background: currentColor; box-shadow: 13px 0 0 currentColor; }.icon-fork::after { width: 13px; height: 16px; left: 19px; top: 10px; border: 2px solid currentColor; border-top: 0; border-radius: 0 0 8px 8px; }
.icon-moon::before { width: 28px; height: 28px; left: 15px; top: 14px; border-radius: 50%; background: currentColor; }.icon-moon::after { width: 27px; height: 27px; left: 24px; top: 8px; border-radius: 50%; background: var(--cream); }.category-card:hover .icon-moon::after, .more-card:hover .icon-moon::after { background: var(--card-color); }
.icon-ticket::before { width: 34px; height: 23px; left: 13px; top: 19px; border: 2px solid currentColor; transform: rotate(-10deg); }.icon-ticket::after { width: 2px; height: 15px; left: 30px; top: 23px; border-left: 2px dashed currentColor; transform: rotate(-10deg); }
.icon-sun::before { width: 26px; height: 26px; left: 18px; top: 18px; border: 2px solid currentColor; border-radius: 50%; }.icon-sun::after { inset: 9px; border: 2px dotted currentColor; border-radius: 50%; }
.icon-bag::before { width: 30px; height: 28px; left: 15px; top: 22px; border: 2px solid currentColor; }.icon-bag::after { width: 15px; height: 12px; left: 23px; top: 14px; border: 2px solid currentColor; border-bottom: 0; border-radius: 10px 10px 0 0; }
.icon-kite::before { width: 25px; height: 25px; left: 18px; top: 13px; border: 2px solid currentColor; transform: rotate(45deg); }.icon-kite::after { width: 20px; height: 20px; left: 32px; top: 37px; border-left: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: skew(-25deg); }
.icon-spark::before { width: 35px; height: 35px; left: 13px; top: 13px; background: currentColor; clip-path: polygon(50% 0,61% 37%,100% 50%,61% 61%,50% 100%,39% 61%,0 50%,39% 37%); }.icon-spark::after { width: 12px; height: 12px; right: 9px; top: 8px; background: currentColor; clip-path: polygon(50% 0,62% 38%,100% 50%,62% 62%,50% 100%,38% 62%,0 50%,38% 38%); }
.icon-hand::before { width: 26px; height: 31px; left: 18px; top: 17px; border: 2px solid currentColor; border-radius: 8px 8px 15px 15px; }.icon-hand::after { width: 18px; height: 2px; left: 22px; top: 28px; background: currentColor; box-shadow: 0 7px 0 currentColor; }
.card-copy { margin-top: auto; display: grid; }
.card-copy small { margin-bottom: 4px; color: var(--card-color); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }.category-card:hover .card-copy small { color: rgba(255,255,255,.8); }
.card-copy strong { margin-bottom: 12px; font-family: var(--serif); font-size: 26px; line-height: 1.1; }
.card-copy > span { color: #64777a; font-size: 13px; line-height: 1.55; }.category-card:hover .card-copy > span { color: rgba(255,255,255,.8); }
.card-arrow { position: absolute; right: 22px; bottom: 20px; opacity: 0; font-size: 24px; transform: translate(-8px,8px); transition: .25s; }.category-card:hover .card-arrow { opacity: 1; transform: none; }
.accent-coral { --card-color: #e9674e; }.accent-navy { --card-color: #174e63; }.accent-gold { --card-color: #d9912d; }.accent-aqua { --card-color: #3c9692; }.accent-rose { --card-color: #bd5b69; }.accent-sky { --card-color: #478ba7; }.accent-violet { --card-color: #715b8c; }.accent-green { --card-color: #467c63; }

.manifesto { overflow: hidden; color: var(--paper); background: var(--ink); }
.manifesto-grid { min-height: 720px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; align-items: center; }
.manifesto-art { position: relative; align-self: stretch; display: grid; place-content: center; background: #0f5360; }
.manifesto-art::before { content: ''; position: absolute; inset: 0; opacity: .12; background-image: radial-gradient(#fff 1px, transparent 1px); background-size: 12px 12px; }
.arch-window { position: absolute; width: 265px; height: 390px; top: 100px; left: 50%; overflow: hidden; border-radius: 140px 140px 0 0; background: #76c6c2; transform: translateX(-50%); }
.arch-sun { position: absolute; width: 130px; height: 130px; top: 98px; left: 68px; border-radius: 50%; background: #f4a642; }
.arch-window i { position: absolute; inset: 57% 0 0; background: #287f8c; clip-path: polygon(0 21%,27% 7%,58% 24%,100% 3%,100% 100%,0 100%); }
.arch-window b { position: absolute; inset: 74% 0 0; background: #eacb91; clip-path: polygon(0 28%,41% 2%,100% 21%,100% 100%,0 100%); }
.manifesto-art p { position: relative; z-index: 2; margin: 0; font-family: var(--serif); font-size: 61px; font-weight: 700; line-height: .92; transform: rotate(-6deg); text-shadow: 0 3px 0 rgba(9,47,56,.2); }.manifesto-art p em { color: #f5b257; }
.manifesto-copy { padding: 100px 0; }
.manifesto-copy h2 { margin: 0 0 32px; font-size: clamp(54px, 6vw, 82px); }.manifesto-copy h2 em { color: #f5b257; }
.manifesto-copy > p:not(.eyebrow) { max-width: 570px; margin: 0 0 42px; color: rgba(255,250,240,.7); font-size: 18px; }
.principles { border-top: 1px solid rgba(255,255,255,.15); }
.principles > div { padding: 19px 0; display: grid; grid-template-columns: 50px 1fr; border-bottom: 1px solid rgba(255,255,255,.15); }
.principles b { color: #f5b257; font-size: 10px; letter-spacing: .12em; }.principles span { color: rgba(255,255,255,.55); font-size: 13px; }.principles strong { display: block; margin-bottom: 2px; color: white; font-size: 14px; }

.newsletter { padding: 85px 0; background: #f2b24c; }
.newsletter-inner { display: grid; grid-template-columns: 1fr minmax(390px, .72fr); align-items: end; gap: 65px; }
.newsletter .eyebrow { color: var(--ink); }.newsletter h2 { max-width: 740px; margin: 0; font-size: clamp(40px, 5vw, 65px); }
.newsletter-signup { min-width: 0; }
.newsletter-form { position: relative; }
.newsletter-field { display: flex; align-items: stretch; box-shadow: 0 14px 35px rgba(6,45,53,.12); }
.newsletter-field input { min-width: 0; flex: 1; height: 56px; margin: 0; padding: 0 20px; border: 1px solid rgba(9,47,56,.2); border-right: 0; border-radius: 3px 0 0 3px; outline: 0; color: var(--ink); background: var(--paper); font: 500 14px var(--sans); }
.newsletter-field input:focus { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.newsletter-field input::placeholder { color: #6e7e7f; }
.newsletter-field .button { min-width: 155px; height: 56px; border: 0; border-radius: 0 3px 3px 0; cursor: pointer; }
.form-consent { margin: 11px 0 0; color: rgba(9,47,56,.72); font-size: 10px; line-height: 1.45; }
.form-honeypot { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.form-notice { margin: 0 0 12px; padding: 10px 13px; border-left: 3px solid var(--ink); background: rgba(255,250,240,.58); font-size: 13px; font-weight: 600; }
.form-error { border-color: #9b2f25; color: #76251f; }

.site-footer { padding: 80px 0 28px; color: rgba(255,255,255,.7); background: #052e37; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 70px; }
.brand-footer { color: white; }.footer-grid > div:first-child p { max-width: 390px; margin: 25px 0 0; font-size: 14px; }
.footer-links { display: grid; align-content: start; gap: 9px; font-size: 13px; }.footer-links span { margin-bottom: 8px; color: #f3ad47; font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }.footer-links a { text-decoration: none; }.footer-links a:hover { color: white; }
.footer-bottom { margin-top: 70px; padding-top: 20px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.12); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

.category-hero { position: relative; overflow: hidden; padding: 190px 0 110px; color: white; background: var(--card-color); }
.category-hero::before { content: ''; position: absolute; width: 550px; height: 550px; right: -80px; top: 20px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.03), 0 0 0 140px rgba(255,255,255,.03); }
.category-hero-inner { position: relative; display: grid; grid-template-columns: 1fr 340px; align-items: center; gap: 70px; }
.back-link { display: inline-flex; gap: 10px; margin-bottom: 54px; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.category-hero .eyebrow { margin-bottom: 17px; color: rgba(255,255,255,.72); }
.category-hero h1 { margin: 0 0 28px; font-size: clamp(62px, 8vw, 105px); }.category-hero h1 em { color: #ffe0a4; }
.category-hero-inner > div:first-child > p:last-child { max-width: 660px; color: rgba(255,255,255,.8); font-size: 19px; }
.category-hero-mark { position: relative; width: 290px; height: 290px; display: grid; place-content: center; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; }
.category-hero-mark::before { content: ''; position: absolute; inset: 13px; border: 1px dashed rgba(255,255,255,.35); border-radius: 50%; }
.category-hero-mark .category-icon { width: 95px; height: 95px; margin: 0 auto 18px; transform: scale(1.25); }
.category-hero-mark i { font-family: var(--serif); font-size: 14px; font-style: normal; letter-spacing: .12em; line-height: 1.1; text-align: center; }
.category-hero .icon-moon::after { background: var(--card-color); }
.coming-soon { padding: 120px 0; background: var(--cream); }
.coming-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 110px; }
.coming-grid h2 { max-width: 600px; margin: 0; font-size: clamp(48px, 6vw, 75px); }
.coming-copy { padding-top: 42px; }.coming-copy p { max-width: 540px; color: #5e7376; font-size: 17px; }.coming-copy .button { margin-top: 25px; }
.more-guides { padding: 100px 0 120px; background: #e9e1d3; }.section-heading.compact { grid-template-columns: 1fr; margin-bottom: 42px; }.section-heading.compact h2 { font-size: clamp(40px,5vw,58px); }
.more-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }.more-card { --card-color: var(--coral); min-height: 175px; padding: 26px; display: grid; grid-template-columns: auto 1fr auto; align-items: end; gap: 18px; background: var(--paper); text-decoration: none; transition: .25s; }.more-card:hover { color: white; background: var(--card-color); transform: translateY(-4px); }.more-card .category-icon { width: 46px; height: 46px; margin: 0; transform: scale(.75); transform-origin: bottom left; }.more-card strong { font-family: var(--serif); font-size: 23px; }.more-card i { font-size: 23px; font-style: normal; }
.not-found { min-height: 75vh; padding: 210px 0 120px; color: white; background: var(--deep); }.not-found h1 { max-width: 800px; margin: 0 0 28px; font-size: clamp(60px,8vw,100px); }.not-found p:not(.eyebrow) { margin-bottom: 35px; color: rgba(255,255,255,.7); font-size: 18px; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; padding-bottom: 40px; }.hero-copy { max-width: 750px; }.hero-art { width: min(540px,100%); margin: 0 auto; }.category-grid { grid-template-columns: repeat(2,1fr); }.manifesto-grid { gap: 60px; }.manifesto-art p { font-size: 45px; }.category-hero-inner { grid-template-columns: 1fr 250px; }.category-hero-mark { width: 230px; height: 230px; }
}

@media (max-width: 720px) {
  .shell { width: min(100% - 30px, 1180px); }.header-inner { height: 82px; }.menu-toggle { z-index: 2; display: block; color: white; }.site-nav { position: absolute; top: 70px; right: 15px; left: 15px; padding: 22px; display: none; align-items: stretch; gap: 17px; border: 1px solid rgba(255,255,255,.2); background: #052e37; box-shadow: var(--shadow); }.site-nav.is-open { display: flex; flex-direction: column; }.nav-cta { text-align: center; }
  .hero-grid { min-height: auto; padding-top: 135px; gap: 45px; }.hero h1 { font-size: clamp(52px,16vw,74px); }.hero-lede { font-size: 16px; }.hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }.hero-art { min-height: 390px; }.postcard-main { width: 275px; height: 350px; left: 4%; }.postcard-small { width: 135px; height: 105px; right: 0; }.sun-disc { width: 280px; height: 280px; }.hero-stamp { width: 84px; height: 84px; left: 0; }.hero-stamp b { font-size: 15px; }
  .category-section { padding: 80px 0; }.section-heading { grid-template-columns: 1fr; gap: 25px; margin-bottom: 38px; }.section-heading h2 { font-size: 49px; }.category-grid { grid-template-columns: 1fr; }.category-card { min-height: 260px; }.category-icon { margin: 23px 0; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 0; }.manifesto-art { min-height: 520px; }.arch-window { top: 65px; }.manifesto-copy { padding: 78px 0; }.manifesto-copy h2 { font-size: 55px; }
  .newsletter { padding: 65px 0; }.newsletter-inner { grid-template-columns: 1fr; align-items: start; gap: 35px; }.newsletter h2 { font-size: 43px; }.newsletter-field { flex-direction: column; box-shadow: none; }.newsletter-field input { width: 100%; min-height: 56px; flex: none; border-right: 1px solid rgba(9,47,56,.2); border-radius: 3px 3px 0 0; }.newsletter-field .button { width: 100%; border-radius: 0 0 3px 3px; }
  .footer-grid { grid-template-columns: 1fr; gap: 42px; }.footer-bottom { gap: 15px; flex-direction: column; }
  .category-hero { padding: 140px 0 80px; }.category-hero-inner { grid-template-columns: 1fr; }.category-hero-mark { width: 190px; height: 190px; }.back-link { margin-bottom: 38px; }.category-hero h1 { font-size: 63px; }.coming-soon { padding: 80px 0; }.coming-grid { grid-template-columns: 1fr; gap: 35px; }.coming-grid h2 { font-size: 50px; }.coming-copy { padding: 0; }.more-grid { grid-template-columns: 1fr; }.more-guides { padding: 75px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
