:root {
  --bg: #faf7f2;
  --paper: #faf7f2;
  --forest: #737d74;
  --forest-soft: rgba(115, 125, 116, 0.8);
  --forest-faint: rgba(115, 125, 116, 0.08);
  --pink: #b4748c;
  --pink-soft: #e4bfc6;
  --dusty: #afbfb4;
  --pearl: #adbecf;
  --lavender: #a795af;
  --shadow: rgba(115, 125, 116, 0.07);
  --shadow-strong: rgba(115, 125, 116, 0.13);
  --white: #ffffff;
  --footer: #737d74;
  --footer-text: rgba(250, 247, 242, 0.7);
  --footer-divider: rgba(250, 247, 242, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito Sans", sans-serif;
  background: var(--bg);
  color: var(--forest);
}

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

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

button {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  background: var(--bg);
}

.container {
  width: min(100%, 1200px);
  margin: 0 auto;
}

.site-header {
  background: var(--bg);
  border-bottom: 1px solid rgba(115, 125, 116, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
}

.brand span {
  font-family: "Fredoka", sans-serif;
  font-size: clamp(1.6rem, 1.4vw + 0.9rem, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--forest);
}

.site-nav a {
  position: relative;
  transition: opacity 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 0.7;
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg);
  border: 1px solid var(--forest-faint);
  border-radius: 8px;
  cursor: pointer;
}

.mobile-menu-toggle img {
  width: 20px;
  height: 20px;
}

.section {
  position: relative;
}

.hero-section {
  padding: 64px 0 96px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 540px);
  align-items: center;
  gap: 64px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.eyebrow-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lavender);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  max-width: 560px;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: clamp(2.7rem, 3.2vw, 4rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--forest);
}

.hero-copy p {
  margin: 0;
  max-width: 620px;
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(115, 125, 116, 0.9);
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button {
  min-height: 48px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.button-primary {
  background: var(--pink);
  color: var(--bg);
  box-shadow: 0 4px 6px var(--shadow-strong);
}

.button-secondary {
  background: var(--forest);
  color: var(--bg);
  box-shadow: 0 4px 6px var(--shadow-strong);
}

.text-link {
  gap: 8px;
  font-weight: 700;
  color: var(--forest);
}

.text-link img {
  width: 16px;
  height: 16px;
}

.hero-art-card {
  background: var(--pink-soft);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 12px 16px var(--shadow);
}

.art-frame {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
  padding: 24px;
}

.art-frame > img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
}

.art-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

.art-meta div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.art-meta strong {
  font-family: "Fredoka", sans-serif;
  font-size: 1rem;
  color: var(--forest);
}

.art-meta span {
  font-size: 0.8125rem;
  color: rgba(115, 125, 116, 0.7);
}

.art-meta img {
  width: 16px;
  height: 16px;
}

.gallery-section {
  background: var(--dusty);
  padding: 96px 0;
}

.gallery-header,
.shop-header,
.world-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 56px;
}

.section-heading,
.shop-header,
.world-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-heading {
  width: min(100%, 680px);
}

.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink);
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.mini-label.centered {
  margin: 0 auto 0;
}

.mini-label img {
  width: 12px;
  height: 12px;
}

.section-heading h2,
.world-header h2,
.shop-header h2,
.contact-kicker h2 {
  margin: 12px 0 0;
  font-family: "Fredoka", sans-serif;
  color: var(--forest);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.section-heading h2,
.world-header h2,
.shop-header h2 {
  font-size: clamp(2.1rem, 1.8vw + 1.3rem, 3rem);
}

.section-heading p,
.shop-header p,
.world-header p {
  margin: 12px 0 0;
  max-width: 680px;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(115, 125, 116, 0.8);
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

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

.art-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.art-card-image {
  position: relative;
  background: var(--white);
  border: 1px solid var(--forest-faint);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 12px rgba(115, 125, 116, 0.03);
}

.art-card-large .art-card-image {
  height: 480px;
  padding: 16px;
}

.art-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.art-card:not(.art-card-large) .art-card-image {
  height: 260px;
  padding: 16px;
}

.art-card-bottom .art-card-image {
  height: 260px;
  padding: 16px;
}

.art-card-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.art-card-copy h3 {
  margin: 0;
  font-family: "Fredoka", sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--forest);
}

.art-card-copy p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(115, 125, 116, 0.6);
}

