@font-face {
  font-family: "Vintage Goods";
  src: url("fonts/vintage-goods.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Boston Angel";
  src: url("fonts/boston-angel-regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Boston Angel";
  src: url("fonts/boston-angel-bold.woff") format("woff");
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
}

:root {
  --green: #2f6f45;
  --green-dark: #173f31;
  --navy: #102640;
  --yellow: #f6bd4e;
  --cream: #fff8e8;
  --paper: #fffdf6;
  --teal: #486f72;
  --teal-light: #dce9e6;
  --yellow-light: #fff0bd;
  --ink: #17231f;
  --muted: #000000;
  --line: rgba(23, 63, 49, 0.18);
  --shadow: 0 18px 42px rgba(16, 38, 64, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Boston Angel", Georgia, serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 10px clamp(18px, 4vw, 52px);
  background: var(--teal);
  border-bottom: 4px solid var(--yellow);
  backdrop-filter: blur(14px);
}

.brand {
  display: block;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-wordmark {
  color: var(--paper);
  font-family: "Vintage Goods", "Brush Script MT", cursive;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 24px);
  color: var(--paper);
  font-size: 1.05rem;
}

.nav a {
  text-decoration: none;
  font-weight: 700;
}

.nav a:hover {
  color: var(--yellow);
}

.nav .button {
  color: var(--paper);
}

.mobile-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 253, 246, 0.6);
  border-radius: 6px;
  background: transparent;
  color: var(--paper);
  font-size: 1.35rem;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(44px, 7vw, 86px) clamp(18px, 5vw, 72px);
  background: var(--yellow);
  border-bottom: 1px solid rgba(16, 38, 64, 0.16);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-family: "Boston Angel", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Boston Angel", Georgia, serif;
  line-height: 1.04;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.25rem, 8vw, 7.4rem);
  letter-spacing: 0;
}

.script-word {
  display: block;
  color: var(--green);
  font-family: "Vintage Goods", "Brush Script MT", cursive;
  font-weight: 400;
}

.hero-copy {
  max-width: 640px;
  margin: 22px 0 0;
  color: #21342d;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.hero-brand {
  display: grid;
  place-items: center;
}

.hero-brand img {
  width: min(560px, 100%);
  height: auto;
}

.hero-message {
  align-self: center;
  text-align: center;
}

.hero-message .hero-copy {
  margin-top: 0;
}

.hero-message .hero-actions {
  justify-content: center;
}

.contact-logo {
  width: min(390px, 86vw);
  margin: 0 auto 36px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 2px solid var(--green-dark);
  border-radius: 6px;
  background: var(--green-dark);
  color: var(--paper);
  font-weight: 800;
  font-family: "Boston Angel", Georgia, serif;
  font-size: 1.05rem;
  text-decoration: none;
  line-height: 1.1;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
}

.is-disabled {
  opacity: 0.7;
  cursor: default;
  pointer-events: none;
}

.text-link {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.button.secondary {
  background: transparent;
  color: var(--green-dark);
}

.hero .button,
.two-paths .button {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--paper);
}

.button.light {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--green-dark);
}

.hero-art {
  display: grid;
  place-items: center;
  min-height: 430px;
}

.hero-art img {
  width: min(560px, 100%);
  max-height: 72vh;
  object-fit: contain;
  filter: drop-shadow(18px 22px 0 rgba(16, 38, 64, 0.1));
}

.page-hero {
  position: relative;
  isolation: isolate;
  padding: clamp(48px, 8vw, 90px) clamp(18px, 5vw, 72px);
  background: var(--yellow);
  border-bottom: 1px solid var(--line);
}

.photo-hero {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background-position: center;
  background-size: cover;
  color: var(--paper);
}

.photo-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: rgba(16, 38, 64, 0.62);
}

.photo-hero h1,
.photo-hero .script-word,
.photo-hero .eyebrow,
.photo-hero p {
  color: var(--paper);
}

.photo-hero h1 {
  font-size: 9rem;
  line-height: 0.95;
}

.tile-library-hero {
  background-image: url("lifestyle-teal-table.png");
}

.tile-library-hero .button-row {
  justify-content: center;
  width: 100%;
}

.tile-library-hero .button {
  border-color: var(--paper);
  background: var(--teal);
  color: var(--paper);
  box-shadow: 0 8px 18px rgba(16, 38, 64, 0.32);
}

