@charset "UTF-8";
:root {
  --paper: #f5f5f1;
  --ink: #20231f;
  --muted: #64685e;
  --line: #d4d7ce;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --gutter: clamp(24px, 5vw, 88px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
figure,
p,
h1,
h2,
h3 {
  margin: 0;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 6px;
}
button {
  color: inherit;
}
::selection {
  background: #d9e1c8;
  color: #162218;
}
[hidden] {
  display: none !important;
}
em,
i {
  font-style: normal;
  font-family: var(--serif);
  font-weight: 400;
}
h1,
h2 {
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.01;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.6;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  padding: 12px 20px;
  background: white;
  color: #111;
  z-index: 100;
}
.skip-link:focus {
  top: 20px;
}
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px var(--gutter);
  color: #fff;
  border-bottom: 1px solid #ffffff40;
}
.brand {
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.065em;
  white-space: nowrap;
}
.desktop-nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
}
.desktop-nav a {
  position: relative;
  padding: 8px 0;
}
.desktop-nav a:after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.desktop-nav a:hover:after {
  transform: scaleX(1);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  border: 1px solid #ffffff7a;
  padding: 11px 19px;
  border-radius: 30px;
  font-size: 14px;
  transition:
    background 0.25s,
    color 0.25s;
}
.nav-cta:hover {
  background: #fff;
  color: #20231f;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  margin: 6px 0;
  transition: transform 0.25s;
}
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 20px var(--gutter) 32px;
  background: #19261f;
  display: grid;
  gap: 8px;
}
.mobile-nav a {
  font-size: 24px;
  padding: 8px 0;
}
.hero {
  position: relative;
  isolation: isolate;
  min-height: 800px;
  min-height: max(780px, 100svh);
  background: #26352a;
  color: #fff;
  overflow: hidden;
}
.hero-film,
.hero-film video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-film {
  z-index: -2;
}
.hero-film video {
  object-fit: cover;
  object-position: 50% 54%;
}
.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 28, 18, 0.51), rgba(17, 31, 23, 0.12) 90%),
    linear-gradient(
      0deg,
      rgba(9, 19, 12, 0.48),
      transparent 50%,
      rgba(10, 22, 15, 0.28)
    );
}
.hero-composition {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.66fr);
  align-items: center;
  gap: clamp(32px, 4vw, 64px);
  width: min(1180px, calc(100% - var(--gutter) * 2));
  min-height: inherit;
  margin: 0 auto;
  padding: 132px 0 112px;
}
.hero-content {
  min-width: 0;
}
.hero-eyebrow {
  margin-bottom: 40px;
}
.hero h1 {
  font-size: clamp(70px, 8.6vw, 128px);
  line-height: 1.02;
  letter-spacing: -0.065em;
}
.hero h1 span {
  letter-spacing: -0.055em;
}
.hero-bottom-copy {
  margin-top: 42px;
  display: flex;
  align-items: flex-end;
  gap: clamp(24px, 5vw, 88px);
}
.hero-bottom-copy p {
  font-size: 16px;
  line-height: 1.65;
  color: #ffffffe3;
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 10px 0;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
}
.text-link span {
  transition: transform 0.25s;
}
.text-link:hover span {
  transform: translateY(3px);
}
.hero-art {
  position: relative;
  justify-self: start;
  width: min(100%, clamp(280px, 25vw, 350px));
  transform: none;
  animation: art-enter 1.5s var(--ease) both;
}
.hero-art img {
  width: 100%;
  box-shadow: 0 18px 70px #06130845;
}
.hero-art figcaption {
  display: flex;
  justify-content: space-between;
  margin-top: 13px;
  font-size: 12px;
  color: #fff;
}
.hero-bottom {
  position: absolute;
  bottom: 0;
  left: var(--gutter);
  right: var(--gutter);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  font-size: 12px;
}
.scroll-cue {
  display: flex;
  gap: 32px;
}
.film-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: none;
  border: 0;
  padding: 10px;
  line-height: 1;
  font-size: 12px;
}
.film-toggle [data-film-symbol] {
  font-size: 16px;
}
.hero-content {
  animation: copy-enter 1s var(--ease) both;
}
@keyframes copy-enter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes art-enter {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-pad {
  padding: 110px var(--gutter);
}
.section-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 65px;
}
.section-aside {
  max-width: 270px;
  font-size: 14px;
  color: var(--muted);
}
.collection h2 {
  font-size: clamp(56px, 6.9vw, 115px);
  max-width: 1320px;
  margin: 0 auto 64px;
}
.print-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 40px);
  max-width: 1320px;
  margin: 0 auto;
  align-items: start;
}
.art-print {
  width: 100%;
  margin: 0;
}
.art-print img {
  width: 100%;
  background: #dfe3df;
}
.art-print figcaption {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-top: 17px;
  font-size: 12px;
  line-height: 1.5;
}
.art-print figcaption span:last-child {
  color: var(--muted);
  text-align: right;
  max-width: 110px;
}
.collection-note {
  font-family: var(--serif);
  font-style: normal;
  font-size: clamp(24px, 2.7vw, 42px);
  text-align: center;
  margin: 88px 0 15px;
  letter-spacing: -0.03em;
}
.site-footer {
  padding: 40px var(--gutter) 25px;
  background: #20291f;
  color: var(--paper);
  overflow: hidden;
}
.footer-top,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.footer-top {
  font-size: 14px;
}
.footer-top a:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.footer-wordmark {
  font-size: clamp(45px, 18.7vw, 335px);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 1.15;
  margin: 45px 0 35px;
  white-space: nowrap;
}
.footer-bottom {
  border-top: 1px solid #ffffff40;
  padding-top: 22px;
  font-size: 12px;
  color: #d0d5ca;
}
@media (max-width: 1000px) {
  .desktop-nav {
    gap: 20px;
  }
  .hero {
    min-height: 760px;
  }
  .hero h1 {
    font-size: 9vw;
  }
  .hero-bottom-copy {
    display: block;
  }
  .hero-bottom-copy .text-link {
    margin-top: 20px;
  }
  .print-grid {
    gap: 3vw;
  }
  .art-print figcaption {
    display: block;
  }
  .art-print figcaption span {
    display: block;
  }
  .art-print figcaption span:last-child {
    text-align: left;
    max-width: none;
    margin-top: 5px;
  }
  .section-pad {
    padding-top: 85px;
    padding-bottom: 85px;
  }
}
@media (max-width: 760px) {
  .site-header {
    padding-top: 18px;
    padding-bottom: 18px;
    gap: 16px;
  }
  .brand {
    font-size: 29px;
  }
  .desktop-nav {
    display: none;
  }
  .nav-cta {
    margin-left: auto;
    padding: 9px 14px;
    gap: 17px;
    font-size: 12px;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    min-height: 900px;
    min-height: max(880px, 100svh);
  }
  .hero-composition {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    column-gap: 20px;
    row-gap: 0;
    align-content: center;
    padding: 148px 0 105px;
  }
  .hero-content {
    display: contents;
  }
  .hero h1 {
    grid-column: 1 / -1;
    font-size: clamp(62px, 11.8vw, 88px);
  }
  .hero-eyebrow {
    grid-column: 1 / -1;
    font-size: 11px;
    letter-spacing: 0.08em;
    margin-bottom: 30px;
  }
  .hero-bottom-copy {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    margin-top: 46px;
    max-width: none;
  }
  .hero-bottom-copy p {
    font-size: 14px;
  }
  .hero-bottom-copy .text-link {
    margin-top: 14px;
    gap: 14px;
    font-size: 14px;
  }
  .hero-art {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    width: 100%;
    max-width: 290px;
    margin-top: 40px;
  }
  .hero-art figcaption {
    font-size: 11px;
    gap: 5px;
  }
  .hero-art figcaption span:last-child {
    display: none;
  }
  .hero-bottom {
    font-size: 11px;
    gap: 10px;
  }
  .hero-bottom > span {
    max-width: 90px;
  }
  .scroll-cue {
    gap: 10px;
  }
  .film-toggle {
    font-size: 11px;
    padding: 10px 0;
  }
  .section-top {
    margin-bottom: 48px;
    gap: 24px;
  }
  .section-aside {
    max-width: 170px;
    font-size: 12px;
  }
  .collection h2 {
    font-size: clamp(47px, 8.8vw, 67px);
    margin-bottom: 60px;
  }
  .section-pad {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .print-grid {
    gap: 25px;
  }
  .art-print figcaption {
    font-size: 11px;
  }
  .collection-note {
    margin-top: 55px;
  }
  .footer-bottom {
    font-size: 11px;
  }
  .footer-wordmark {
    margin: 45px 0 30px;
  }
}
@media (max-width: 650px) {
  .print-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 380px;
  }
  .art-print figcaption {
    display: flex;
    font-size: 12px;
  }
  .art-print figcaption span:last-child {
    max-width: 110px;
    text-align: right;
    margin-top: 0;
  }
  .hero-bottom > span {
    display: none;
  }
  .hero-bottom {
    padding: 17px 0;
  }
  .footer-top {
    font-size: 12px;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom span {
    display: block;
    margin-top: 5px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}

/* Weather study */
.weather-study {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #172d4b;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center;
  transition: background 0.8s;
}
.study-atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  opacity: 0.2;
  pointer-events: none;
}
.study-atmosphere img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  filter: blur(35px);
  transform: scale(1.12);
}
.weather-study[data-sky="fog"] {
  background: #485663;
}
.weather-study[data-sky="rain"] {
  background: #263d53;
}
.weather-study[data-sky="snow"] {
  background: #304966;
}
.study-copy {
  padding: 20px 0;
}
.study-copy .eyebrow {
  margin-bottom: 48px;
  color: #dce7f2;
}
.study-copy h2 {
  font-size: clamp(52px, 5.8vw, 97px);
  line-height: 1.05;
}
.study-description {
  font-size: 16px;
  line-height: 1.8;
  color: #e0e7ee;
  max-width: 365px;
  margin-top: 35px;
}
.weather-tabs {
  display: flex;
  border-bottom: 1px solid #ffffff50;
  margin-top: 43px;
  max-width: 400px;
}
.weather-tabs button {
  position: relative;
  flex: 1;
  padding: 15px 8px;
  border: 0;
  color: #dbe3ec;
  background: none;
  font-size: 14px;
}
.weather-tabs button:after {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: #fff;
  content: "";
  transform: scaleX(0);
  transition: transform 0.3s;
}
.weather-tabs button[aria-selected="true"] {
  color: white;
}
.weather-tabs button[aria-selected="true"]:after {
  transform: scaleX(1);
}
.weather-tabs button:hover {
  color: #fff;
  background: #ffffff0a;
}
.study-note {
  margin-top: 23px;
  font-size: 12px;
  line-height: 1.7;
  color: #c7d4e0;
}
.study-stage {
  width: 78%;
  max-width: 405px;
  margin: auto;
}
.weather-panel {
  animation: sky-enter 0.7s var(--ease);
}
.weather-panel img {
  width: 100%;
  box-shadow: 0 20px 75px #07121f40;
}
.weather-panel figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  padding-top: 18px;
  color: #dce6f0;
}
.weather-panel figcaption span:last-child {
  text-align: right;
}
@keyframes sky-enter {
  from {
    opacity: 0.4;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/* Useful details */
.details-section {
  --muted: #b2bdc9;
  --line: rgba(226, 235, 245, 0.2);
  background: #111820;
  color: #f3f5f7;
}
.details-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 12vw;
  align-items: center;
}
.detail-photo {
  width: 100%;
  max-width: 425px;
  margin-left: 4vw;
}
.detail-photo figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  font-size: 12px;
}
.detail-photo figcaption span:last-child {
  color: var(--muted);
  text-align: right;
}
.details-copy h2 {
  font-size: clamp(48px, 5.4vw, 89px);
  margin-bottom: 48px;
}
.detail-list {
  border-top: 1px solid var(--line);
}
.detail-list details {
  border-bottom: 1px solid var(--line);
}
.detail-list summary {
  display: flex;
  gap: 18px;
  align-items: center;
  cursor: pointer;
  list-style: none;
  padding: 23px 0;
  font-size: 16px;
}
.detail-list summary::-webkit-details-marker {
  display: none;
}
.detail-number {
  color: var(--muted);
  font-size: 12px;
}
.detail-plus {
  position: relative;
  width: 14px;
  height: 14px;
  margin-left: auto;
  flex-shrink: 0;
}
.detail-plus:before,
.detail-plus:after {
  content: "";
  position: absolute;
  background: currentColor;
  top: 6px;
  left: 0;
  width: 14px;
  height: 1px;
}
.detail-plus:after {
  transform: rotate(90deg);
  transition: transform 0.25s;
}
.detail-list details[open] .detail-plus:after {
  transform: rotate(0);
}
.detail-list details p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  padding: 0 28px 26px 0;
  max-width: 520px;
}
/* Setup and privacy */
.how-section {
  background: #e5e8df;
}
.how-section .section-top {
  align-items: center;
  margin-bottom: 32px;
}
.app-icon {
  border-radius: 13px;
  width: 56px;
  height: 56px;
}
.how-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 45px;
}
.how-heading h2 {
  font-size: clamp(45px, 5vw, 84px);
  line-height: 1.08;
}
.dark-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  background: #253022;
  color: #fff;
  padding: 19px 23px;
  font-size: 14px;
  flex-shrink: 0;
  transition:
    background 0.2s,
    transform 0.2s;
}
.dark-button:hover {
  background: #3b4936;
  transform: translateY(-2px);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5vw;
  margin-top: 90px;
}
.steps article {
  border-top: 1px solid #bec5b7;
  padding-top: 25px;
}
.step-number {
  font-family: var(--serif);
  font-style: normal;
  font-size: 32px;
}
.steps h3 {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: -0.03em;
  margin: 28px 0 13px;
}
.steps p {
  font-size: 16px;
  line-height: 1.8;
  color: #5d6557;
  max-width: 335px;
}
.privacy-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  border-top: 1px solid #bec5b7;
  margin-top: 100px;
  padding-top: 35px;
}
.privacy-note > p {
  font-family: var(--serif);
  font-style: normal;
  font-size: clamp(27px, 3vw, 43px);
  line-height: 1.2;
  letter-spacing: -0.035em;
}
.privacy-note > div > p {
  font-size: 14px;
  color: #5d6557;
  line-height: 1.8;
  max-width: 520px;
}
.privacy-note .text-link {
  margin-top: 18px;
}
/* Wallpaper viewer: photographs keep their original proportions. */
.art-open {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: zoom-in;
}
.art-open:after {
  content: "View wallpaper ↗";
  position: absolute;
  bottom: 14px;
  right: 14px;
  padding: 9px 12px;
  background: #fffffff0;
  color: #18211c;
  font-size: 12px;
  opacity: 0;
  transform: translateY(5px);
  transition:
    opacity 0.25s,
    transform 0.25s;
}
.art-open:hover:after,
.art-open:focus-visible:after {
  opacity: 1;
  transform: none;
}
.art-open img {
  transition: filter 0.35s;
}
.art-open:hover img {
  filter: brightness(1.04);
}
.art-viewer {
  position: fixed;
  inset: 0;
  border: 0;
  padding: 25px 35px;
  margin: auto;
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  background: #121915;
  color: #fff;
  overflow: hidden;
}
.art-viewer::backdrop {
  background: #121915;
}
.art-viewer[open] {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.viewer-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  font-size: 12px;
  letter-spacing: 0.07em;
  flex-shrink: 0;
}
.viewer-toolbar button,
.viewer-controls button {
  background: none;
  border: 0;
  color: #fff;
  padding: 12px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.viewer-toolbar button span {
  font-size: 27px;
  line-height: 1;
}
.art-viewer figure {
  min-height: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  overflow: hidden;
}
.art-viewer figure img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  min-height: 0;
}
.art-viewer figcaption {
  font-size: 14px;
  flex-shrink: 0;
  text-align: center;
  color: #e1e5df;
}
.viewer-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 540px;
  width: 100%;
  margin: auto;
  flex-shrink: 0;
  font-size: 12px;
}
.viewer-controls button:hover,
.viewer-toolbar button:hover {
  background: #ffffff12;
}
.viewer-open {
  overflow: hidden;
}
/* Privacy uses the same type and spacing, preserving the original policy. */
.policy-body .site-header {
  position: relative;
  color: var(--ink);
  border-color: var(--line);
}
.policy-body .nav-cta {
  border-color: #75806f;
}
.policy-body .nav-cta:hover {
  background: var(--ink);
  color: #fff;
}
.policy-body .mobile-nav {
  color: white;
}
.policy-page {
  padding: 80px var(--gutter) 110px;
  max-width: 1250px;
  margin: 0 auto;
}
.policy-hero {
  padding: 10px 0 65px;
  border-bottom: 1px solid var(--line);
}
.policy-hero h1 {
  font-size: clamp(54px, 7vw, 100px);
}
.policy-hero p {
  margin-top: 25px;
  color: var(--muted);
  font-size: 14px;
}
.policy-card {
  max-width: 780px;
  margin-left: 0;
  padding-top: 20px;
}
.policy-card section {
  padding: 35px 0;
  border-bottom: 1px solid var(--line);
}
.policy-card section:last-child {
  border: 0;
}
.policy-card h2 {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 25px;
  letter-spacing: -0.025em;
}
.policy-card h3 {
  font-size: 19px;
  font-weight: 400;
  margin: 28px 0 12px;
}
.policy-card p {
  font-size: 16px;
  line-height: 1.9;
  color: #56604f;
  margin: 14px 0;
}
.policy-card a {
  text-decoration: underline;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}