.world-section {
  padding: 120px 0;
}

.world-header {
  align-items: center;
  text-align: center;
  margin-bottom: 56px;
}

.world-header p {
  max-width: 760px;
  text-align: center;
}

.world-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
}

.scrap-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--forest-faint);
  border-radius: 16px;
  box-shadow: 0 8px 12px rgba(115, 125, 116, 0.04);
}

.scrap-card-one {
  transform: rotate(-2deg);
  padding: 32px;
}

.scrap-card-two {
  background: #adbecf;
  padding: 20px;
  border-radius: 20px;
  transform: rotate(1deg);
  box-shadow: 4px 12px 12px rgba(115, 125, 116, 0.07);
}

.scrap-card-three {
  transform: rotate(-1deg);
  padding: 32px;
}

.scrap-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.scrap-card h3 {
  margin: 0;
  font-family: "Fredoka", sans-serif;
  font-size: clamp(1.2rem, 1vw + 0.7rem, 1.7rem);
  color: var(--forest);
}

.scrap-card-top img {
  width: 18px;
  height: 18px;
}

.scrap-card p {
  margin: 0;
  color: rgba(115, 125, 116, 0.8);
  line-height: 1.6;
  font-size: 0.9375rem;
}

.scrap-note {
  margin-top: 24px;
  background: var(--paper);
  border-radius: 8px;
  padding: 12px;
}

.scrap-note img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
}

.scrap-note span {
  display: inline-block;
  margin-top: 12px;
  font-style: italic;
  color: var(--forest);
  font-size: 0.75rem;
  width: 100%;
  text-align: center;
}

.polaroid {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.polaroid img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 6px;
}

.polaroid-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.polaroid-copy strong {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  color: var(--forest);
  font-size: 1rem;
}

.polaroid-copy img {
  width: 20px;
  height: 20px;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.step-number {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
}

.step-1 { color: var(--lavender); }
.step-2 { color: var(--pearl); }
.step-3 { color: var(--pink); }

.steps p {
  flex: 1;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(115, 125, 116, 0.9);
}

.unique-row {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--forest);
  font-weight: 700;
  font-size: 0.8125rem;
}

.unique-row img {
  width: 24px;
  height: 24px;
}

.shop-section {
  background: var(--bg);
  border-top: 1px solid var(--forest-faint);
  padding: 96px 0;
}

.shop-header {
  margin-bottom: 56px;
}

.shop-header p {
  max-width: 760px;
}

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

.shop-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  border: 1px solid rgba(115, 125, 116, 0.06);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 12px rgba(115, 125, 116, 0.04);
}

.shop-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: 12px;
}