.library-pricing-band {
  padding: 34px clamp(18px, 5vw, 72px);
  border-top: 6px solid var(--yellow);
  border-bottom: 1px solid var(--line);
  background: #f5efc9;
}

.library-pricing-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 54px);
  max-width: 1320px;
  margin: 0 auto;
}

.library-pricing-heading h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.library-pricing-option {
  padding-left: clamp(20px, 3vw, 38px);
  border-left: 2px solid var(--teal);
}

.library-pricing-option h3 {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.library-pricing-option h3 span {
  color: var(--green-dark);
  font-size: 0.82em;
}

.library-pricing-option p {
  margin: 10px 0 12px;
}

.library-pricing-option ul {
  margin: 0;
  padding-left: 20px;
}

.library-pricing-option li {
  margin: 5px 0;
}

.lessons-hero {
  background-image: url("lifestyle-green-overhead.png");
  background-position: center 84%;
}

.lessons-hero .button-row {
  justify-content: center;
  width: 100%;
}

.lessons-hero .button {
  border-color: var(--paper);
  background: var(--teal);
  color: var(--paper);
  box-shadow: 0 8px 18px rgba(16, 38, 64, 0.32);
}

.lets-play-brand-hero {
  display: grid;
  justify-items: center;
  padding: clamp(34px, 6vw, 68px) 18px 46px;
  background: #ffffff;
  border-bottom: 5px solid var(--yellow);
  text-align: center;
}

.lets-play-brand-hero > img {
  width: min(430px, 86vw);
  height: auto;
}

.lets-play-brand-hero > p {
  max-width: 700px;
  margin: 20px 0 0;
  color: var(--ink);
  font-size: 1.16rem;
}

.lets-play-brand-hero .button-row {
  justify-content: center;
}

.lets-play-brand-hero .button {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--paper);
}

.lessons-photo-banner img {
  object-position: center 56%;
}

.tile-library-brand-hero {
  display: grid;
  justify-items: center;
  padding: clamp(34px, 6vw, 68px) 18px 46px;
  background: var(--teal);
  border-bottom: 5px solid var(--yellow);
  color: var(--paper);
  text-align: center;
}

.tile-library-brand-hero > img {
  width: min(430px, 86vw);
  height: auto;
}

.tile-library-brand-hero > p {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--paper);
  font-size: 1.16rem;
}

.tile-library-brand-hero .button-row {
  justify-content: center;
}

.tile-library-brand-hero .button {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--teal);
}

.tile-library-photo-banner img {
  object-position: center 42%;
}

.how-hero {
  background-image: url("lifestyle-lemon-table.png");
}

.about-hero {
  background-image: url("annie-about.png");
  background-position: center 32%;
}

.about-hero .eyebrow {
  margin-bottom: 28px;
}

.lifestyle-strip {
  height: 220px;
  border-top: 6px solid var(--green-dark);
  border-bottom: 6px solid var(--green-dark);
  overflow: hidden;
}

.lifestyle-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.lower-home-banner img {
  object-position: center 74%;
}

.wide-photo-banner {
  height: clamp(280px, 38vw, 480px);
  border-top: 6px solid var(--yellow);
}

.wide-photo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-story-layout + .wide-photo-banner img {
  object-position: center 43%;
}

.about-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: center;
  gap: clamp(32px, 7vw, 90px);
}

.about-story-copy {
  max-width: 760px;
}

.about-story-copy h2 {
  margin-bottom: 24px;
}

.about-story-copy p {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.7;
}

.about-story-aside {
  padding-left: clamp(18px, 4vw, 46px);
  border-left: 6px solid var(--yellow);
}

.about-story-aside .annie-portrait {
  width: 154px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 3px solid var(--paper);
  border-bottom: 7px solid var(--yellow);
  box-shadow: 0 10px 24px rgba(16, 38, 64, 0.14);
}

.about-story-aside p {
  max-width: 320px;
  margin: 18px 0 0;
  color: var(--green-dark);
  font-size: 1.35rem;
  font-weight: 800;
}

.about-cta {
  background-image: url("lifestyle-bonjour-room.png");
  background-position: center 62%;
}

.about-cta .button-row {
  justify-content: center;
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 1.18rem;
}

.section {
  padding: clamp(44px, 7vw, 82px) clamp(18px, 5vw, 72px);
  border-top: 5px solid var(--yellow);
}

.section.alt {
  background: var(--teal-light);
  border-top-color: var(--teal);
}

