@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,500;1,9..144,400;1,9..144,600&family=Oswald:wght@500;600;700&family=Outfit:wght@300;400;500;600&display=swap");

:root {
  --paper: #fff8e7;
  --paper-2: #f4ebd6;
  --ink: #161616;
  --ink-soft: #3a3a3a;
  --muted: #6e6e6e;
  --line: rgba(0, 0, 0, 0.1);
  --accent: #ff2d95;
  --magenta: #ff2d95;
  --yellow: #ffe135;
  --lime: #7ed957;
  --cyan: #7ec8e3;
  --forest: #2f8f3a;
  --gold: #ffe135;
  --white: #ffffff;
  --header-h: 80px;
  --max: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

ul {
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  display: block;
  height: 48px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--magenta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: none;
  cursor: pointer;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--ink);
  margin: 5px auto;
  transition: 0.3s var(--ease);
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  min-height: calc(100vh - var(--header-h));
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  padding: 72px 48px 64px 28px;
  max-width: 640px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kicker {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero h1 {
  font-family: Fraunces, serif;
  font-weight: 300;
  font-size: clamp(48px, 6.4vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero h1 em {
  font-style: italic;
  color: var(--magenta);
}

.hero-lead {
  margin-top: 28px;
  max-width: 38ch;
  color: var(--ink-soft);
  font-size: 17px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 22px;
  border: 1px solid var(--magenta);
  background: var(--magenta);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-ghost:hover {
  background: var(--magenta);
  border-color: var(--magenta);
  color: var(--white);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 520px;
}

.hero-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.hero-mark {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 88px;
  height: 88px;
}

/* Marquee */

.marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Layout */

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 96px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
}

.section-head h2,
.page-title h1,
.block-title {
  font-family: Fraunces, serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.section-head p,
.lede {
  color: var(--ink-soft);
  max-width: 46ch;
  font-weight: 300;
}

.link-arrow {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

/* Page hero */

.page-hero {
  padding: 72px 0 40px;
  border-bottom: 1px solid var(--line);
}

.page-title {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

.page-title .kicker {
  margin-bottom: 16px;
}

.page-title .lede {
  margin-top: 18px;
}

/* Philosophy */

.philosophy {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.philosophy article {
  padding: 56px 36px;
  border-right: 1px solid var(--line);
}

.philosophy article:last-child {
  border-right: 0;
}

.philosophy span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.philosophy h3 {
  font-family: Fraunces, serif;
  font-weight: 400;
  font-size: 28px;
  margin-bottom: 14px;
}

.philosophy p {
  color: var(--ink-soft);
  font-weight: 300;
}

/* Cards / gallery */

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.piece {
  display: block;
  color: inherit;
}

.piece-frame {
  background: var(--paper-2);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}

.piece-frame img,
.piece-frame svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.piece:hover .piece-frame img,
.piece:hover .piece-frame svg {
  transform: scale(1.04);
}

.piece-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  font-size: 14px;
}

.piece-meta small {
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11px;
}

/* Featured split */

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 640px;
  border-top: 1px solid var(--line);
}

.split-media {
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 480px;
}

.split-copy {
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-copy h2 {
  font-family: Fraunces, serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 12px 0 20px;
}

.split.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.split.reverse .split-copy {
  order: -1;
}

/* Collections */

.collection-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: block;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.8s var(--ease);
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 17, 15, 0.5), transparent 48%);
  pointer-events: none;
}

.collection-card:hover img {
  transform: scale(1.05);
}

.collection-card span {
  position: absolute;
  inset: auto 24px 24px 24px;
  color: var(--white);
  font-family: Fraunces, serif;
  font-size: 32px;
  z-index: 1;
}

/* Filters */

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 36px 0 28px;
}

.filter-btn {
  border: 1px solid var(--line);
  background: transparent;
  height: 38px;
  padding: 0 16px;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.filter-btn.is-active,
.filter-btn:hover {
  border-color: var(--magenta);
  background: var(--magenta);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-grid .piece.is-hidden {
  display: none;
}

.piece button.open-piece {
  all: unset;
  cursor: pointer;
  display: block;
  width: 100%;
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 17, 15, 0.88);
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-inner {
  max-width: 920px;
  width: 100%;
  background: var(--paper);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.lightbox-inner img,
.lightbox-inner .print-preview {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.lightbox-copy {
  padding: 36px;
}

.lightbox-copy h3 {
  font-family: Fraunces, serif;
  font-size: 32px;
  font-weight: 400;
  margin: 8px 0 12px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: 0;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  z-index: 2;
}

.product-lightbox {
  padding: 24px;
}

.product-lb-frame {
  max-width: 980px;
  width: 100%;
  text-align: center;
}

.product-lb-frame img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #111;
}

.product-lb-meta {
  margin-top: 16px;
  color: var(--white);
}

.product-lb-meta h3 {
  font-family: Fraunces, serif;
  font-weight: 400;
  font-size: 28px;
  color: var(--white);
}

.product-lb-meta .kicker {
  color: rgba(255, 255, 255, 0.7);
  margin: 8px 0 0;
}

.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--white);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.lb-prev {
  left: 18px;
}

.lb-next {
  right: 18px;
}

.lb-arrow[hidden] {
  display: none;
}

/* Team */

.team-card article {
  background: transparent;
}

.team-card .piece-frame {
  aspect-ratio: 4 / 5;
}

.role {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-bio {
  margin-top: 8px;
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 15px;
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.about-grid h2 {
  font-family: Fraunces, serif;
  font-weight: 400;
  font-size: 40px;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.about-grid p + p {
  margin-top: 16px;
}

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.values li {
  background: var(--paper);
  padding: 32px 24px;
}

.values strong {
  display: block;
  font-family: Fraunces, serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
}

.values p {
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 15px;
}

/* Lookbook */

.look {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 56px;
}

.look:nth-child(even) {
  grid-template-columns: 0.6fr 1.4fr;
}

.look:nth-child(even) .look-note {
  order: -1;
}

.look img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.look-note p {
  font-family: Fraunces, serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 12px;
}

.look-note small {
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
}

.studio-lines {
  margin-top: 28px;
  color: var(--ink-soft);
  font-weight: 300;
}

.enquiry .block-title {
  margin-bottom: 8px;
}

.studio-lines a:hover {
  color: var(--magenta);
}

.studio-lines p + p {
  margin-top: 6px;
}

.form {
  display: grid;
  gap: 16px;
}

.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 0 12px;
  outline: none;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-bottom-color: var(--ink);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-status {
  min-height: 24px;
  font-size: 14px;
  color: var(--forest);
}

.form-status.is-error {
  color: var(--accent);
}

/* Collection lines */

.collection-list article {
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}

.collection-list article:first-child {
  padding-top: 0;
}

.collection-list h2 {
  font-family: Fraunces, serif;
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.collection-list p {
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 54ch;
}

.care-list {
  display: grid;
  gap: 22px;
}

.care-list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.care-list strong {
  font-family: Fraunces, serif;
  font-size: 28px;
  font-weight: 400;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.footer-brand {
  margin-bottom: 12px;
}

.footer-brand img {
  display: block;
  height: 56px;
  width: auto;
}

.footer-palms {
  display: block;
  width: 100%;
  height: 90px;
  object-fit: cover;
  object-position: bottom;
}

.brand-poster {
  width: 100%;
  display: block;
  border: 1px solid var(--line);
}

.cloud-band {
  display: block;
  width: 100%;
  height: 88px;
  object-fit: cover;
}

.hero-visual {
  background: var(--magenta);
}

.site-footer p,
.site-footer a {
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 14px;
}

.site-footer h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.site-footer li + li {
  margin-top: 8px;
}

.footer-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-size: 12px;
  color: var(--muted);
}

.footer-legal {
  display: flex;
  gap: 18px;
}

.footer-base a:hover {
  color: var(--magenta);
}

.footer-credit a {
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
}

.legal {
  max-width: 760px;
}

.legal h2 {
  font-family: Fraunces, serif;
  font-weight: 400;
  font-size: 28px;
  margin: 36px 0 12px;
}

.legal p,
.legal li {
  color: var(--ink-soft);
  font-weight: 300;
}

.legal p + p {
  margin-top: 14px;
}

.legal ul {
  margin: 12px 0 0 18px;
  list-style: disc;
}

.legal li + li {
  margin-top: 8px;
}

.legal a {
  border-bottom: 1px solid var(--ink);
}

.creator-note {
  max-width: 760px;
  margin-top: 8px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
}

.creator-note .kicker {
  margin-bottom: 12px;
}

.creator-note h2 {
  font-family: Fraunces, serif;
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 28px;
}

.creator-note p {
  color: var(--ink-soft);
  font-weight: 300;
}

.creator-note p + p {
  margin-top: 14px;
}

.sign-off {
  margin-top: 28px;
  font-family: Fraunces, serif;
  font-style: italic;
  color: var(--ink-soft);
}

.sign-off cite {
  font-style: italic;
}

/* Print frames */

.print-frame {
  width: 100%;
  height: 100%;
}

/* Responsive */

@media (max-width: 980px) {
  .hero,
  .split,
  .split.reverse,
  .about-grid,
  .contact-grid,
  .look,
  .look:nth-child(even),
  .lightbox-inner {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-copy,
  .look:nth-child(even) .look-note {
    order: 0;
  }

  .philosophy,
  .grid-4,
  .values,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .philosophy article {
    border-bottom: 1px solid var(--line);
  }

  .hero-copy,
  .split-copy {
    padding: 48px 28px;
    max-width: none;
    margin: 0;
  }

  .gallery-grid,
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 28px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
  }

  body.nav-open .nav {
    transform: translateX(0);
  }

  .nav a {
    font-size: 22px;
    text-transform: none;
    letter-spacing: 0;
    font-family: Fraunces, serif;
  }

  .philosophy,
  .grid-4,
  .grid-3,
  .grid-2,
  .gallery-grid,
  .values,
  .footer-grid,
  .form-row,
  .care-list li {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-base {
    flex-direction: column;
  }

  .lb-prev {
    left: 8px;
  }

  .lb-next {
    right: 8px;
  }

  .hero h1 {
    font-size: 52px;
  }
}
