
:root { --paper: #fffaf2; --paper-deep: #e5f3ed; --ink: #263b56; --muted: #40516a; --red: #bf4da0; --blue: #4bb9bb; --yellow: #ffb523; --orange: #ffb523; --green: #a9d4bf; --line: rgba(38, 59, 86, .18); --serif: "Fraunces", Georgia, serif; --sans: "DM Sans", Arial, sans-serif; }
* { box-sizing: border-box; } html { scroll-behavior: smooth; } body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 16px; line-height: 1.6; } a { color: inherit; text-decoration: none; } img { display: block; max-width: 100%; }
.shell { width: min(1180px, calc(100% - 64px)); margin: 0 auto; } .site-header { position: relative; z-index: 10; border-bottom: 1px solid var(--line); background: var(--paper); } .nav-wrap { min-height: 106px; display: flex; align-items: center; justify-content: space-between; gap: 40px; width: min(1280px, calc(100% - 64px)); margin: auto; } .logo { width: 220px; display: block; } .logo img { width: 100%; } .site-nav { display: flex; align-items: center; gap: 34px; font-size: 17px; font-weight: 600; letter-spacing: .02em; } .site-nav a { position: relative; padding: 41px 0; } .site-nav a::after { content: ""; position: absolute; right: 0; bottom: 28px; left: 0; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; } .site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; } .nav-cta { border-bottom: 2px solid var(--ink); padding: 7px 0 !important; } .nav-cta::after { display: none; } .menu-toggle { display: none; border: 0; background: transparent; font: inherit; font-weight: 700; cursor: pointer; }
.eyebrow { margin: 0 0 20px; color: var(--red); font-size: 11px; font-weight: 700; letter-spacing: .13em; line-height: 1.3; text-transform: uppercase; } h1, h2, h3, p { margin-top: 0; } h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.04; } h1 { max-width: 680px; margin-bottom: 26px; font-size: clamp(3.7rem, 7vw, 6.7rem); letter-spacing: -.055em; } h1 em { color: var(--red); font-style: normal; } h2 { margin-bottom: 24px; font-size: clamp(2.5rem, 4.5vw, 4.5rem); letter-spacing: -.045em; } .lede { max-width: 535px; margin-bottom: 34px; color: var(--muted); font-size: 19px; line-height: 1.55; }
.home-hero { min-height: 680px; display: grid; grid-template-columns: 1fr .78fr; align-items: center; gap: 70px; padding-top: 75px; padding-bottom: 90px; } .hero-art { position: relative; min-height: 440px; overflow: hidden; background: var(--yellow); } .sun { position: absolute; top: 42px; right: 77px; width: 160px; height: 160px; border-radius: 50%; background: var(--orange); } .arch { position: absolute; bottom: -12px; border-radius: 180px 180px 0 0; } .arch-one { left: 32px; width: 280px; height: 330px; background: var(--blue); } .arch-two { right: 31px; width: 225px; height: 275px; background: var(--red); } .book { position: absolute; bottom: 60px; width: 185px; height: 130px; background: var(--paper); border: 2px solid var(--ink); box-shadow: 7px 8px 0 var(--ink); } .book-left { left: 72px; transform: skewY(8deg) rotate(-5deg); } .book-right { right: 54px; transform: skewY(-8deg) rotate(5deg); } .book-spine { position: absolute; bottom: 59px; left: 50%; width: 3px; height: 133px; background: var(--ink); transform: translateX(-50%); } .book::after { content: ""; position: absolute; top: 28px; right: 18px; left: 18px; height: 2px; background: var(--ink); box-shadow: 0 14px var(--ink), 0 28px var(--ink), 0 42px var(--ink); opacity: .5; } .art-note { position: absolute; z-index: 2; color: var(--ink); font-family: var(--serif); font-size: 18px; line-height: 1.05; } .note-one { top: 36px; left: 35px; } .note-two { right: 28px; bottom: 31px; text-align: right; }
.button { display: inline-flex; align-items: center; gap: 34px; padding: 15px 20px; border: 1px solid var(--ink); font-size: 13px; font-weight: 700; transition: transform .2s ease, box-shadow .2s ease; } .button:hover { transform: translate(-4px, -4px); box-shadow: 5px 5px 0 var(--ink); } .button-dark { color: var(--paper); background: var(--ink); } .button-light { color: var(--ink); background: var(--paper); border-color: var(--paper); } .button-light:hover { box-shadow: 5px 5px 0 var(--red); }
.intro-band { padding: 105px 0; background: var(--paper-deep); } .intro-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 50px; } .intro-grid h2 { max-width: 700px; } .intro-grid p:not(.eyebrow) { max-width: 650px; color: var(--muted); font-size: 18px; }
.category-section { padding-top: 115px; padding-bottom: 125px; } .section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 45px; } .section-heading h2 { max-width: 540px; margin-bottom: 0; } .text-link { display: inline-flex; gap: 15px; align-items: center; border-bottom: 1px solid var(--ink); padding-bottom: 5px; font-size: 13px; font-weight: 700; } .text-link span { font-size: 18px; } .category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; } .category-card { position: relative; min-height: 340px; display: flex; flex-direction: column; justify-content: end; overflow: hidden; padding: 25px; transition: transform .25s ease; } .category-card:hover { transform: translateY(-8px); } .category-card h3 { margin-bottom: 10px; font-size: 31px; } .category-card p { max-width: 190px; margin-bottom: 0; font-size: 14px; line-height: 1.45; } .category-number { position: absolute; top: 23px; left: 25px; font-size: 11px; font-weight: 700; } .circle-arrow { position: absolute; right: 20px; top: 18px; width: 38px; height: 38px; border: 1px solid currentColor; border-radius: 50%; display: grid; place-items: center; font-size: 18px; } .category-children { background: var(--red); } .category-puzzles { color: var(--ink); background: var(--blue); } .category-preschool { background: var(--yellow); } .category-teen { background: var(--green); }
.feature-band { padding: 110px 0; color: var(--paper); background: var(--ink); } .feature-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; } .feature-grid h2 { max-width: 530px; } .feature-grid p:not(.eyebrow) { max-width: 500px; margin-bottom: 32px; color: #c2c0b9; } .feature-image { position: relative; min-height: 450px; display: grid; place-items: center; overflow: hidden; color: var(--ink); background: var(--red); } .feature-image::before, .feature-image::after { content: ""; position: absolute; width: 240px; height: 240px; border-radius: 50%; background: var(--yellow); } .feature-image::before { top: -60px; right: -40px; } .feature-image::after { bottom: -100px; left: -55px; background: var(--blue); } .feature-image span { position: relative; z-index: 1; font-family: var(--serif); font-size: 52px; line-height: .9; text-align: center; } .note-section { padding: 115px 0 130px; } .note-section h2 { max-width: 730px; margin-bottom: 32px; }
.page-hero { padding: 105px 0 80px; border-bottom: 1px solid var(--line); } .page-hero h1 { max-width: 850px; } .page-hero p:not(.eyebrow) { max-width: 600px; color: var(--muted); font-size: 19px; } .page-content { padding: 90px 0 120px; } .book-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px 20px; } .book-card { border-top: 1px solid var(--ink); padding-top: 16px; } .book-cover { min-height: 330px; display: flex; align-items: end; padding: 28px; margin-bottom: 20px; } .book-cover h3 { max-width: 230px; margin: 0; font-size: 37px; } .cover-red { background: var(--red); } .cover-blue { color: var(--ink); background: var(--blue); } .cover-yellow { background: var(--yellow); } .cover-green { background: var(--green); } .book-card h3 { margin-bottom: 6px; font-size: 25px; } .book-card p { color: var(--muted); font-size: 14px; } .book-meta { color: var(--red); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
[data-page="contact.html"] .page-hero { padding-top: 25px; padding-bottom: 10px; }
[data-page="contact.html"] .page-hero h1 { margin-bottom: 12px; font-size: clamp(3rem, 5vw, 4.2rem); }
[data-page="contact.html"] .page-hero p:not(.eyebrow) { font-size: 16px; }
[data-page="contact.html"] .page-content { padding-top: 18px; }
[data-page="contact.html"] .contact-email { margin-top: 8px; margin-bottom: 20px; font-size: clamp(2rem, 3.5vw, 3.25rem); }
.journal-layout, .about-layout, .contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; } .journal-art { min-height: 500px; display: grid; place-items: center; background: var(--yellow); } .journal-art div { width: 255px; min-height: 355px; padding: 40px 25px; color: var(--paper); background: var(--red); box-shadow: 13px 13px 0 var(--blue); transform: rotate(-5deg); font-family: var(--serif); font-size: 38px; line-height: .92; } .content-copy h2 { margin-top: 40px; font-size: 37px; } .content-copy p, .content-copy li { color: var(--muted); } .content-copy ul { padding-left: 22px; } .contact-email { display: inline-block; margin: 12px 0 32px; color: var(--red); font-family: var(--serif); font-size: clamp(2rem, 4vw, 4rem); line-height: 1; word-break: break-word; } .contact-list { margin: 0; padding: 0; list-style: none; } .contact-list li { border-top: 1px solid var(--line); padding: 18px 0; } .contact-list span { display: block; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; } .legal-copy { max-width: 760px; } .legal-copy h2 { margin-top: 52px; font-size: 30px; } .legal-copy p { color: var(--muted); }
.site-footer { padding: 65px 0 25px; color: var(--paper); background: var(--ink); } .footer-top { display: flex; justify-content: space-between; gap: 50px; padding-bottom: 65px; } .footer-logo { width: 235px; } .footer-intro { max-width: 310px; margin-top: 20px; color: var(--paper); font-size: 14px; } .footer-links { display: flex; gap: 80px; } .footer-column { display: flex; flex-direction: column; gap: 10px; min-width: 120px; font-size: 13px; } .footer-column strong { margin-bottom: 9px; color: var(--yellow); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; } .footer-column a:hover { color: var(--yellow); } .footer-bottom { display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,250,242,.45); padding-top: 20px; color: var(--paper); font-size: 12px; } .socials { display: flex; gap: 12px; } .socials a { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid rgba(255,250,242,.8); border-radius: 50%; } .socials svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; } .socials .social-pinterest { fill: currentColor; stroke: none; } .socials a:hover { color: var(--yellow); border-color: var(--yellow); }
.reveal { animation: rise .7s both; } .reveal-delay { animation-delay: .16s; } @keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 800px) { .shell, .nav-wrap { width: min(100% - 40px, 600px); } .nav-wrap { min-height: 72px; } .logo { width: 190px; } .menu-toggle { display: block; } .site-nav { position: absolute; top: 72px; right: 20px; left: 20px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 20px; background: var(--paper); border: 1px solid var(--line); box-shadow: 5px 5px 0 var(--ink); } .site-nav.is-open { display: flex; } .site-nav a { padding: 12px 0; } .site-nav a::after { bottom: 7px; } .home-hero, .intro-grid, .feature-grid, .journal-layout, .about-layout, .contact-layout { grid-template-columns: 1fr; gap: 45px; } .home-hero { padding-top: 65px; } .hero-art { min-height: 380px; } .category-grid, .book-grid { grid-template-columns: repeat(2, 1fr); } .section-heading, .footer-top, .footer-bottom { align-items: start; flex-direction: column; } .footer-links { gap: 35px; flex-wrap: wrap; } .page-hero { padding-top: 70px; } }
@media (max-width: 480px) { h1 { font-size: 3.5rem; } .category-grid, .book-grid { grid-template-columns: 1fr; } .category-card { min-height: 280px; } .book-cover { min-height: 300px; } .feature-image { min-height: 340px; } .footer-links { display: grid; grid-template-columns: 1fr 1fr; width: 100%; } .footer-bottom { gap: 15px; } }