.section.navy {
  background: var(--navy);
  color: var(--paper);
  border-top-color: var(--yellow);
}

.section.navy h2,
.section.navy h3,
.section.navy .eyebrow {
  color: var(--paper);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-header p {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--muted);
}

.booking-intro {
  max-width: 780px;
  margin-bottom: 28px;
}

.booking-intro > p:last-child,
.scheduled-events > p:not(.eyebrow):not(.event-status) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
}

.casual-offerings {
  max-width: 900px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--green-dark);
}

.casual-offerings li {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) 1fr;
  gap: 22px;
  padding: 18px 4px;
  border-bottom: 1px solid rgba(23, 63, 49, 0.3);
}

.casual-offerings strong {
  color: var(--green-dark);
  font-size: 1.2rem;
}

.casual-offerings span {
  color: var(--muted);
}

.compact-section {
  padding-top: clamp(34px, 5vw, 58px);
  padding-bottom: clamp(34px, 5vw, 58px);
}

.process-list {
  max-width: 920px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--green-dark);
}

.process-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(23, 63, 49, 0.3);
}

.process-list li > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--yellow);
  color: var(--green-dark);
  font-weight: 900;
}

.process-list strong {
  color: var(--navy);
  font-size: 1.18rem;
}

.process-list p {
  margin: 3px 0 0;
  color: var(--ink);
}

.process-followup {
  max-width: 920px;
  margin-top: 24px;
  padding: 22px 24px;
  border-left: 7px solid var(--yellow);
  background: var(--teal-light);
}

.process-followup p {
  margin: 0 0 10px;
  color: var(--ink);
}

.process-followup p:last-of-type {
  margin-bottom: 18px;
}

.process-followup .button {
  border-color: var(--teal);
  background: var(--teal);
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}

.essentials-list {
  margin-top: 26px;
}

.delivery-list {
  max-width: 920px;
  margin-top: 26px;
  border-top: 2px solid var(--green-dark);
}

.delivery-list > div {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) 1fr auto;
  gap: 20px;
  padding: 17px 4px;
  border-bottom: 1px solid rgba(23, 63, 49, 0.3);
}

.delivery-list strong,
.delivery-list b {
  color: var(--navy);
}

.booking-rate {
  max-width: 850px;
  margin: 24px 0 0;
  color: var(--navy);
  font-weight: 700;
}

.library-crosslink {
  margin-top: 24px;
  padding: 22px;
  border-top: 0;
  background: var(--yellow-light);
}

.scheduled-events {
  min-height: 340px;
}

.event-status {
  display: inline-block;
  margin: 20px 0 0;
  padding: 9px 14px;
  border-left: 5px solid var(--yellow);
  background: var(--paper);
  color: var(--green-dark);
  font-weight: 800;
}

.email-signup-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: 880px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 2px solid rgba(23, 63, 49, 0.28);
}

.email-signup-inline p {
  margin: 0;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 700;
}

.signup-kicker {
  display: block;
  margin-bottom: 4px;
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.email-signup-inline .button {
  flex: 0 0 auto;
  border-color: var(--teal);
  background: var(--teal);
}

.email-signup-section {
  background: var(--teal-light);
  border-top-color: var(--teal);
}

.email-signup-section .email-signup-inline {
  margin-top: 0;
}

.event-cta {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: 430px;
  padding: 52px 18px;
  background-image: url("lifestyle-green-rack.png");
  background-position: center 58%;
  background-size: cover;
  color: var(--paper);
  text-align: center;
}

.event-cta::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: rgba(16, 38, 64, 0.68);
}

.event-cta h2,
.event-cta .eyebrow {
  color: var(--paper);
}

.event-cta h2 {
  max-width: 760px;
  margin-bottom: 28px;
}

.event-cta .button {
  min-height: 54px;
  padding: 15px 24px;
  font-size: 1.15rem;
}

.faq-section h2 {
  margin-bottom: 26px;
}

.faq-list {
  max-width: 920px;
  border-top: 2px solid var(--green-dark);
}

.faq-list details {
  border-bottom: 1px solid rgba(23, 63, 49, 0.3);
}

.faq-list summary {
  padding: 18px 34px 18px 4px;
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
}

.faq-list details p {
  max-width: 760px;
  margin: -4px 0 0;
  padding: 0 4px 20px;
  color: var(--ink);
}

.section.navy .section-header p,
.section.navy p {
  color: rgba(255, 253, 246, 0.78);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4.1rem);
}

