@charset "UTF-8";

:root {
  --ink: #181818;
  --ink-soft: #5b5b5b;
  --paper: #ffffff;
  --paper-soft: #f5f5f2;
  --line: #d9d9d4;
  --accent: #c42e75;
  --accent-dark: #9f235e;
  --max-width: 1160px;
  --header-height: 68px;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

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

img {
  height: auto;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-thickness: 0.13em;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid #1775d1;
  outline-offset: 4px;
}

::selection {
  background: var(--accent);
  color: #ffffff;
}

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

p {
  margin-bottom: 1.15em;
}

h1,
h2,
h3 {
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-weight: 500;
  line-height: 1.06;
}

h1,
h2 {
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.4rem;
  font-size: clamp(3.1rem, 7vw, 6.5rem);
}

h2 {
  max-width: 18ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10000;
  padding: 0.6rem 0.9rem;
  background: #ffffff;
  color: #000000;
  font-weight: 700;
  transform: translateY(-200%);
  transition: transform 160ms ease;
}

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

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  background: rgba(18, 18, 18, 0.95);
  color: #ffffff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: min-height 220ms ease, background 220ms ease;
}

.site-header__inner {
  display: flex;
  min-height: var(--header-height);
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: min-height 220ms ease, padding 220ms ease, gap 220ms ease;
}

.site-logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
  transition: opacity 220ms ease, transform 220ms ease, margin 220ms ease;
}

.site-logo img {
  width: 154px;
  transition: width 220ms ease;
}

.site-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: clamp(0.8rem, 2.2vw, 1.8rem);
  list-style: none;
  transition: gap 220ms ease;
}

.site-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: min-height 220ms ease, font-size 220ms ease, letter-spacing 220ms ease;
}

.site-nav a:hover {
  border-bottom: 1px solid #ffffff;
}


/* Hero */

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100svh - var(--header-height)));
  overflow: hidden;
  background: #666666;
  color: #ffffff;
  isolation: isolate;
}

.hero__media,
.hero__slide,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: 0;
  background: #666666;
}

.hero__slide {
  opacity: 0;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  animation: hero-cycle 20s linear infinite;
}

.hero__slide:nth-child(1) {
  animation-delay: 0s;
}

.hero__slide:nth-child(2) {
  animation-delay: -15s;
}

.hero__slide:nth-child(3) {
  animation-delay: -10s;
}

.hero__slide:nth-child(4) {
  animation-delay: -5s;
}

@keyframes hero-cycle {
  0%,
  20% {
    opacity: 1;
  }

  25%,
  95% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.hero__shade {
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.63) 0%,
    rgba(0, 0, 0, 0.4) 45%,
    rgba(0, 0, 0, 0.06) 80%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(calc(100% - 2rem), var(--max-width));
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
  justify-content: center;
  flex-direction: column;
}

.hero__content p {
  max-width: 42rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

/* Shared sections */

.section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  scroll-margin-top: calc(var(--header-height) - 8px);
}

.section--soft {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-soft);
}

