:root {
  --color-background: #f4f0e9;
  --color-surface: #fbf8f2;
  --color-text: #25211d;
  --color-muted: #716961;
  --color-accent: #9b6c50;
  --color-accent-dark: #744c36;
  --color-olive: #6e705e;
  --color-olive-dark: #505344;
  --color-line: rgba(48, 39, 32, 0.17);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "DM Sans", Arial, sans-serif;
  --font-script: "La Belle Aurore", "Segoe Script", cursive;
  --page-pad: clamp(1.35rem, 4.5vw, 5.5rem);
  --max-width: 1320px;
  --section-space: clamp(6rem, 11vw, 10rem);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  color: var(--color-text);
  background: var(--color-background);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
  /* Keeps decorative elements that extend past the viewport from creating
     sideways scrolling, including in mobile browsers without `clip` support. */
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }

:focus-visible {
  outline: 2px solid #e6bd9d;
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 999;
  padding: .65rem 1rem;
  background: var(--color-surface);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
  align-items: center;
  gap: 2rem;
  height: 6.5rem;
  padding-inline: var(--page-pad);
  color: #fffaf3;
  transition: height .35s ease, background .35s ease, box-shadow .35s ease;
}

.site-header.is-scrolled {
  height: 4.8rem;
  background: rgba(50, 42, 35, .78);
  box-shadow: 0 8px 30px rgba(34, 27, 22, .12);
  backdrop-filter: blur(14px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  flex-direction: column;
  width: max-content;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 2.3vw, 2.2rem);
  letter-spacing: -.04em;
}

.spark-mark {
  display: inline-block;
  width: .72em;
  height: .72em;
  margin-left: .12em;
  fill: currentColor;
  vertical-align: .08em;
}

.script .spark-mark {
  width: .62em;
  height: .62em;
  margin-left: .08em;
  vertical-align: .02em;
}

.brand-tagline {
  margin-top: .4rem;
  padding-left: .15rem;
  font-size: .47rem;
  font-weight: 500;
  letter-spacing: .31em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 3.4rem);
  font-size: .78rem;
  letter-spacing: .045em;
}

.site-nav a, .footer-links a, .social-links a { position: relative; }

.site-nav a::after, .footer-links a::after, .social-links a::after, .text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.35rem;
  height: 1px;
  background: currentColor;
  transition: right .3s ease;
}

.site-nav a:hover::after, .site-nav a:focus-visible::after,
.site-nav a.is-active::after, .footer-links a:hover::after,
.social-links a:hover::after, .text-link:hover::after { right: 0; }

.header-actions {
  justify-self: end;
  display: flex;
  gap: .8rem;
}

.header-actions button {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  padding: .55rem;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.header-actions svg {
  width: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.menu-toggle { display: none; }

.hero-track {
  position: relative;
  z-index: 0;
  height: 126svh;
}

.hero {
  position: sticky;
  top: 0;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: #fffaf2;
  isolation: isolate;
}

.hero-image, .hero-shade { position: absolute; inset: 0; }

.hero-image {
  z-index: -2;
  object-position: center;
  transform: scale(1.025);
  animation: hero-settle 2s cubic-bezier(.2,.7,.2,1) both;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(28,22,17,.3), rgba(22,17,13,.08) 48%, rgba(26,20,15,.25)),
    linear-gradient(0deg, rgba(22,17,12,.32), transparent 55%, rgba(15,12,10,.2));
}

.hero-copy {
  position: absolute;
  top: 49%;
  left: 50%;
  width: min(92vw, 830px);
  text-align: center;
  transform: translate(-50%, -50%);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--color-accent);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .34em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-eyebrow { color: #fffaf2; }

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: .98;
}

h1 {
  margin-bottom: .4rem;
  font-size: clamp(4.5rem, 9.8vw, 9.5rem);
  letter-spacing: -.055em;
  text-shadow: 0 3px 30px rgba(22, 15, 10, .2);
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 5.7vw, 5.7rem);
  letter-spacing: -.045em;
}

h3 {
  margin-bottom: .7rem;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
  line-height: 1.25;
}

.hero-script {
  margin: -.1rem 0 2rem;
  font-size: clamp(2rem, 4.3vw, 4rem);
  transform: rotate(-2deg);
}