h3 {
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
}

.two-paths,
.feature-grid,
.event-grid,
.steps,
.pricing-grid,
.about-grid,
.detail-grid {
  display: grid;
  gap: 18px;
}

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

.feature-grid,
.event-grid,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-grid,
.detail-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: start;
}

.about-photo {
  overflow: hidden;
  padding: 0;
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.panel,
.collection-card,
.event-card,
.price-card,
.step {
  border: 2px solid var(--green-dark);
  border-top: 7px solid var(--yellow);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.panel:nth-child(even),
.collection-card:nth-child(even),
.event-card:nth-child(even),
.price-card:nth-child(even),
.step:nth-child(even) {
  border-top-color: var(--teal);
}

.two-paths .panel {
  border-top-color: var(--yellow);
}

.section.navy .price-card,
.section.navy .panel {
  background: var(--paper);
}

.section.navy .price-card h3,
.section.navy .price-card p {
  color: var(--navy);
}

.section.navy .price-card p {
  font-weight: 700;
  line-height: 1.6;
}

.section.table-essentials {
  background: var(--yellow-light);
  color: var(--navy);
}

.section.table-essentials h2,
.section.table-essentials h3,
.section.table-essentials .eyebrow,
.section.table-essentials p {
  color: var(--navy);
}

.panel,
.event-card,
.price-card,
.step {
  padding: clamp(18px, 3vw, 28px);
}

.panel p,
.event-card p,
.price-card p,
.step p {
  color: var(--muted);
}

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

.collection-card {
  overflow: hidden;
}

.collection-name-link {
  color: inherit;
  text-decoration: none;
}

.collection-name-link:hover,
.collection-explore-link:hover {
  color: var(--accent);
}

.library-card:hover .collection-name-link,
.library-card:hover .collection-explore-link {
  color: var(--accent);
}

.library-card .collection-body {
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.library-card {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  height: 210px;
  border-color: var(--accent);
  border-top-color: var(--accent);
}

.collection-card.library-card {
  border-color: var(--accent);
  border-top: 7px solid var(--accent);
}

.library-card .collection-media {
  width: 168px;
  height: 210px;
  min-height: 0;
  aspect-ratio: auto;
  overflow: hidden;
  border-right: 2px solid var(--accent);
  border-bottom: 0;
}

.library-card .collection-meta {
  color: var(--accent);
  font-family: "Boston Angel", Georgia, serif;
  font-size: 0.88rem;
  font-weight: 800;
}

.library-card .collection-meta span:first-child {
  font-family: "Vintage Goods", "Brush Script MT", cursive;
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: none;
}

.library-card .collection-meta span:last-child {
  font-family: "Boston Angel", Georgia, serif;
  text-transform: uppercase;
}

.library-card .placeholder-tile {
  inset: 18%;
  font-size: 2.8rem;
}

.library-card h3 {
  margin-top: 10px;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
}

.collection-explore-link {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 14px;
  color: var(--green-dark);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.library-cta-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 34px;
  padding: 24px;
  border-left: 8px solid var(--yellow);
  background: var(--teal-light);
}

.library-cta-inline p {
  margin: 0;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 900;
}

.library-cta-inline .button {
  flex: 0 0 auto;
  border-color: var(--teal);
  background: var(--teal);
}

.collection-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: color-mix(in srgb, var(--accent, var(--green)) 26%, #fffdf6);
  border-bottom: 1px solid var(--line);
}

.collection-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-tile {
  position: absolute;
  inset: 14%;
  display: grid;
  place-items: center;
  border: 3px solid var(--green-dark);
  border-radius: 14px;
  background: var(--paper);
  color: var(--accent, var(--green));
  font-family: "Boston Angel", Georgia, serif;
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 900;
  box-shadow: 10px 12px 0 rgba(16, 38, 64, 0.14);
}

.collection-body {
  padding: 18px;
}

.collection-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.tag {
  padding: 6px 9px;
  border: 1px solid rgba(23, 63, 49, 0.18);
  border-radius: 999px;
  background: rgba(255, 248, 232, 0.8);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-button {
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}

.filter-button.is-active {
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: var(--paper);
}

.mini-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.price {
  color: var(--green-dark);
  font-family: "Boston Angel", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 900;
}

.step-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--green-dark);
  font-weight: 900;
}

.photo-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
}

.photo-strip.no-photos {
  display: block;
}

.collection-photo-coming {
  display: grid;
  place-content: center;
  min-height: 460px;
  padding: 30px;
  border: 3px solid var(--accent);
  border-top-width: 9px;
  background: color-mix(in srgb, var(--accent) 16%, var(--paper));
  color: var(--navy);
  text-align: center;
}

.collection-photo-coming span {
  color: var(--accent);
  font-family: "Vintage Goods", "Brush Script MT", cursive;
  font-size: 1.5rem;
}

.collection-photo-coming strong {
  margin-top: 10px;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
}

.collection-photo-coming small {
  margin-top: 12px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.photo-strip img,
.photo-strip .photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(239, 191, 90, 0.28);
}

.photo-strip > :first-child {
  grid-row: span 2;
  aspect-ratio: auto;
  height: 100%;
}

.photo-strip.collection-bonjour {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  min-height: 620px;
}

.photo-strip.collection-bonjour > img:nth-child(2),
.photo-strip.collection-bonjour > img:nth-child(3) {
  height: 100%;
  aspect-ratio: auto;
  background: transparent;
}

.photo-strip.collection-bonjour > img:nth-child(2) {
  object-fit: contain;
  object-position: center;
}

.photo-strip.collection-bonjour > img:nth-child(3) {
  object-fit: cover;
  object-position: center bottom;
}

.photo-placeholder {
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--muted);
  text-align: center;
}

