:root {
  color-scheme: light;
  --paper: #b8adad;
  --paper-dark: #aea3a3;
  --ink: #050505;
  --white: #f7f5f1;
  --muted: rgba(5, 5, 5, 0.62);
  --line: rgba(5, 5, 5, 0.18);
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.18;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23grain)' opacity='0.55'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

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

a {
  color: inherit;
}

h1,
h2,
p {
  margin: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: clamp(18px, 3vw, 42px) clamp(18px, 5vw, 72px);
  color: var(--white);
  mix-blend-mode: screen;
}

.brand,
.nav,
.hero__tag,
.hero__kicker,
.section-label {
  font-size: clamp(0.82rem, 1.35vw, 1.18rem);
  font-weight: 400;
  letter-spacing: 0;
}

.brand,
.nav a,
.hero__actions a,
.contact-link,
.footer a {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  gap: 0.45em;
  align-items: baseline;
  width: max-content;
  font-weight: 700;
  text-transform: uppercase;
}

.brand span {
  font-size: 1.35em;
}

.brand small {
  font-size: 0.68em;
}

.nav {
  display: flex;
  gap: clamp(16px, 3vw, 42px);
  text-transform: uppercase;
}

.nav a:hover,
.nav a:focus-visible,
.hero__actions a:hover,
.hero__actions a:focus-visible,
.contact-link:hover,
.contact-link:focus-visible,
.footer a:hover,
.footer a:focus-visible {
  opacity: 0.58;
  outline: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #1a1713;
  color: var(--white);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.08) 54%, rgba(0, 0, 0, 0.52) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.1), transparent 44%);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
}

.hero__tag,
.hero__title {
  position: absolute;
  z-index: 2;
}

.hero__tag {
  color: var(--white);
  font-size: clamp(1.35rem, 3.1vw, 3.4rem);
  line-height: 1;
}

.hero__tag--one {
  top: 12%;
  left: 12%;
}

.hero__tag--two {
  top: 12%;
  right: 12%;
}

.hero__tag--three {
  top: 44%;
  left: 12%;
}

.hero__title {
  left: clamp(24px, 9vw, 136px);
  bottom: clamp(30px, 8vw, 112px);
  max-width: min(840px, calc(100vw - 48px));
}

.hero__kicker {
  margin-bottom: 0.08em;
  font-size: clamp(2.25rem, 5.6vw, 6rem);
  font-weight: 800;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(1.75rem, 4.1vw, 4.6rem);
  font-weight: 400;
  line-height: 1;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 22px;
  font-size: clamp(1rem, 1.3vw, 1.22rem);
}

.hero__actions a,
.contact-link {
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.18em;
}

.seal-row {
  min-height: clamp(220px, 28vw, 390px);
  padding: clamp(52px, 7vw, 94px) clamp(24px, 6vw, 88px);
  background: var(--paper);
}