.shop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.shop-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.shop-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.shop-title-row h3 {
  margin: 0;
  font-family: "Fredoka", sans-serif;
  font-size: 1.25rem;
  color: var(--forest);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.dot-purple { background: var(--lavender); }
.dot-pink { background: var(--pink); }
.dot-blue { background: var(--pearl); }

.shop-copy p {
  margin: 0;
  color: rgba(115, 125, 116, 0.7);
  line-height: 1.5;
  font-size: 0.875rem;
}

.shop-cta-wrap {
  display: flex;
  justify-content: center;
  padding-top: 32px;
}

.contact-section {
  border-top: 1px solid var(--forest-faint);
  padding: 96px 0;
}

.contact-box {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(115, 125, 116, 0.06);
  border-radius: 24px;
  box-shadow: 0 12px 16px rgba(115, 125, 116, 0.04);
  padding: 48px 32px;
  text-align: center;
}

.contact-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.contact-kicker img {
  width: 16px;
  height: 16px;
}

.contact-kicker h2 {
  font-size: clamp(1.8rem, 1.4vw + 1.2rem, 2.3rem);
}

.contact-box p {
  margin: 24px auto 0;
  max-width: 520px;
  line-height: 1.6;
  color: rgba(115, 125, 116, 0.9);
}

.contact-box .button {
  margin-top: 24px;
}

.site-footer {
  background: var(--footer);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 280px;
}

.footer-brand {
  color: var(--white);
}

.footer-brand-block p {
  margin: 0;
  color: var(--footer-text);
  line-height: 1.5;
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  align-items: flex-start;
  gap: 64px;
}

.link-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.link-column h3 {
  margin: 0;
  font-family: "Fredoka", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}

.link-column a {
  color: var(--white);
  font-size: 0.875rem;
  opacity: 0.9;
}

.link-column h3:nth-of-type(1) { color: var(--pink-soft); }
.link-column h3:nth-of-type(2) { color: var(--pearl); }

.footer-divider {
  height: 1px;
  margin-top: 48px;
  background: var(--footer-divider);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
  font-size: 0.8125rem;
  color: rgba(250, 247, 242, 0.5);
}

.footer-meta p {
  margin: 0;
}

.meta-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.meta-links a {
  color: rgba(250, 247, 242, 0.5);
}

@media (max-width: 980px) {
  .container {
    width: min(100%, 760px);
  }

  .hero-grid,
  .gallery-grid,
  .world-grid,
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .gallery-header,
  .shop-header,
  .world-header,
  .footer-inner,
  .footer-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

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

  .footer-links {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100%, 100%);
    padding: 0 20px;
  }

  .header-inner {
    padding: 16px 20px;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 16px;
    background: rgba(250, 247, 242, 0.96);
    border: 1px solid var(--forest-faint);
    border-radius: 12px;
    box-shadow: 0 10px 18px rgba(115, 125, 116, 0.08);
    z-index: 40;
  }

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

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .hero-section {
    padding-top: 32px;
    padding-bottom: 48px;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero-copy {
    gap: 24px;
  }

  .hero-copy h1 {
    font-size: 2.25rem;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .cta-row {
    width: 100%;
  }

  .cta-row .button,
  .cta-row .text-link {
    width: 100%;
  }

  .cta-row .text-link {
    justify-content: center;
  }

  .hero-art-card {
    padding: 16px;
  }

  .art-frame {
    padding: 16px;
  }

  .art-frame > img {
    height: 280px;
  }

  .gallery-section,
  .shop-section,
  .contact-section {
    padding: 48px 0;
  }

  .gallery-header {
    margin-bottom: 32px;
  }

  .gallery-grid,
  .gallery-stack {
    grid-template-columns: 1fr;
  }

  .art-card-large .art-card-image,
  .art-card:not(.art-card-large) .art-card-image,
  .art-card-bottom .art-card-image {
    height: 220px;
  }

  .world-section {
    padding: 48px 0;
  }

  .world-grid {
    gap: 24px;
  }

  .scrap-card-one,
  .scrap-card-three {
    padding: 24px;
  }

  .scrap-card-two {
    padding: 16px;
  }

  .shop-grid {
    gap: 20px;
  }

  .shop-image {
    height: 180px;
  }

  .contact-box {
    padding: 24px 20px;
  }

  .contact-kicker {
    gap: 6px;
  }

  .site-footer {
    padding-top: 48px;
  }

  .footer-inner,
  .footer-links,
  .footer-meta {
    gap: 24px;
  }

  .footer-links {
    width: 100%;
    justify-content: space-between;
  }

  .meta-links {
    width: 100%;
    justify-content: center;
  }
}