.detail-list {
  padding-left: 18px;
}

.detail-list li {
  margin: 8px 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 22px clamp(18px, 5vw, 72px);
  background: var(--teal);
  color: var(--paper);
}

.footer-logo {
  width: 190px;
  height: auto;
  margin-bottom: 8px;
}

.site-footer p {
  max-width: 560px;
  margin: 0;
}

.home-footer-intro {
  text-align: center;
}

.site-footer a {
  color: var(--paper);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 920px) {
  .library-pricing-inner {
    grid-template-columns: 1fr;
  }

  .library-pricing-option {
    padding: 20px 0 0;
    border-top: 2px solid var(--teal);
    border-left: 0;
  }

  .mobile-nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 18px 18px;
    background: var(--teal);
    border-bottom: 4px solid var(--yellow);
    box-shadow: 0 16px 30px rgba(16, 38, 64, 0.2);
  }

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

  .nav a {
    padding: 12px 0;
    color: var(--paper);
    border-bottom: 1px solid rgba(255, 253, 246, 0.22);
  }

  .hero,
  .about-grid,
  .detail-grid,
  .about-story-layout {
    grid-template-columns: 1fr;
  }

  .photo-hero h1 {
    font-size: 5.8rem;
  }

  .hero {
    gap: 6px;
  }

  .hero-message {
    margin-top: -10px;
  }

  .hero-brand img {
    width: min(480px, 90vw);
  }

  .hero-art {
    min-height: 340px;
  }

  .two-paths,
  .feature-grid,
  .event-grid,
  .pricing-grid,
  .steps,
  .collection-grid {
    grid-template-columns: 1fr;
  }

  .library-card {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .library-card .collection-media {
    width: 150px;
  }

  .section-header {
    display: block;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 66px;
  }

  .hero {
    min-height: auto;
  }

  .photo-hero {
    min-height: 340px;
  }

  .photo-hero h1 {
    font-size: 4rem;
  }

  .lifestyle-strip {
    height: 170px;
  }

  .lifestyle-strip img {
    height: 100%;
  }

  .library-card {
    grid-template-columns: 112px minmax(0, 1fr);
    height: 184px;
  }

  .library-card .collection-media {
    width: 112px;
    height: 184px;
    min-height: 0;
  }

  .library-card .collection-body {
    min-height: 0;
    padding: 14px;
  }

  .library-card h3 {
    font-size: 1.45rem;
  }

  .library-card .collection-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .delivery-list > div {
    grid-template-columns: 1fr auto;
    gap: 4px 14px;
  }

  .delivery-list span {
    grid-column: 1 / -1;
  }

  .hero-brand img {
    width: min(350px, 94vw);
  }

  h1 {
    font-size: 3.1rem;
  }

  .hero-actions,
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .casual-offerings li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .email-signup-inline {
    align-items: stretch;
    flex-direction: column;
  }

  .library-cta-inline {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-art {
    min-height: 260px;
  }

  .hero-art img {
    max-height: 320px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-logo {
    width: 160px;
  }
}