.button {
  display: inline-flex;
  min-height: 3.4rem;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  padding: .9rem 1.75rem;
  border: 1px solid currentColor;
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .22em;
  line-height: 1;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.button:hover { transform: translateY(-2px); }
.button-light:hover { color: var(--color-text); background: #fffaf2; }

.button-filled {
  border-color: var(--color-accent);
  color: #fff;
  background: var(--color-accent);
}

.button-filled:hover { background: var(--color-accent-dark); }

.scroll-cue {
  position: absolute;
  bottom: 11vh;
  left: 50%;
  display: grid;
  place-items: center;
  gap: .65rem;
  font-size: .55rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 1px;
  height: 3rem;
  overflow: hidden;
  background: rgba(255,255,255,.35);
}

.scroll-cue i::after {
  content: "";
  display: block;
  width: 1px;
  height: 1.5rem;
  background: #fff;
  animation: scroll-line 2s ease-in-out infinite;
}

.content-shell {
  position: relative;
  z-index: 2;
  margin-top: -27svh;
  /* Keep the wave visible above the shell while still preventing decorative
     elements from widening the page horizontally. */
  overflow-x: clip;
  background: var(--color-background);
  box-shadow: 0 -12px 50px rgba(29, 22, 17, .08);
}

.content-wave {
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
  width: 100%;
  height: clamp(65px, 10vw, 145px);
  fill: var(--color-background);
  filter: drop-shadow(0 -10px 18px rgba(29, 22, 17, .04));
}

.section {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding: var(--section-space) var(--page-pad);
}

.intro {
  display: grid;
  min-height: 760px;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
  padding-top: clamp(5rem, 9vw, 8.5rem);
}

.intro-copy { max-width: 560px; }
.intro-copy > p:not(.eyebrow), .about-copy > p:not(.eyebrow) { max-width: 580px; color: var(--color-muted); }
.intro-copy .button, .about-copy .button { margin-top: 1.25rem; }

.intro-collage {
  position: relative;
  min-height: 650px;
}

.organic-image {
  position: absolute;
  z-index: 2;
  margin: 0;
  overflow: hidden;
}

.organic-main {
  top: 0;
  right: 6%;
  width: min(80%, 430px);
  height: 490px;
  border-radius: 47% 53% 43% 57% / 36% 42% 58% 64%;
}

.organic-small {
  right: 0;
  bottom: 0;
  width: min(47%, 255px);
  aspect-ratio: 1;
  border: 10px solid var(--color-background);
  border-radius: 52% 48% 55% 45% / 40% 58% 42% 60%;
}

.organic-small img { object-position: center 42%; }

.paint-blob {
  position: absolute;
  z-index: 1;
  bottom: 8%;
  left: 14%;
  width: 220px;
  height: 95px;
  border-radius: 65% 35% 55% 45% / 47% 60% 40% 53%;
  background: #d9bda8;
  opacity: .65;
  transform: rotate(-18deg);
}

.line-leaf, .about-leaf {
  fill: none;
  stroke: #49443d;
  stroke-width: 1.2;
}

.line-leaf {
  position: absolute;
  top: 10%;
  right: -6%;
  width: 100px;
}

.centered { text-align: center; }
.section-heading { margin-bottom: clamp(3rem, 6vw, 6rem); }
.section-heading h2 { margin-bottom: 1rem; }

.tiny-rule {
  display: block;
  width: 2rem;
  height: 1px;
  margin: 1.5rem auto 0;
  background: var(--color-accent);
}

.worlds { padding-top: 2rem; }

.world-layout {
  display: grid;
  gap: clamp(5rem, 9vw, 9rem);
}

.world {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 7rem);
}

.world-plotted { grid-template-columns: minmax(260px, .9fr) minmax(0, 1.1fr); }

.world-image {
  height: min(62vw, 660px);
  max-height: 660px;
  overflow: hidden;
}

.world-ceramics .world-image { border-radius: 48% 52% 3% 3% / 24% 28% 3% 3%; }
.world-plotted .world-image { border-radius: 3% 3% 52% 48% / 3% 3% 28% 24%; }

.world-image img { transition: transform .8s cubic-bezier(.2,.6,.2,1); }
.world-image:hover img { transform: scale(1.035); }

.world-copy { max-width: 390px; }
.world-copy > p:not(.world-number) { color: var(--color-muted); }

.world-number {
  margin-bottom: 2rem;
  color: var(--color-accent);
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

.text-link {
  position: relative;
  display: inline-block;
  margin-top: .7rem;
  color: var(--color-accent-dark);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .08em;
}

.about {
  position: relative;
  display: grid;
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, .8fr);
  align-items: center;
  gap: clamp(4rem, 8vw, 10rem);
  margin-top: 2rem;
  padding-inline: max(var(--page-pad), calc((100vw - var(--max-width)) / 2 + var(--page-pad)));
  background: #eee8df;
}

.about::before {
  content: "";
  position: absolute;
  top: -28px;
  left: -2%;
  width: 104%;
  height: 60px;
  border-radius: 50%;
  background: #eee8df;
}

.about-visual { position: relative; }

.about-visual figure {
  height: min(63vw, 720px);
  margin: 0;
  overflow: hidden;
  border-radius: 39% 61% 49% 51% / 31% 34% 66% 69%;
}

.about-visual img { object-position: center 42%; }

.visual-note {
  position: absolute;
  top: 18%;
  left: 7%;
  color: #fff;
  font-size: clamp(1.7rem, 3.3vw, 3.2rem);
  text-shadow: 0 2px 15px rgba(20, 15, 10, .4);
  transform: rotate(-5deg);
}

.about-copy { max-width: 600px; }

.about-leaf {
  position: absolute;
  right: -15px;
  bottom: 2rem;
  width: 125px;
}

.manifesto {
  position: relative;
  display: grid;
  min-height: 820px;
  place-items: center;
  text-align: center;
}

.manifesto-copy { position: relative; z-index: 3; }

.manifesto h2 {
  margin: 0;
  font-size: clamp(4.1rem, 9vw, 9.5rem);
}

.manifesto h2 em {
  color: var(--color-accent);
  font-weight: 400;
}

.manifesto-img {
  position: absolute;
  z-index: 1;
  margin: 0;
  overflow: hidden;
}

.m-one {
  top: 14%;
  left: 3%;
  width: clamp(130px, 17vw, 230px);
  aspect-ratio: .8;
  border-radius: 50% 50% 45% 55%;
  transform: rotate(-7deg);
}

.m-one img { object-position: 80% center; }

.m-two {
  right: 1%;
  bottom: 12%;
  width: clamp(140px, 20vw, 270px);
  aspect-ratio: 1;
  border-radius: 57% 43% 51% 49% / 45% 59% 41% 55%;
  transform: rotate(5deg);
}

.m-three {
  bottom: 4%;
  left: 18%;
  width: clamp(95px, 12vw, 160px);
  aspect-ratio: 1;
  border-radius: 50%;
}

.m-three img { object-position: 23% center; }

.testimonials {
  max-width: none;
  background: var(--color-surface);
}

.testimonial-list {
  display: grid;
  max-width: var(--max-width);
  grid-template-columns: 1fr .42fr 1fr .42fr 1fr;
  align-items: center;
  gap: clamp(1.3rem, 2.5vw, 3rem);
  margin: 0 auto;
}

.testimonial { margin: 0; }
.testimonial > p:nth-child(2) { font-family: var(--font-serif); font-size: clamp(1.35rem, 2vw, 1.9rem); line-height: 1.35; }
.testimonial footer { color: var(--color-accent); font-size: .78rem; letter-spacing: .08em; }

.stars {
  margin-bottom: 1.1rem;
  color: var(--color-accent);
  font-size: .75rem;
  letter-spacing: .18em;
}

.testimonial-image {
  height: 245px;
  margin: 0;
  overflow: hidden;
  transform: rotate(-3deg);
}

.testimonial-image img { object-position: 42% center; }
.testimonial-image.second { transform: rotate(3deg); }
.testimonial-image.second img { object-position: center 25%; }

.gallery { padding-bottom: calc(var(--section-space) + 1rem); }

.gallery-heading {
  display: grid;
  max-width: 1040px;
  grid-template-columns: 1fr 1fr;
  column-gap: 5rem;
  align-items: end;
  margin: 0 auto clamp(3rem, 6vw, 6rem);
}

.gallery-heading .eyebrow { grid-column: 1 / -1; }
.gallery-heading h2 { margin: 0; }
.gallery-heading > p:last-child { max-width: 390px; margin: 0 0 .6rem; color: var(--color-muted); }

.gallery-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: .85fr 1.15fr .72fr;
  grid-template-rows: 220px 280px 180px;
  gap: clamp(.8rem, 1.5vw, 1.4rem);
  margin: 0 auto;
}

