:root {
  --paper: #ffffff;
  --paper-warm: #f7f4ee;
  --ink: #10233d;
  --ink-soft: #415066;
  --blue: #0a2d55;
  --blue-soft: #e7f0f5;
  --clay: #b86f55;
  --moss: #496454;
  --line: #d8d2c7;
  --header-h: 74px;
  --max: 1180px;
  --gutter: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: var(--blue);
  color: var(--paper);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  min-height: var(--header-h);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px var(--gutter);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(216, 210, 199, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--clay);
  content: "";
  opacity: 0;
  transform: scaleX(0.25);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(4px) rotate(36deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-4px) rotate(-36deg);
}

.hero {
  position: relative;
  width: 100%;
  min-height: 78svh;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 45, 85, 0.66), rgba(10, 45, 85, 0.16) 58%, rgba(16, 35, 61, 0.12));
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 78svh;
  max-width: 620px;
  flex-direction: column;
  justify-content: center;
  padding: 72px var(--gutter) 96px;
  color: var(--paper);
}

.hero-copy.reveal {
  opacity: 1;
  transform: none;
  animation: heroEntrance 760ms ease both;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-copy .eyebrow,
.text-link.light {
  color: #f6dfc8;
}

h1,
h2,
h3,
.intro-mark,
.statement-block {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 {
  font-size: 4.8rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
}

p + p {
  margin-top: 18px;
}

.hero-copy p:not(.eyebrow) {
  max-width: 460px;
  margin-top: 22px;
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--blue);
  font-weight: 600;
}

.text-link::after {
  content: "->";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.intro-section,
.collections-section,
.gallery-section,
.newsletter-section,
.journal-story,
.approach,
.split-showcase,
.video-section,
.mural-contact,
.contact-hero,
.storefront-intro,
.storefront-products,
.collection-detail-hero,
.collection-summary,
.product-section {
  width: min(100% - 2 * var(--gutter), var(--max));
  margin-inline: auto;
}

.intro-section {
  padding: 90px 0 110px;
}

.intro-mark {
  max-width: 960px;
  margin: 0 auto 64px;
  color: var(--blue);
  font-size: 4.2rem;
  text-align: center;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1fr);
  gap: 72px;
  align-items: center;
}

.intro-image img,
.story-image img,
.wide-image img,
.contact-image img {
  width: 100%;
  height: auto;
}

.intro-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.intro-copy {
  max-width: 620px;
}

.intro-copy h2 {
  color: var(--blue);
  margin-bottom: 34px;
}

.intro-copy p,
.approach-copy p,
.story-copy p,
.contact-copy p {
  color: var(--ink-soft);
}

.collections-section {
  padding: 100px 0 120px;
  border-top: 1px solid var(--line);
}

.section-title {
  max-width: 760px;
  margin-bottom: 44px;
  color: var(--blue);
}

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

.collection-tile {
  display: block;
}

.collection-tile figure,
.story-image,
.wide-image,
.art-item,
.showcase-panel,
.contact-image {
  margin: 0;
}

.collection-tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 480ms ease;
}

.collection-tile figure {
  overflow: hidden;
  background: var(--paper-warm);
}

.collection-tile figcaption {
  display: flex;
  min-height: 112px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 0 0;
  background: var(--paper);
}

.collection-tile span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.9rem;
  line-height: 1.1;
  color: var(--blue);
}

.collection-tile small {
  max-width: 220px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.55;
  text-align: right;
}

.collection-tile:hover img {
  transform: scale(1.025);
}

.newsletter-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(300px, 1fr);
  gap: 68px;
  align-items: end;
  padding: 84px 0;
  border-top: 1px solid var(--line);
}

.newsletter-copy h2 {
  color: var(--blue);
}

.newsletter-copy p:last-child {
  max-width: 420px;
  margin-top: 22px;
  color: var(--ink-soft);
}

.newsletter-form label,
.editorial-form span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.inline-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  margin-top: 12px;
}

input,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  outline: none;
  padding: 14px 0;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
}

button[type="submit"] {
  min-height: 48px;
  border: 1px solid var(--blue);
  border-radius: 0;
  background: var(--blue);
  color: var(--paper);
  cursor: pointer;
  font-weight: 600;
  padding: 0 24px;
  transition: background 180ms ease, color 180ms ease;
}

button[type="submit"]:hover {
  background: transparent;
  color: var(--blue);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 34px var(--gutter);
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.site-footer a:hover {
  color: var(--blue);
}

.page-hero {
  width: min(100% - 2 * var(--gutter), var(--max));
  margin-inline: auto;
  padding: 88px 0 78px;
}

.text-hero {
  max-width: 920px;
  text-align: center;
}

.text-hero h1,
.page-hero-copy h1,
.contact-copy h1 {
  color: var(--blue);
}

.lead {
  max-width: 600px;
  margin: 28px auto 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.image-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(340px, 1fr);
  gap: 64px;
  align-items: center;
}

.image-hero img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.page-hero-copy {
  max-width: 560px;
}

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

.soft-hero img {
  background: var(--blue-soft);
}

.journal-story {
  padding: 12px 0 108px;
}

.story-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(300px, 1fr);
  gap: 80px;
  align-items: center;
  margin: 88px 0;
}