.seal {
  display: grid;
  place-items: center;
  width: clamp(112px, 13vw, 160px);
  aspect-ratio: 1;
  color: rgba(5, 5, 5, 0.64);
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.seal strong {
  font-size: clamp(1.5rem, 3vw, 2.7rem);
}

.seal span {
  font-size: clamp(0.78rem, 1.15vw, 1.05rem);
  letter-spacing: 0.42em;
}

.spread {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: clamp(12px, 1.25vw, 20px);
  max-width: 1660px;
  margin: 0 auto;
  padding: clamp(62px, 8vw, 124px) clamp(24px, 6vw, 92px);
  background: var(--paper);
}

.shot {
  position: relative;
  margin: 0;
  overflow: visible;
}

.shot img {
  height: 100%;
  object-fit: cover;
}

.caption {
  z-index: 3;
  align-self: end;
  color: var(--ink);
  line-height: 0.92;
}

.caption h2 {
  font-size: clamp(1.68rem, 3.2vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.caption p {
  font-size: clamp(1.46rem, 2.75vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0;
}

.caption--right,
.caption--sequin,
.caption--white {
  text-align: right;
}

.caption--left {
  grid-column: 1 / span 4;
  grid-row: 1;
  margin-bottom: 42px;
}

.shot--mountain-main {
  grid-column: 5 / span 7;
  grid-row: 1 / span 2;
  height: clamp(720px, 72vw, 1060px);
}

.shot--mountain-main img {
  filter: grayscale(1) contrast(1.02);
  object-position: 50% 50%;
}

.shot--yarn {
  grid-column: 1 / span 4;
  grid-row: 2;
  height: clamp(560px, 58vw, 820px);
  margin-top: clamp(40px, 6vw, 96px);
}

.shot--yarn img {
  filter: grayscale(1) contrast(1.08);
  object-position: 52% 50%;
}

.shot--brown {
  grid-column: 7 / span 5;
  grid-row: 3;
  height: clamp(560px, 58vw, 840px);
  margin-top: clamp(140px, 12vw, 220px);
}

.shot--brown img {
  object-position: 53% 46%;
}

.caption--right {
  grid-column: 7 / span 5;
  grid-row: 4;
}

.shot--pink-dress {
  grid-column: 1 / span 6;
  grid-row: 1;
  height: clamp(620px, 62vw, 930px);
}

.shot--pink-dress img {
  object-position: 47% 50%;
}

.shot--hydrangea {
  grid-column: 7 / span 6;
  grid-row: 1;
  height: clamp(620px, 62vw, 930px);
}

.shot--hydrangea img {
  filter: sepia(0.18) saturate(0.82) brightness(0.74) hue-rotate(20deg);
  object-position: 52% 42%;
}

.caption--pink {
  grid-column: 1 / span 5;
  grid-row: 2;
  align-self: start;
  padding-top: 22px;
}

.shot--purple {
  grid-column: 1 / span 6;
  grid-row: 3;
  height: clamp(620px, 64vw, 980px);
  margin-top: clamp(96px, 10vw, 160px);
}

.shot--purple img {
  object-position: 50% 50%;
}

.shot--sequin {
  grid-column: 7 / span 6;
  grid-row: 3;
  height: clamp(620px, 64vw, 980px);
  margin-top: clamp(96px, 10vw, 160px);
}

.shot--sequin img {
  object-position: 50% 48%;
}

.caption--sequin {
  grid-column: 7 / span 6;
  grid-row: 4;
  align-self: start;
  padding-top: 28px;
}

.shot--atelier-line {
  grid-column: 1 / span 6;
  grid-row: 1;
  height: clamp(680px, 68vw, 1020px);
}

.shot--atelier-line img {
  object-position: 46% 50%;
}

.shot--agapanthus {
  z-index: 4;
  grid-column: 6 / span 3;
  grid-row: 1;
  align-self: end;
  height: clamp(260px, 30vw, 460px);
  margin: 0 0 -6vw -22%;
}

.shot--agapanthus img {
  object-position: 50% 45%;
}

.caption--ivory {
  grid-column: 1 / span 5;
  grid-row: 2;
  align-self: start;
  padding-top: 24px;
}

.shot--white-knit {
  grid-column: 6 / span 6;
  grid-row: 3;
  height: clamp(720px, 70vw, 1060px);
  margin-top: clamp(120px, 12vw, 190px);
}

.shot--white-knit img {
  object-position: 50% 44%;
}

.shot--calla {
  z-index: 4;
  grid-column: 5 / span 3;
  grid-row: 3;
  align-self: start;
  height: clamp(260px, 30vw, 440px);
  margin-top: clamp(240px, 24vw, 360px);
}

.shot--calla img {
  object-position: 50% 48%;
}

.caption--white {
  grid-column: 7 / span 5;
  grid-row: 4;
  align-self: start;
  padding-top: 24px;
}

.custom,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.1fr);
  gap: clamp(28px, 8vw, 120px);
  max-width: 1660px;
  margin: 0 auto;
  padding: clamp(82px, 9vw, 148px) clamp(24px, 6vw, 92px);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.section-label {
  color: var(--muted);
  text-transform: uppercase;
}

.custom h2,
.contact h2 {
  grid-column: 2;
  max-width: 960px;
  font-size: clamp(2.6rem, 6vw, 7.2rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.custom__grid,
.contact__actions {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 42px);
  margin-top: 16px;
  font-size: clamp(1rem, 1.4vw, 1.28rem);
  line-height: 1.28;
}

.contact__actions {
  grid-template-columns: 1fr 1fr;
}

.legal-note {
  grid-column: 2;
  max-width: 760px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.35;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(24px, 6vw, 92px);
  border-top: 1px solid var(--line);
  background: var(--paper-dark);
  color: rgba(5, 5, 5, 0.68);
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
    grid-template-columns: 1fr;
    gap: 12px;
    mix-blend-mode: normal;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.82rem;
  }

  .hero__image {
    object-position: 50% 50%;
  }

  .hero__tag {
    font-size: clamp(1.08rem, 6vw, 2rem);
  }

  .hero__tag--one {
    top: 12%;
    left: 8%;
  }

  .hero__tag--two {
    top: 12%;
    right: 8%;
  }

  .hero__tag--three {
    top: 42%;
    left: 8%;
  }

  .hero__title {
    left: 24px;
    bottom: 54px;
  }

  .seal-row {
    min-height: 210px;
  }

  .spread {
    display: block;
    min-height: 0;
    padding: 48px 20px 74px;
  }

  .shot {
    height: auto;
    margin: 0 0 14px;
  }

  .shot img {
    height: auto;
    aspect-ratio: auto;
  }

  .shot--mountain-main,
  .shot--pink-dress,
  .shot--hydrangea,
  .shot--purple,
  .shot--sequin,
  .shot--atelier-line,
  .shot--white-knit {
    height: auto;
    margin-top: 0;
  }

  .shot--yarn,
  .shot--brown {
    width: min(82vw, 420px);
    height: auto;
    margin-top: 80px;
  }

  .shot--brown {
    margin-left: auto;
  }

  .shot--agapanthus,
  .shot--calla {
    width: min(42vw, 220px);
    height: auto;
    margin: -70px 8vw 28px auto;
  }

  .caption,
  .caption--right,
  .caption--sequin,
  .caption--white {
    margin: 16px 0 70px;
    text-align: left;
  }

  .caption h2 {
    font-size: clamp(1.78rem, 9vw, 3.15rem);
  }

  .caption p {
    font-size: clamp(1.48rem, 7vw, 2.65rem);
  }

  .custom,
  .contact {
    grid-template-columns: 1fr;
    padding: 72px 20px;
  }

  .custom h2,
  .contact h2,
  .custom__grid,
  .contact__actions,
  .legal-note {
    grid-column: auto;
  }

  .custom__grid,
  .contact__actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 92svh;
  }

  .hero__kicker {
    font-size: 2.5rem;
  }

  .hero h1 {
    font-size: 1.82rem;
  }

  .hero__actions {
    font-size: 0.98rem;
  }

  .footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