/* Smaller screens retain the exhibition rhythm without horizontal scrolling. */
@media (max-width: 1100px) {
  .details-layout {
    gap: 8vw;
  }
  .detail-photo {
    margin-left: 0;
  }
  .how-heading {
    display: block;
  }
  .dark-button {
    margin-top: 35px;
  }
  .study-stage {
    width: 90%;
  }
  .study-description {
    max-width: 330px;
  }
}
@media (max-width: 760px) {
  .hero-eyebrow {
    font-size: 12px;
  }
  .hero-bottom-copy p {
    font-size: 16px;
  }
  .nav-cta {
    font-size: 14px;
  }
  .hero-art figcaption,
  .hero-bottom,
  .film-toggle,
  .art-print figcaption,
  .footer-bottom {
    font-size: 12px;
  }
  .weather-study {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .study-copy {
    padding: 0;
  }
  .study-copy .eyebrow {
    margin-bottom: 35px;
  }
  .study-copy h2 {
    font-size: clamp(50px, 8.8vw, 72px);
  }
  .study-description {
    max-width: 460px;
  }
  .weather-tabs {
    max-width: none;
  }
  .study-stage {
    width: 70%;
    max-width: 360px;
    margin: 0 auto;
  }
  .study-note {
    font-size: 12px;
  }
  .study-atmosphere img {
    object-position: 50% 0;
  }
  .details-layout {
    display: flex;
    flex-direction: column-reverse;
    gap: 55px;
    align-items: stretch;
  }
  .details-copy h2 {
    font-size: clamp(48px, 8.8vw, 70px);
  }
  .detail-photo {
    width: 72%;
    max-width: 360px;
    margin: auto;
  }
  .details-section .section-aside {
    max-width: 150px;
  }
  .detail-list summary {
    font-size: 16px;
    gap: 13px;
  }
  .detail-list details p {
    padding-left: 0;
    font-size: 16px;
  }
  .how-heading h2 {
    font-size: clamp(42px, 7.8vw, 64px);
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-top: 60px;
  }
  .steps article {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px 20px;
  }
  .step-number {
    grid-row: 1/3;
    font-size: 27px;
  }
  .steps h3 {
    margin: 0;
    font-size: 20px;
  }
  .steps p {
    grid-column: 2;
    max-width: none;
  }
  .privacy-note {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 70px;
  }
  .privacy-note > div > p {
    font-size: 16px;
  }
  .art-viewer {
    padding: 15px;
  }
  .viewer-toolbar {
    font-size: 12px;
    letter-spacing: 0;
  }
  .viewer-toolbar button {
    gap: 8px;
  }
  .art-viewer figcaption {
    font-size: 12px;
  }
  .art-open:after {
    content: "↗";
    font-size: 16px;
    opacity: 1;
    transform: none;
    padding: 4px 10px;
  }
  .policy-page {
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .policy-hero {
    padding-bottom: 40px;
  }
  .policy-card h2 {
    font-size: 25px;
  }
  .section-aside {
    font-size: 14px;
  }
}
@media (max-width: 380px) {
  .hero h1 {
    font-size: 52px;
  }
  .site-header {
    gap: 8px;
  }
  .nav-cta {
    padding: 9px 11px;
    gap: 10px;
  }
  .brand {
    font-size: 26px;
  }
  .menu-toggle {
    width: 40px;
  }
  .section-top {
    gap: 17px;
  }
  .section-aside {
    max-width: 140px;
  }
  .collection h2 {
    font-size: 43px;
  }
  .how-heading h2 {
    font-size: 38px;
  }
  .dark-button {
    font-size: 13px;
    padding: 17px;
    gap: 20px;
  }
  .weather-panel figcaption {
    font-size: 12px;
    gap: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .weather-panel {
    animation: none;
  }
  .hero-content,
  .hero-art {
    animation: none;
  }
  .art-open img {
    transition: none;
  }
}

/* A soft edge for the photographs, without a card frame. */
:root {
  --image-radius: 26px;
}
.art-print img,
.detail-photo img,
.weather-panel img,
.art-open {
  border-radius: var(--image-radius);
}
.art-open {
  overflow: hidden;
  isolation: isolate;
}
.hero-art img,
.hero-art .art-open {
  border-radius: 18px;
}
.hero-art .art-open {
  box-shadow: 0 18px 70px #06130845;
}
.art-viewer figure img {
  height: 100%;
  width: auto;
  max-height: 100%;
  border-radius: 18px;
}
.site-header {
  background: linear-gradient(180deg, #0d19112b, transparent);
}
.policy-body .site-header {
  background: none;
}
.policy-hero .eyebrow {
  margin: 0 0 28px;
}
.footer-top {
  font-size: 14px;
}
@media (max-width: 760px) {
  :root {
    --image-radius: 22px;
  }
  .hero-art img,
  .hero-art .art-open {
    border-radius: 14px;
  }
  .art-viewer figure img {
    border-radius: 14px;
  }
}

@media (max-width: 650px) {
  .footer-wordmark {
    font-size: 17.8vw;
  }
}
@media (max-width: 380px) {
  .brand {
    font-size: 24px;
  }
  .nav-cta > span {
    display: none;
  }
}