.story-row.reverse {
  grid-template-columns: minmax(300px, 1fr) minmax(280px, 0.85fr);
}

.story-copy {
  max-width: 560px;
}

.story-copy p {
  font-size: 1.02rem;
}

.story-pause,
.story-ending {
  max-width: 760px;
  margin: 104px auto;
  color: var(--blue);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.4rem;
  line-height: 1.18;
  text-align: center;
}

.wide-image {
  margin: 112px 0;
}

.wide-image img {
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.statement-block {
  color: var(--clay);
  font-size: 3.1rem;
}

.story-ending {
  margin-bottom: 0;
}

.story-ending .text-link {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
}

.approach {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px;
  padding: 28px 0 106px;
}

.approach-copy {
  max-width: 560px;
}

.gallery-section {
  padding: 0 0 118px;
}

.art-grid {
  display: grid;
  gap: 34px;
}

.art-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.art-item {
  display: grid;
  gap: 20px;
  align-content: start;
}

.art-item img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  background: var(--paper-warm);
  padding: 18px;
  transition: transform 260ms ease;
}

.art-item:hover img {
  transform: translateY(-4px);
}

.art-item h3 {
  color: var(--blue);
  margin-bottom: 8px;
}

.art-item p,
.showcase-panel p,
.video-copy p,
.mural-contact-copy h2 + p {
  color: var(--ink-soft);
}

.split-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  padding: 6px 0 112px;
}

.showcase-panel {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(220px, 1fr);
  gap: 32px;
  align-items: center;
}

.showcase-panel img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  background: var(--blue-soft);
  padding: 16px;
}

.showcase-panel h2 {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 2rem;
}

.meta-line {
  margin-top: 18px;
  color: var(--moss);
  font-weight: 600;
}

.video-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(360px, 1fr);
  gap: 60px;
  align-items: center;
  padding: 18px 0 104px;
}

.video-copy h2 {
  color: var(--blue);
}

.video-copy p:last-child {
  margin-top: 22px;
}

.video-frame {
  background: var(--paper-warm);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--ink);
}

.mural-contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: 74px;
  align-items: start;
  padding: 92px 0 112px;
  border-top: 1px solid var(--line);
}

.mural-contact-copy h2 {
  color: var(--blue);
  font-size: 2.55rem;
}

.editorial-form {
  display: grid;
  gap: 22px;
}

.editorial-form button {
  justify-self: start;
  margin-top: 10px;
}

.closing-line {
  grid-column: 2;
  color: var(--clay);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(340px, 1fr);
  gap: 78px;
  align-items: center;
  padding: 88px 0 104px;
}

.contact-copy h1 {
  font-size: 4rem;
}

.contact-copy p {
  max-width: 470px;
  margin-top: 24px;
}

.contact-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.compact-contact {
  padding-top: 78px;
}

.storefront-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(320px, 0.85fr);
  gap: 56px;
  align-items: start;
  padding: 54px 0 30px;
}

.storefront-heading h1 {
  color: var(--blue);
  font-size: 3.25rem;
}

.storefront-copy {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
}

.storefront-products {
  padding: 0 0 110px;
}

.storefront-heading .collection-back {
  margin-bottom: 22px;
}

.collection-link span,
.store-link,
.collection-back {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.collection-link span {
  margin-top: 14px;
  border-bottom: 1px solid var(--clay);
  padding-bottom: 5px;
}

.collection-link span::after,
.store-link::after,
.collection-back::before {
  content: "->";
  transition: transform 180ms ease;
}

.collection-back::before {
  content: "<-";
}

.collection-link:hover span::after,
.product-card:hover .store-link::after {
  transform: translateX(4px);
}

.collection-detail-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(360px, 1fr);
  gap: 72px;
  align-items: center;
  padding: 86px 0 78px;
}

.collection-detail-copy h1 {
  color: var(--blue);
  font-size: 4rem;
}

.collection-detail-copy p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 26px;
  color: var(--ink-soft);
}

.collection-back {
  margin-bottom: 32px;
  color: var(--ink-soft);
}

.collection-hero-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
  gap: 18px;
  align-items: center;
}

.collection-hero-media img {
  width: 100%;
  height: auto;
  background: var(--paper-warm);
  object-fit: contain;
  padding: 18px;
}

.collection-hero-media img:first-child {
  aspect-ratio: 3 / 4;
}