.gallery-grid figure { margin: 0; overflow: hidden; }
.gallery-grid img { transition: transform .7s ease; }
.gallery-grid figure:hover img { transform: scale(1.04); }
.gallery-a { grid-column: 1; grid-row: 1 / 3; border-radius: 48% 48% 0 0 / 20% 20% 0 0; }
.gallery-b { grid-column: 2 / 4; grid-row: 1 / 2; }
.gallery-c { grid-column: 2; grid-row: 2 / 4; }
.gallery-c img { object-position: center 45%; }
.gallery-d { grid-column: 3; grid-row: 2 / 4; border-radius: 0 0 50% 50% / 0 0 22% 22%; }

.instagram-link {
  display: block;
  width: max-content;
  margin: 3rem auto 0;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.newsletter {
  position: relative;
  display: grid;
  min-height: 430px;
  grid-template-columns: .8fr 1.6fr .72fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(4rem, 7vw, 7rem) var(--page-pad);
  overflow: hidden;
  color: #fff;
  background: linear-gradient(105deg, var(--color-olive-dark), var(--color-olive) 72%);
}

.newsletter::before {
  content: "";
  position: absolute;
  top: -35px;
  left: -2%;
  width: 104%;
  height: 65px;
  border-radius: 50%;
  background: var(--color-background);
}

.newsletter-note .script {
  margin: 0;
  font-size: clamp(2.4rem, 4.4vw, 4.5rem);
  transform: rotate(-6deg);
}

.newsletter-copy { max-width: 650px; text-align: center; }
.newsletter-copy .eyebrow { color: #eee8dd; }
.newsletter-copy h2 { margin-bottom: 1rem; font-size: clamp(2.6rem, 4vw, 4.2rem); }
.newsletter-copy > p:not(.eyebrow, .form-message) { color: rgba(255,255,255,.78); }

.newsletter-form {
  display: flex;
  width: 100%;
  max-width: 610px;
  min-height: 3.5rem;
  margin: 1.7rem auto 0;
  background: #fff;
}

.newsletter-form input {
  min-width: 0;
  flex: 1;
  padding: 0 1.2rem;
  border: 0;
  color: var(--color-text);
  background: #fff;
}

.newsletter-form button {
  padding: 0 1.8rem;
  border: 0;
  color: #fff;
  background: #34372e;
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease;
}

.newsletter-form button:hover { background: var(--color-accent-dark); }
.form-message { min-height: 1.5rem; margin: .7rem 0 0; font-size: .8rem; }

.newsletter-image {
  position: absolute;
  top: 50%;
  right: -3.5rem;
  width: clamp(190px, 24vw, 360px);
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 50% 48% 54% 46%;
  transform: translateY(-50%);
}

.newsletter-image img { object-position: 20% center; }

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  padding: 3rem var(--page-pad);
  background: var(--color-surface);
}

.brand-dark { color: var(--color-text); }
.footer-links, .social-links { display: flex; flex-wrap: wrap; gap: 1rem 1.4rem; font-size: .68rem; }
.footer-links { justify-content: center; }
.footer-note { margin: 0; font-size: 1.35rem; text-align: right; transform: rotate(-3deg); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s ease, transform .85s cubic-bezier(.22,.7,.2,1);
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes hero-settle {
  from { opacity: .7; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1.025); }
}

@keyframes scroll-line {
  0% { transform: translateY(-120%); }
  70%, 100% { transform: translateY(220%); }
}

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto auto; }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.7rem;
    color: var(--color-text);
    font-family: var(--font-serif);
    font-size: 2.5rem;
    background: rgba(244, 240, 233, .98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1rem);
    transition: .3s ease;
  }

  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a::after { background: var(--color-accent); }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    place-content: center;
    gap: 7px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 25px;
    height: 1px;
    background: currentColor;
    transition: transform .25s ease;
  }

  .menu-toggle[aria-expanded="true"] { color: var(--color-text); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }

  .intro { grid-template-columns: .9fr 1.1fr; gap: 2rem; }
  .intro-collage { min-height: 560px; }
  .organic-main { height: 440px; }
  .line-leaf { right: -2%; }

  .testimonial-list { grid-template-columns: 1fr .34fr 1fr; }
  .testimonial-image.second { display: none; }
  .testimonial:nth-child(5) { grid-column: 2 / 4; max-width: 330px; }
  .newsletter { grid-template-columns: .7fr 1.7fr .35fr; }
  .site-footer { grid-template-columns: auto 1fr auto; }
  .footer-note { display: none; }
}