.section__inner {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-heading--wide {
  max-width: 920px;
}

.section-heading > p:last-child {
  max-width: 67ch;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

/* Work */

.work-stage {
  position: relative;
  margin: 0;
  text-align: center;
}

.work-stage__button {
  position: relative;
  display: flex;
  width: 100%;
  height: 52vh;
  padding: 0;

  border: 0;
  align-items: center;
  justify-content: center;
  background: none;
  cursor: zoom-in;
  line-height: 0;
}

.work-stage__media {
  position: relative;
  display: inline-flex;
  max-width: 100%;
  height: 100%;
}

.work-stage__img {
  display: block;
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.work-stage__ghost,
.work-modal__ghost {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.18s ease;
}



.work-stage__hover {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2.5rem 1.25rem 1.1rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.72) 100%);
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: left;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.work-stage__button:hover .work-stage__hover,
.work-stage__button:focus-visible .work-stage__hover {
  opacity: 1;
}

.work-stage__hover strong {
  display: block;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.work-stage__caption {
  display: none;
  padding: 0.85rem 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.work-badges {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  display: flex;
  gap: 0.4rem;
  line-height: 1;
}

.work-badge {
  padding: 0.25rem 0.5rem;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-badge--sold {
  background: var(--accent-dark);
}

.work-badge--commission {
  background: #ffffff;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
}

.work-strip {
  position: relative;
  display: flex;
  margin-top: 1.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.work-strip__track {
  display: flex;
  overflow-x: auto;
  justify-content: flex-start;
  flex: 0 1 auto;
  gap: 2px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.work-strip__track::-webkit-scrollbar {
  display: none;
}

.work-thumb {
  position: relative;
  flex: 0 0 auto;
  width: clamp(82px, 10.2vw, 128px);
  padding: 0;
  border: 0;
  background: #e9e9e6;
  cursor: pointer;
}

.work-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  opacity: 0.58;
  transition: opacity 0.2s ease;
}

.work-thumb:hover img,
.work-thumb.is-active img {
  opacity: 1;
}

.work-thumb.is-active {
  outline: 2px solid var(--ink);
  outline-offset: -2px;
}

.work-thumb .work-badges {
  top: 0.35rem;
  left: 0.35rem;
}

.work-thumb .work-badge {
  padding: 0.15rem 0.32rem;
  font-size: 0.55rem;
}

.work-strip__nav {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  place-items: center;
  transition: background 0.2s ease;
}

.work-strip__nav:hover {
  background: #f1f1ee;
}

.work-strip__nav[disabled] {
  cursor: default;
  opacity: 0.3;
}

.work-series {
  display: flex;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem 1.25rem;
}

.work-series__label {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-series__list {
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
}

.work-series__divider {
  width: 1px;
  height: 1.1em;
  margin: 0 0.35rem;
  background: var(--line);
  align-self: center;
}

.work-series__button {
  padding: 0.15rem 0;
  border: 0;
  border-bottom: 2px solid transparent;
  background: none;
  color: var(--ink-soft);
  cursor: pointer;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.work-series__button:hover {
  color: var(--ink);
}

.work-series__button.is-active {
  border-bottom-color: var(--accent-dark);
  color: var(--ink);
}

/* Work modal */

.work-modal {
  position: fixed;
  z-index: 2000;
  display: grid;
  inset: 0;
  place-items: center;
  background: #000000;
}

.work-modal[hidden] {
  display: none;
}

.work-modal__backdrop {
  position: absolute;
  inset: 0;
  background: #000000;
}

.work-modal__dialog {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

.work-modal__frame {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.work-modal__frame img {
  display: block;
  width: auto;
  height: auto;
  max-width: 92vw;
  max-height: 88vh;
}

.work-modal__hover {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2.5rem 1.25rem 1.1rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.72) 100%);
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: left;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.work-modal__frame .work-badges {
  opacity: 0;
  transition: opacity 0.25s ease;
}

@media (hover: hover) {
  .work-modal__frame:hover .work-modal__hover,
  .work-modal__frame:hover .work-badges {
    opacity: 1;
  }
}

@media (hover: none) {
  .work-modal__frame .work-badges {
    opacity: 1;
  }

  .work-modal__hover {
    display: none;
  }
}


.work-modal__hover strong {
  display: block;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.work-modal__caption {
  display: none;
}

.work-modal__close,
.work-modal__nav {
  position: absolute;
  z-index: 2;
  display: grid;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  place-items: center;
  transition: color 0.2s ease, opacity 0.4s ease;
}

.work-modal__close:hover,
.work-modal__nav:hover {
  color: #ffffff;
}

.work-modal__close {
  top: 1rem;
  right: 1rem;
  z-index: 3;
  width: clamp(56px, 7vw, 88px);
  height: clamp(56px, 7vw, 88px);
  padding: 0.75rem;
}

.work-modal__nav {
  top: 25%;
  bottom: auto;
  width: clamp(72px, 15vw, 180px);
  height: 50%;
  transform: none;
}

.work-modal.is-idle .work-modal__nav,
.work-modal.is-idle .work-modal__close {
  opacity: 0;
}

.work-modal.is-idle .work-modal__nav:focus-visible,
.work-modal.is-idle .work-modal__close:focus-visible {
  opacity: 1;
}

@media (hover: none) {
  .work-modal.is-idle .work-modal__nav,
  .work-modal.is-idle .work-modal__close {
    opacity: 1;
  }
}


.work-modal__nav--prev {
  left: 0;
}

.work-modal__nav--next {
  right: 0;
}

/* Shop */

.shop-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-card {
  position: relative;
  display: flex;
  min-height: clamp(290px, 31vw, 395px);
  margin: 0;
  padding: 0;
  overflow: hidden;
  align-items: flex-end;
  border: 0;
  background-color: #666666;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #ffffff;
  cursor: pointer;
  isolation: isolate;
  text-align: left;
  transition: transform 180ms ease;
}

.category-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.02) 35%,
    rgba(0, 0, 0, 0.75) 100%
  );
  content: "";
}

.category-card:hover,
.category-card[aria-expanded="true"] {
  transform: translateY(-3px);
}

.category-card--prints {
  background-image: url("assets/images/wall-art-background-2.jpg");
}

.category-card--cards {
  background-image: url("assets/images/greeting-cards-background-2.jpg");
}

.category-card--coasters {
  background-image: url("assets/images/coasters-background.jpg");
}

.category-card span {
  display: block;
  padding: 1.45rem;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.notice,
.shop-error {
  margin: 2rem 0 0;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  background: #ffffff;
}

.shop-panel {
  margin-top: 2rem;
  padding: clamp(1.2rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  background: #ffffff;
  scroll-margin-top: calc(var(--header-height) - 8px);
}

.shop-panel[hidden] {
  display: none;
}

.shop-panel__header {
  display: flex;
  margin-bottom: 2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.shop-panel__header h3 {
  margin-bottom: 0;
}

.shop-panel__close,
.shop-retry {
  min-height: 40px;
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--line);
  background: #ffffff;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-panel__close:hover,
.shop-retry:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #ffffff;
}

.shopify-collection {
  min-height: 220px;
}

.shop-loading {
  display: grid;
  min-height: 220px;
  margin: 0;
  place-items: center;
  color: var(--ink-soft);
}

.shop-error {
  margin-top: 0;
}

/* Services */

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

.service-card {
  display: grid;
  border: 1px solid var(--line);
  background: #ffffff;
  grid-template-rows: auto 1fr;
}

.service-gallery {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #e9e9e6;
}

.service-gallery__track {
  width: 100%;
  height: 100%;
}

.service-gallery__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-gallery__slide.is-active {
  opacity: 1;
}

.service-gallery__nav {
  position: absolute;
  top: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  cursor: pointer;
  place-items: center;
  transform: translateY(-50%);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.service-gallery__nav:hover {
  background: #ffffff;
}

.service-gallery__nav--prev {
  left: 0.75rem;
}

.service-gallery__nav--next {
  right: 0.75rem;
}

.service-gallery__count {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  margin: 0;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
}

.service-card__content {
  padding: clamp(1.5rem, 3vw, 2.25rem);
}


.service-card__content p:last-child {
  margin-bottom: 0;
}

.service-card__note {
  margin-top: 1.15em;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.service-card__note a {
  color: var(--ink);
  font-weight: 700;
}

/* About and brief history */

.about-grid {
  display: grid;
  grid-template-columns: 140px minmax(0, 620px);
  gap: 2.5rem;
  align-items: start;
  justify-content: center;
}

.about-grid__image {
  width: 140px;
}

.about-grid__image img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 50%;
  background: var(--paper-soft);
}

.about-grid__content > p:not(.eyebrow) {
  max-width: 62ch;
  font-size: 1.04rem;
}

.about-grid__content > p:last-of-type {
  margin-bottom: 0;
}

.expandable-content {
  width: 100%;
  margin-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
}

.expandable-content + .expandable-content {
  margin-top: 0;
}

.expandable-content:last-of-type {
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.expandable-content summary {
  display: flex;
  min-height: 44px;
  padding: 1rem 0;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  cursor: pointer;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  list-style: none;
  text-transform: uppercase;
}

.expandable-content summary::-webkit-details-marker {
  display: none;
}

.expandable-content summary::after {
  content: "+";
  font-size: 1.15rem;
  line-height: 1;
}

.expandable-content[open] summary::after {
  content: "\2212";
}

.expandable-content__body {
  max-width: 62ch;
  padding: 0.25rem 0 1.5rem;
}

.expandable-content__body h3 {
  margin-bottom: 1.25rem;
}

.expandable-content__body > p:last-child {
  margin-bottom: 0;
}

.expandable-content__body .stockist-intro {
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
}

.stockist-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stockist-card {
  display: flex;
  min-height: 180px;
  padding: 1.25rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: #ffffff;
  text-align: center;
  flex-direction: column;
}

.stockist-card img {
  width: min(78%, 200px);
  max-height: 90px;
  margin: auto;
  object-fit: contain;
}

.stockist-card p {
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

/* FAQ */

.faq-layout {
  display: grid;
  align-items: start;
  gap: 2.5rem 5rem;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
}

.faq-layout .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  margin-bottom: 0;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 1.2rem 3rem 1.2rem 0;
  cursor: pointer;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 500;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  content: "+";
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 1.3rem;
  line-height: 1.3rem;
  text-align: center;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details > div {
  padding: 0 3rem 1.3rem 0;
}

.faq-list details p:last-child {
  margin-bottom: 0;
}

/* Footer */

.site-footer {
  scroll-margin-top: calc(var(--header-height) - 8px);
  background: var(--ink);
  color: #ffffff;
}

.site-footer__inner {
  display: grid;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 6rem) 0 2rem;
  gap: 3rem;
  grid-template-columns: minmax(0, 1fr) auto;
}

.footer-contact {
  max-width: 680px;
}

.site-footer__logo {
  width: 166px;
  margin-bottom: 2.5rem;
}

.site-footer .eyebrow {
  color: #f1a1c5;
}

.footer-email {
  display: inline-block;
  color: #ffffff;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  text-decoration: none;
}

.footer-email:hover {
  color: #f1a1c5;
}

.social-links {
  display: flex;
  margin-top: 1.8rem;
  gap: 0.75rem;
}

.social-links a {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  text-decoration: none;
}

.social-links a:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.social-links img {
  width: 22px;
  height: 22px;
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-nav a:hover {
  color: #ffffff;
}

.site-footer__legal {
  margin: 1rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  grid-column: 1 / -1;
}

/* Responsive layout */

@media (max-width: 980px) {
  .work-stage__button {
    height: 46vh;
  }




  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-layout .section-heading {
    position: static;
  }

  .stockist-grid {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 104px;
  }

  /* Collapsed mobile bar is ~40px tall, so anchors only clear that. */
  .section,
  .shop-panel,
  .site-footer {
    scroll-margin-top: 32px;
  }





  .site-header {
    height: var(--header-height);
    min-height: var(--header-height);
    overflow: visible;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    pointer-events: none;
    transition: none;
  }



  .site-header::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    background: rgba(18, 18, 18, 0.95);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    content: "";
    transform: scaleY(0.38);
    transform-origin: top;
    opacity: 0;
    transition: opacity 180ms ease;
    will-change: opacity;
    pointer-events: none;
  }

  .site-header--nav-bg::before {
    opacity: 1;
  }



  .site-header__inner {
    position: relative;
    z-index: 1;
    height: var(--header-height);
    min-height: var(--header-height);
    padding: 0.65rem 0;
    justify-content: center;
    flex-direction: column;
    gap: 0.25rem;
    pointer-events: none;
    transition: none;
  }

  .site-logo,
  .site-nav {
    pointer-events: auto;
    will-change: transform, opacity;
  }

  .site-logo {
    transition: opacity 160ms ease, transform 180ms ease;
  }

  .site-nav {
    transform-origin: top center;
    transition: transform 180ms ease;
  }

  .site-logo img {
    width: 138px;
  }

  .site-header--hide-logo {
    height: var(--header-height);
    min-height: var(--header-height);
  }

  .site-header--hide-logo::before {
    transform: scaleY(0.38);
  }

  .site-header--hide-logo .site-logo {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-3rem);
  }

  .site-header--hide-logo .site-nav {
    transform: translateY(-3.18rem) scale(0.84);
  }


  .site-header--hide-logo .site-nav a {
    min-height: 44px;
  }


  .site-nav ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 1rem;
  }

  .site-nav a {
    min-height: 32px;
    font-size: 0.68rem;
  }



  .hero {
    margin-top: calc(-1 * var(--header-height));
    padding-top: var(--header-height);
    min-height: calc(max(100svh, 670px) + var(--header-height));
  }



  .hero__shade {
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.66) 0%,
      rgba(0, 0, 0, 0.4) 75%,
      rgba(0, 0, 0, 0.18) 100%
    );
  }

  .shop-grid,
  .service-grid {
    grid-template-columns: 1fr;

  }

  .category-card {
    min-height: 330px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    justify-content: start;
  }

  .about-grid__image {
    width: 110px;
  }

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

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  h1 {
    font-size: clamp(2.75rem, 14vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2.15rem, 11vw, 3.8rem);
  }

  .section {
    padding: 4.2rem 0;
  }

  .hero {
    min-height: 600px;
  }

  .hero__content {
    padding-bottom: 4.5rem;
    justify-content: flex-end;
  }

  .hero__slide {
    background-position: 60% center;
  }

  .work-stage__button {
    height: min(78vw, 60vh);
  }

  .work-stage__hover {
    display: none;
  }


  .work-modal__caption {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    display: block;
    margin: 0;
    padding: 0 3.75rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    text-align: center;
  }

  .work-modal__nav {
    top: auto;
    bottom: 0.4rem;
    width: 3rem;
    height: 3rem;
    color: rgba(255, 255, 255, 0.85);
  }

  .work-modal__frame img {
    max-height: 74vh;
  }

  .work-stage__caption {
    display: none;
  }


  .service-card__content {
    padding: 1.4rem;
  }


  .shop-panel {
    padding: 1rem;
  }

  .shop-panel__header {
    align-items: flex-start;
  }

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

  .stockist-card {
    min-height: 150px;
  }

  .faq-list summary {
    padding-right: 2.4rem;
    font-size: 1.12rem;
  }

  .faq-list details > div {
    padding-right: 0;
  }

  .footer-email {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero__slide {
    animation-timing-function: steps(1, end);
  }
}
.expandable-content__body--wide {
  max-width: none;
}