.collection-hero-media img:nth-child(2) {
  aspect-ratio: 4 / 5;
}

.landscape-hero .collection-hero-media {
  grid-template-columns: 1fr;
}

.landscape-hero .collection-hero-media img {
  aspect-ratio: 16 / 11;
}

.collection-summary {
  max-width: 760px;
  padding: 0 0 82px;
  color: var(--blue);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.15rem;
  line-height: 1.2;
}

.product-section {
  padding: 84px 0 110px;
  border-top: 1px solid var(--line);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 28px;
}

.product-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
}

.product-card {
  display: grid;
  gap: 10px;
  align-content: start;
}

.product-card img {
  width: 100%;
  height: 360px;
  background: var(--paper-warm);
  object-fit: contain;
  padding: 16px;
  transition: transform 260ms ease;
}

.product-card:hover img {
  transform: translateY(-4px);
}

.product-type {
  color: var(--clay);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
}

.product-card h3 {
  color: var(--blue);
  font-size: 1.24rem;
}

.product-card p {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.store-link {
  margin-top: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes heroEntrance {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  :root {
    --gutter: 22px;
    --header-h: 68px;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2,
  .page-hero-copy h1,
  .contact-copy h1,
  .collection-detail-copy h1 {
    font-size: 2.45rem;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: grid;
    gap: 0;
    justify-content: stretch;
    padding: 18px var(--gutter) 28px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 0;
    font-size: 0.88rem;
  }

  .hero,
  .hero-copy {
    min-height: 76svh;
  }

  .hero-copy {
    padding-top: 60px;
    padding-bottom: 74px;
  }

  .intro-grid,
  .newsletter-section,
  .image-hero,
  .story-row,
  .story-row.reverse,
  .approach,
  .split-showcase,
  .video-section,
  .mural-contact,
  .contact-hero,
  .storefront-intro,
  .collection-detail-hero {
    grid-template-columns: 1fr;
  }

  .storefront-intro {
    gap: 30px;
    padding: 46px 0 26px;
  }

  .intro-mark {
    font-size: 3rem;
  }

  .collection-grid,
  .art-grid.three,
  .art-grid.four,
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-grid.compact {
    grid-template-columns: 1fr 1fr;
    max-width: none;
  }

  .collection-tile figcaption {
    display: block;
  }

  .collection-tile small {
    display: block;
    max-width: none;
    margin-top: 8px;
    text-align: left;
  }

  .art-item img {
    height: 360px;
  }

  .showcase-panel {
    grid-template-columns: 1fr;
  }

  .collection-hero-media {
    max-width: 680px;
  }

  .closing-line {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 18px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    padding-block: 12px;
  }

  h1,
  .contact-copy h1 {
    font-size: 2.85rem;
  }

  h2,
  .page-hero-copy h1,
  .mural-contact-copy h2,
  .storefront-heading h1,
  .collection-detail-copy h1 {
    font-size: 2.05rem;
  }

  .hero,
  .hero-copy {
    min-height: 72svh;
  }

  .hero-scrim {
    background: rgba(10, 45, 85, 0.56);
  }

  .intro-section,
  .collections-section,
  .page-hero,
  .journal-story,
  .approach,
  .gallery-section,
  .split-showcase,
  .video-section,
  .mural-contact,
  .contact-hero,
  .storefront-intro,
  .storefront-products,
  .collection-detail-hero,
  .product-section {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .storefront-products {
    padding-top: 0;
  }

  .storefront-intro {
    gap: 22px;
    padding: 30px 0 20px;
  }

  .storefront-heading .collection-back {
    margin-bottom: 16px;
  }

  .intro-mark,
  .statement-block {
    font-size: 2.25rem;
  }

  .story-pause,
  .story-ending {
    margin: 72px auto;
    font-size: 1.75rem;
  }

  .wide-image {
    margin: 72px 0;
  }

  .wide-image img {
    aspect-ratio: 4 / 3;
  }

  .collection-grid,
  .art-grid.three,
  .art-grid.four,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-grid.compact {
    grid-template-columns: 1fr;
  }

  .collection-tile span {
    font-size: 1.55rem;
  }

  .inline-form {
    grid-template-columns: 1fr;
  }

  button[type="submit"] {
    width: 100%;
  }

  .art-item img {
    height: 330px;
  }

  .showcase-panel img {
    height: 320px;
  }

  .collection-hero-media {
    grid-template-columns: 1fr;
  }

  .collection-hero-media img:first-child,
  .collection-hero-media img:nth-child(2) {
    aspect-ratio: 4 / 3;
  }

  .collection-summary {
    padding-bottom: 64px;
    font-size: 1.65rem;
  }

  .product-card img {
    height: 340px;
  }

  .site-footer {
    display: grid;
  }
}