@media (max-width: 780px) {
  :root { --section-space: 6.5rem; }
  .site-header { height: 5.3rem; gap: .8rem; }
  .site-header.is-scrolled { height: 4.7rem; }
  .header-actions { display: none; }
  .hero-image { object-position: 42% center; }
  .hero-copy { top: 48%; }
  .hero-eyebrow { letter-spacing: .25em; }
  .scroll-cue { bottom: 13vh; }
  .content-shell { margin-top: -24svh; }

  .intro {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding-top: 5rem;
  }

  .intro-copy { max-width: 650px; }
  .intro-collage { min-height: 590px; }
  .organic-main { right: 10%; width: 72%; height: 470px; }
  .organic-small { right: 3%; width: 40%; }
  .paint-blob { left: 8%; }

  .world { grid-template-columns: 1.2fr .8fr; gap: 2rem; }
  .world-plotted { grid-template-columns: .8fr 1.2fr; }
  .world-image { height: 62vw; }

  .about { grid-template-columns: 1fr; gap: 4rem; }
  .about-visual { max-width: 610px; }
  .about-visual figure { height: 82vw; max-height: 700px; }
  .about-leaf { display: none; }

  .manifesto { min-height: 680px; }
  .m-one { top: 9%; }
  .m-three { left: 8%; }

  .testimonial-list { grid-template-columns: 1fr 120px; gap: 3rem 2rem; }
  .testimonial-image { height: 180px; }
  .testimonial:nth-child(5) { grid-column: 1 / -1; max-width: 460px; }

  .gallery-heading { grid-template-columns: 1fr; gap: 1.2rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 330px 240px 310px; }
  .gallery-a { grid-column: 1; grid-row: 1 / 3; }
  .gallery-b { grid-column: 2; grid-row: 1; }
  .gallery-c { grid-column: 2; grid-row: 2 / 4; }
  .gallery-d { grid-column: 1; grid-row: 3; }

  .newsletter { grid-template-columns: 1fr; padding-right: var(--page-pad); }
  .newsletter-note { text-align: center; }
  .newsletter-image { opacity: .23; }
  .newsletter-copy { position: relative; z-index: 2; margin: 0 auto; }

  .site-footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-links, .social-links { justify-content: center; }
}

@media (max-width: 520px) {
  :root { --page-pad: 1.25rem; --section-space: 5.3rem; }
  html { scroll-padding-top: 4.7rem; }
  h1 { font-size: clamp(4rem, 20vw, 5.5rem); }
  h2 { font-size: clamp(2.75rem, 13vw, 4rem); }
  .brand-name { font-size: 1.7rem; }
  .hero-copy { width: calc(100% - 2rem); }
  .hero-script { margin-top: .6rem; font-size: 2.15rem; }
  .hero-image { object-position: 38% center; }
  .hero-eyebrow { font-size: .57rem; }
  .button { min-height: 3.3rem; padding-inline: 1.3rem; }
  .content-wave { height: 58px; }

  .intro { gap: 3rem; }
  .intro-collage { min-height: 440px; }
  .organic-main { right: 9%; width: 78%; height: 355px; }
  .organic-small { width: 43%; border-width: 6px; }
  .paint-blob { bottom: 2%; left: 1%; width: 150px; height: 70px; }
  .line-leaf { top: 1%; right: -6%; width: 70px; }

  .world-layout { gap: 6rem; }
  .world, .world-plotted { display: flex; flex-direction: column; align-items: stretch; gap: 2rem; }
  .world-plotted .world-copy { order: 2; }
  .world-plotted .world-image { order: 1; }
  .world-image { width: 90%; height: 115vw; max-height: 550px; }
  .world-plotted .world-image { margin-left: auto; }
  .world-copy { width: 88%; }
  .world-plotted .world-copy { align-self: flex-end; }

  .about { padding-top: 5.5rem; padding-bottom: 5.5rem; }
  .about-visual figure { height: 115vw; }
  .visual-note { top: 12%; font-size: 2rem; }

  .manifesto { min-height: 630px; padding-inline: .8rem; }
  .manifesto h2 { font-size: clamp(3.6rem, 18vw, 5.3rem); }
  .m-one { width: 105px; opacity: .82; }
  .m-two { right: -7%; width: 125px; opacity: .82; }
  .m-three { bottom: 7%; width: 85px; }

  .testimonial-list { display: block; }
  .testimonial { padding: 2rem 0; border-top: 1px solid var(--color-line); }
  .testimonial-image { display: none; }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 170px 220px; gap: .7rem; }
  .instagram-link { width: auto; text-align: center; }

  .newsletter { padding-top: 5.5rem; padding-bottom: 5rem; }
  .newsletter-note .script { font-size: 2.6rem; }
  .newsletter-form { display: grid; background: transparent; gap: .75rem; }
  .newsletter-form input, .newsletter-form button { min-height: 3.5rem; }
  .newsletter-image { right: -7rem; width: 290px; }
  .footer-links { max-width: 340px; }
}

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