:root {
  --ink: #111;
  --rule: #b8b8b8;
  --active: #e9aaa3;
  --canvas: 1425px;
  --font-book: "Trebuchet MS", "Century Gothic", Arial, sans-serif;
  --font-light: "Segoe UI Light", "Trebuchet MS", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

/* Preserve the site's original 90% desktop composition at normal browser zoom. */
@media (min-width: 901px) {
  html {
    zoom: 0.9;
  }
}

body {
  margin: 0;
  min-width: 0;
  padding-top: 67px;
  color: var(--ink);
  background: #fff;
  font-family: var(--font-book);
  font-weight: 400;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  padding: 0.65rem 1rem;
  background: #fff;
  transform: translateY(-120%);
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding-bottom: 14px;
  z-index: 10;
  background: #fff;
}

.header-inner {
  position: relative;
  width: min(var(--canvas), calc(100% - 30px));
  min-height: 67px;
  margin: 0 auto;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: end;
}

.header-inner::before {
  position: absolute;
  top: calc(100% - 50px);
  right: 0;
  left: 0;
  border-top: 1px solid var(--rule);
  content: "";
  pointer-events: none;
}

.site-title {
  flex: 0 0 205px;
  padding: 0 18px 14px;
  font-family: var(--font-book);
  font-size: 21px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.primary-navigation {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(8, minmax(max-content, 1fr));
  align-items: stretch;
  font-family: var(--font-light);
  font-size: 16px;
  font-weight: 300;
}

.primary-navigation a {
  min-height: 49px;
  padding: 16px 17px 12px;
  border-left: 1px solid var(--rule);
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.primary-navigation a:hover,
.primary-navigation a:focus-visible,
.primary-navigation .active {
  color: var(--active);
}

.header-basket {
  flex: 0 0 auto;
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  gap: 4px;
  padding: 0 9px;
  border-left: 1px solid var(--rule);
  color: inherit;
  text-decoration: none;
}

.header-basket:hover,
.header-basket:focus-visible {
  color: var(--active);
}

.header-basket-icon {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.header-basket-count {
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font: 8px/1 Arial, sans-serif;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  width: 100%;
  margin: 14px 0 0;
}

.hero > img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-card {
  position: absolute;
  top: 39%;
  left: 50%;
  width: 272px;
  padding: 24px 22px 21px;
  border: 0.5px solid #111;
  border-radius: 10px;
  background: rgb(255 255 255 / 84%);
  box-shadow: 0 0 32px rgb(255 255 255 / 75%);
  text-align: center;
  transform: translate(-50%, -50%);
}

.hero-card h1 {
  margin: 0 0 17px;
  font-family: var(--font-book);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.hero-card a {
  display: inline-block;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-family: var(--font-light);
  font-size: 14px;
  text-decoration: none;
}

.hero-card a:hover,
.hero-card a:focus-visible {
  background: transparent;
}

.standard-content {
  width: min(902px, calc(100% - 40px));
  margin: 0 auto;
}

.page-heading {
  margin: 24px 0 54px;
  font-family: var(--font-book);
  font-size: 60px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.standard-content-figure {
  margin: 0;
}

.about-portrait-figure {
  width: 50%;
  margin-inline: auto;
}

.about-content {
  display: grid;
  grid-template-columns: 451px minmax(0, 1fr);
  gap: 0 40px;
  align-items: start;
}

.about-content .page-heading {
  grid-column: 1 / -1;
  margin-bottom: 27px;
}

.about-content .about-portrait-figure {
  width: 100%;
  margin: 0;
}

.about-content .standard-content-prose {
  width: 100%;
  margin: 0;
}

.standard-content-image-wrap {
  position: relative;
}

.standard-content-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.image-caption {
  position: absolute;
  bottom: 52px;
  left: 50%;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 4px rgb(0 0 0 / 45%);
  transform: translateX(-50%);
}

.image-caption span,
.image-caption strong {
  display: block;
  font-weight: 400;
}

.image-caption span {
  margin-bottom: 7px;
  font-family: var(--font-light);
  font-size: 13px;
}

.image-caption strong {
  font-family: var(--font-book);
  font-size: 30px;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.standard-content-prose {
  width: min(760px, 100%);
  margin: 104px auto 0;
  font-family: var(--font-light);
  font-size: 14px;
  line-height: 1.45;
}

.standard-content-prose p {
  margin: 0 0 24px;
}

.standard-content-footer {
  width: min(902px, calc(100% - 40px));
  padding-bottom: 80px;
}

.standard-content-footer .footer-email {
  padding-top: 22px;
}

.book-content { width: min(980px, calc(100% - 40px)); margin: 36px auto 0; padding-bottom: 100px; }
.book-intro { width: min(720px, 100%); margin: 0 auto 56px; font-family: var(--font-light); font-size: 15px; line-height: 1.55; }
.book-intro h1 { margin: 0 0 28px; font-family: var(--font-book); font-size: clamp(34px, 4vw, 52px); font-weight: 400; line-height: 1.05; text-align: center; }
.book-intro p { margin: 0 0 20px; }
.book-status { font-family: var(--font-book); font-size: 20px; text-align: center; }
.book-enquiry { text-align: center; }
.book-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; align-items: start; }
.book-gallery-portrait { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 740px; margin: 0 auto; }
.book-gallery-item { margin: 0; }
.book-gallery-item img { display: block; width: 100%; height: auto; }
.book-cover { grid-column: 1 / -1; width: min(100%, 400px); margin: 0 auto; }
.book-gallery-item-map { align-self: center; }

/* Replica of the original short-sighted goose story page. */
.goose-story-page {
  width: min(1520px, calc(100% - 48px));
  margin: 30px auto 0;
  padding-bottom: 90px;
}

.goose-story-display {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(360px, 1.08fr) minmax(0, .96fr);
  gap: 46px;
  align-items: start;
}

.goose-story-panel { margin: 0; }

.goose-story-panel img {
  display: block;
  width: 100%;
  height: auto;
}

.goose-story-panel--cover { padding-top: 4px; }

.goose-story-panel--left,
.goose-story-panel--right {
  display: grid;
  gap: 22px;
}

.goose-story-pair,
.goose-story-spread {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.goose-story-pair { gap: 18px; }
.goose-story-spread { gap: 0; }

.goose-story-pair img,
.goose-story-spread img {
  aspect-ratio: 1;
  object-fit: contain;
}

.goose-story-status {
  width: min(1200px, calc(100% - 48px));
  margin: 28px auto 20px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #efefef;
  color: inherit;
  font: 15px/1.2 var(--font-light);
  text-align: center;
}

.goose-story-price {
  margin: 28px auto -12px;
  font: 400 18px/1.2 var(--font-light);
  text-align: center;
}

.goose-story-summary {
  display: grid;
  grid-template-columns: minmax(0, 540px) max-content;
  width: min(740px, 100%);
  margin: 0 auto;
  gap: 34px;
  align-items: start;
  font: 15px/1.45 var(--font-light);
}

.goose-story-summary p { margin: 0; }

.goose-story-tales {
  text-align: center;
  transform: translateY(-10px);
}

.goose-story-tales-box {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  padding: 8px 10px;
  color: inherit;
  text-decoration: none;
}

.goose-story-tales-name { font-family: var(--font-book); }

.goose-story-tales-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.goose-story-tales-icons img { display: block; height: 36px; width: auto; }

.westies-page {
  width: min(1700px, calc(100% - 64px));
  margin: 32px auto 0;
  padding-bottom: 78px;
}

.westies-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(0, 1.45fr) repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.westies-showcase-item { height: min(400px, 25vw); margin: 116px 0 0; }
.westies-showcase-item img { display: block; width: 100%; height: 100%; object-fit: cover; }

.westies-showcase-cover {
  height: min(580px, 36.25vw);
  margin-top: 0;
}

.westies-copy {
  width: min(920px, 100%);
  margin: 36px auto 0;
  font: 15px/1.45 var(--font-light);
  text-align: center;
}

.westies-copy p { margin: 0 0 24px; }
.westies-copy a { color: inherit; text-decoration: underline; }
.westies-title,
.westies-emphasis { text-decoration: underline; }
.westies-product-price { font: 400 18px/1.2 var(--font-light); }
.westies-product-status { width: min(600px, 100%); margin: 0 auto !important; padding: 10px 16px; border-radius: 999px; background: #efefef; }

@media (max-width: 760px) {
  .goose-story-page {
    width: min(100% - 32px, 620px);
    margin-top: 24px;
    padding-bottom: 64px;
  }

  .goose-story-display { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .goose-story-panel--left { max-width: 480px; margin-inline: auto; }
  .goose-story-panel--right { max-width: 480px; margin-inline: auto; }
  .goose-story-status { width: 100%; margin-top: 24px; }
  .goose-story-summary { grid-template-columns: minmax(0, 1fr); gap: 14px; }

  .westies-page { width: min(100% - 32px, 620px); margin-top: 32px; padding-bottom: 72px; }
  .westies-showcase { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .westies-showcase-item,
  .westies-showcase-cover { width: min(100%, 400px); height: auto; margin: 0 auto; }
  .westies-showcase-item img { height: auto; }
  .westies-showcase-cover { order: -1; }
  .westies-copy { margin-top: 32px; font-size: 15px; }
}

.standard-content-sections {
  width: min(938px, calc(100% - 40px));
  margin: 35px auto 0;
  padding-bottom: 650px;
}

.standard-section {
  display: grid;
  grid-template-columns: 424px 424px;
  gap: 67px;
  align-items: start;
  margin-top: 45px;
}

.standard-section:first-child {
  margin-top: 0;
}

.standard-section:first-child + .standard-section {
  margin-top: 62px;
}

.standard-section-wide-media {
  grid-template-columns: 229px 624px;
  gap: 15px;
}

.standard-section-copy,
.standard-section-media figcaption {
  font-family: var(--font-light);
  font-size: 14px;
  line-height: 1.45;
}

.standard-section-copy h1,
.standard-section-copy h2 {
  margin: 0 0 14px;
  font-family: var(--font-book);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
}

.standard-section-copy p {
  margin: 0 0 24px;
}

.standard-section-copy a,
.standard-section-media a {
  overflow-wrap: anywhere;
}

.standard-section-media {
  margin: 0;
}

.standard-section-media img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 3px solid #111;
}

.standard-section-media figcaption {
  margin-top: 14px;
}

.standard-section-media-portrait {
  width: 424px;
}

.standard-section-media-drawing {
  width: 334px;
  margin: 28px auto 0;
}

.standard-section-media-art-map {
  margin-top: 30px;
}

.standard-section-media-white-inset img {
  padding: 5px;
  background: #fff;
}

@media (min-width: 901px) {
  .standard-section-media-article-aligned {
    margin-top: 33px;
  }

  .standard-section-community-mermaids .standard-section-media:first-child {
    width: 449px;
  }

  .standard-section-community-mermaids .standard-section-media:first-child img {
    width: 100%;
  }
}

.image-led-content {
  position: relative;
  left: -21px;
  width: min(650px, calc(100% - 40px));
  margin: 0 auto;
  padding-bottom: 120px;
}

.image-led-heading {
  margin: 12px 0 19px;
  font-family: var(--font-book);
  font-size: 60px;
  font-weight: 400;
  line-height: 1.08;
  text-align: center;
}

.image-led-sequence {
  display: grid;
  gap: 39px;
}

.image-led-item {
  width: 100%;
  margin: 0;
}

.image-led-item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 650 / 432;
  object-fit: cover;
}

/* Matches the original Press page's Proxima-like heading and hand-drawn Wix frame. */
.press-content {
  width: min(722px, calc(100% - 40px));
}

.press-content .image-led-heading {
  font-family: "Proxima Nova", Montserrat, "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 53px;
}

.press-content .image-led-item {
  position: relative;
  aspect-ratio: 722 / 504;
  background-image: url("../source/019-sloppyframe.3214ce8e.png"), url("../source/019-sloppyframe.3214ce8e.png"), url("../source/019-sloppyframe.3214ce8e.png"), url("../source/019-sloppyframe.3214ce8e.png");
  background-position: center, center, center, center;
  background-repeat: no-repeat;
  background-size: 100% 100%, 99.6% 99.6%, 99.2% 99.2%, 98.8% 98.8%;
}

.press-content .image-led-item img {
  position: absolute;
  top: 7.143%;
  right: 4.986%;
  bottom: 7.143%;
  left: 4.986%;
  width: 90.028%;
  height: 85.714%;
  aspect-ratio: auto;
}

/* This newspaper clipping is taller than the other Press articles. */
.press-content .image-led-item:last-child {
  aspect-ratio: 722 / 573;
}

.press-content .image-led-item:last-child img {
  top: 6.284%;
  bottom: 6.284%;
}

.photo-gallery-content {
  width: min(var(--canvas), calc(100% - 30px));
  margin: 14px auto 0;
  padding: 0 305px 160px 205px;
}

.photo-gallery-intro {
  display: grid;
  grid-template-columns: 632px minmax(0, 1fr);
  height: 320px;
  align-items: start;
}

.photo-gallery-wordmark {
  display: block;
  width: 750px;
  height: 320px;
  margin-left: -118px;
  object-fit: cover;
  object-position: top;
  transform: translateY(-50px);
}

.photo-gallery-heading {
  margin: 157px 0 0;
  font-family: var(--font-book);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 52px;
  align-items: start;
}

.photo-gallery-item {
  width: 100%;
  max-width: none;
  margin: 0;
}

.photo-gallery-item img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.photo-gallery-item figcaption {
  max-width: none;
  margin-top: 9px;
  font-family: "Century Gothic", var(--font-light);
  font-size: 14px;
  line-height: 1.45;
}

.product-listing-content {
  width: min(860px, calc(100% - 40px));
  margin: 20px auto 0;
  padding-bottom: 140px;
}

.product-listing-heading {
  margin: 0 0 58px;
  font-family: var(--font-book);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.24em;
  line-height: 1.2;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 76px 46px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shop-listing-content {
  width: min(1280px, calc(100% - 40px));
  position: relative;
  padding-bottom: 250px;
}

.shop-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 58px 28px;
}

.shop-product-grid .product-name {
  margin-right: 0;
  margin-left: 0;
}

.shop-front-intro {
  margin: 0 auto 52px;
  font-family: var(--font-light);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  text-align: center;
}

.shop-category-navigation {
  position: fixed;
  top: 150px;
  left: calc(50% + 480px);
  right: auto;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: max-content;
  max-width: 100%;
  gap: 0;
  margin: 0;
  border: 1px solid var(--rule);
  background: #fff;
  opacity: 0.8;
}

.shop-category-navigation > * {
  display: block;
  padding: 8px 19px 8px 12px;
  border: 0;
  color: inherit;
  font: 14px/1.25 var(--font-light);
  text-align: center;
  text-decoration: none;
}

.shop-category-label { font-weight: 700; cursor: grab; touch-action: none; user-select: none; }
.shop-category-drag-cue { display: inline-block; width: 9.5px; height: 9.5px; margin-left: 6px; vertical-align: middle; object-fit: contain; }
.shop-category-navigation.is-dragging .shop-category-label { cursor: grabbing; }
.shop-category-navigation > *:not(:last-child) { border-bottom: 1px solid var(--rule); }
.shop-category-basket { display: flex !important; align-items: center; justify-content: center; gap: 4px; }
.shop-category-basket-icon { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.shop-category-basket-count { display: grid; width: 14px; height: 14px; place-items: center; border-radius: 50%; background: #000; color: #fff; font: 8px/1 Arial, sans-serif; }

.shop-category-navigation a:hover,
.shop-category-navigation a:focus-visible {
  color: var(--active);
}

@media (min-width: 1401px) {
  .shop-category-navigation--desktop-offset-150 {
    margin-left: 150px;
  }

  .shop-category-navigation--desktop-offset-150[data-align-after-gallery-grid] {
    margin-left: 160px;
  }
}

@media (max-width: 1400px) {
  .shop-category-navigation {
    position: static;
    margin: -34px auto 22px;
    display: none;
  }

  .shop-category-label { cursor: default; }
}

@media (max-width: 760px) {
  .shop-category-navigation {
    display: flex;
    position: fixed;
    top: 100px;
    left: auto;
    right: 11px;
    z-index: 10;
    width: max-content;
    max-width: calc(100vw - 30px);
    margin: 0;
  }

  .shop-category-navigation--mobile-top-85 {
    top: 85px;
  }

  .shop-category-navigation.mobile-menu-collapsed > *:not(.shop-category-label) {
    display: none;
  }

  .shop-category-navigation.mobile-menu-collapsed > .shop-category-basket {
    display: none !important;
  }

  .shop-category-navigation.mobile-menu-collapsed .shop-category-label {
    border-bottom: 0;
  }

  .shop-category-navigation[data-mobile-collapsible] {
    transform: translateX(-10px);
  }

  .shop-category-navigation[data-mobile-collapsible] .shop-category-label {
    width: max-content;
    border-bottom: 0;
  }

  .shop-category-navigation[data-mobile-collapsible] > a:first-of-type {
    border-top: 1px solid var(--rule);
  }

  .shop-category-navigation > * {
    padding: 6px 10px 6px 8px;
    font-size: 12px;
  }

  .shop-category-drag-cue { width: 8px; height: 8px; margin-left: 4px; }

  .shop-category-label { cursor: grab; }
}

.shop-category-heading {
  margin: 0 0 28px;
  font: 400 25px/1.2 var(--font-book);
  text-align: center;
}

.shop-category-section {
  margin-top: 90px;
  scroll-margin-top: 86px;
}

#art-and-boards { scroll-margin-top: 86px; }

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  color: inherit;
  text-align: center;
  text-decoration: none;
}

.product-card:focus-visible {
  outline: 2px solid var(--active);
  outline-offset: 8px;
}

.product-card-media {
  display: flex;
  position: relative;
  width: 100%;
  aspect-ratio: 407 / 288;
  align-items: center;
  justify-content: center;
}

.product-card img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  inset: 0;
}

.product-name {
  margin: 16px 12px 0;
  font-family: var(--font-light);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.35;
}

.product-price {
  margin: 7px 0 0;
  font-family: var(--font-light);
  font-size: 14px;
}

.product-status {
  margin: 10px 0 0;
  padding: 8px 16px;
  border-radius: 999px;
  background: #efefef;
  font-family: var(--font-light);
  font-size: 13px;
  line-height: 1.2;
}

/* Keep the first Shop category closer to the Shop heading. */
.shop-listing-content > .product-listing-heading {
  margin-bottom: 29px;
}

/* Keep the Boards cards more compact without changing the other Shop categories. */
#art-and-boards + .shop-product-grid .product-card-media {
  aspect-ratio: 407 / 170;
}

#art-and-boards + .shop-product-grid .product-card:not([href*="/product-page/t-shirt-"]) .product-name {
  margin-top: 8px;
}

#art-and-boards + .shop-product-grid .product-card:not([href*="/product-page/t-shirt-"]) .product-status {
  margin-top: 5px;
}

.product-status a,
.product-detail-status a {
  color: inherit;
  text-decoration: underline;
}

.product-contact-link {
  text-decoration: underline;
}

.product-detail-content {
  width: min(980px, calc(100% - 40px));
  margin: 36px auto 0;
  padding-bottom: 110px;
}

.product-detail-back {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid var(--rule);
  background: #fff;
  margin-bottom: 30px;
  font-family: var(--font-light);
  font-size: 13px;
  font-weight: 700;
  color: inherit;
  text-decoration: none;
}

.product-detail-back:hover,
.product-detail-back:focus-visible {
  color: var(--active);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(250px, 0.85fr);
  gap: 52px;
  align-items: start;
}

/* Landscape artwork follows the original product-page treatment: full-width art
   with the purchase request panel placed over the right-hand side. */
.product-detail-content:has(.product-detail-artwork) {
  width: min(1240px, calc(100% - 40px));
}

.product-detail-layout:has(.product-detail-artwork) {
  display: block;
  position: relative;
}

.product-detail-layout:has(.product-detail-artwork) .product-detail-image {
  max-height: none;
}

.product-detail-layout:has(.product-detail-artwork) .product-detail-information {
  position: absolute;
  z-index: 1;
  top: 18%;
  right: 20%;
  width: min(248px, 20.25%);
  padding: 12px 10px;
  transform: translate(calc(80% + 200px), -50px);
  background: rgb(255 255 255 / 95%);
  color: #000;
}

@media (min-width: 761px) {
  /* Keep Blackpool's purchase panel inside the desktop content canvas. */
  .product-detail-content[data-product-id="P006"] .product-detail-information {
    right: 0;
    transform: translateY(-50px);
  }
}

.product-detail-layout:has(.product-detail-artwork) .product-detail-heading {
  font-size: clamp(17px, 1.5vw, 22px);
}

.product-detail-layout:has(.product-detail-artwork) .basket-action {
  width: 100%;
  color: #fff;
  border-color: #000;
  background: #000;
}

/* All wide-artwork product pages share the compact, inset request panel. */
.product-detail-layout:has(.product-detail-artwork) .product-detail-price {
  margin-top: 9px;
  font-size: 14px;
}

.product-detail-layout:has(.product-detail-artwork) .product-detail-option {
  margin-top: 12px;
}

.product-detail-layout:has(.product-detail-artwork) .product-detail-status {
  margin-top: 9px;
}

.product-detail-layout:has(.product-detail-artwork) .basket-action {
  margin-top: 12px;
  padding-inline: 6px;
  font-size: 12px;
}

.product-detail-layout--home {
  grid-template-columns: minmax(0, 1fr) minmax(270px, 320px);
  gap: 44px;
}

.product-detail-content:has(.product-detail-layout--home) {
  width: min(1240px, calc(100% - 40px));
}

.product-detail-layout--home .product-detail-image {
  width: min(100%, 795px);
  justify-self: center;
}

.product-detail-image {
  display: block;
  width: 100%;
  max-height: 680px;
  object-fit: contain;
}

.product-detail-copy {
  margin-top: 28px;
  font-family: var(--font-light);
  font-size: 14px;
  line-height: 1.45;
}

.product-detail-layout:has(.product-detail-artwork) .product-detail-copy {
  width: min(53.333%, 661px);
  margin-inline: auto;
  text-align: center;
}

.product-detail-layout:has(.product-detail-artwork) .product-detail-information select {
  color: #000;
}

.product-detail-copy p {
  margin: 0;
}

.product-detail-copy p + p {
  margin-top: 16px;
}

.product-detail-information {
  padding-top: 22px;
}

.product-detail-heading {
  margin: 0;
  font-family: var(--font-book);
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 400;
  line-height: 1.12;
}

.product-detail-price {
  margin: 21px 0 0;
  font-family: var(--font-light);
  font-size: 18px;
}

.product-detail-status {
  margin: 20px 0 0;
  font-family: var(--font-light);
  font-size: 14px;
  line-height: 1.45;
}

.listing-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.listing-heading-row .product-listing-heading {
  margin-bottom: 58px;
}

.basket-link,
.basket-action,
.basket-line-controls button,
.basket-clear {
  display: inline-block;
  padding: 9px 13px;
  border: 1px solid var(--rule);
  background: #fff;
  font: 14px/1.25 var(--font-light);
  color: inherit;
  text-decoration: none;
}

.basket-action { margin-top: 24px; cursor: pointer; }
.basket-feedback { min-height: 1.45em; margin: 12px 0; font: 14px/1.45 var(--font-light); }
.product-detail-option { display: grid; gap: 7px; margin-top: 24px; font: 14px/1.45 var(--font-light); }
.product-detail-option select { width: 100%; min-height: 38px; padding: 6px 8px; border: 1px solid var(--rule); background: #fff; font: inherit; color: inherit; }
.basket-content { width: min(871px, calc(100% - 40px)); margin: 36px auto 0; padding-bottom: 110px; transform: translateX(-72.5px); }
.basket-content h1 { margin: 0 0 20px; font: 400 clamp(30px, 3.4vw, 48px)/1.12 var(--font-book); }
.basket-notice { margin: 0 0 32px; font: 16px/1.45 var(--font-light); }
.basket-lines { margin: 0; padding: 0; list-style: none; }
.basket-line { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; gap: 20px; align-items: center; padding: 22px 0; border-top: 1px solid var(--rule); font: 14px/1.45 var(--font-light); }
.basket-line p { margin: 8px 0 0; }
.basket-line-product { display: grid; grid-template-columns: max-content minmax(0, 1fr); gap: 16px; align-items: center; }
.basket-line-thumbnail { width: 160px; height: 90px; justify-self: center; }
.basket-line-thumbnail img { display: block; width: 100%; height: 100%; object-fit: contain; }
.basket-line-controls { display: flex; flex-wrap: nowrap; gap: 8px; max-width: none; }
.basket-line-controls label { display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.basket-line-controls button { padding: 7px 9px; font-size: 13px; white-space: nowrap; }
.basket-line input { width: 62px; min-height: 36px; padding: 4px; border: 1px solid var(--rule); font: inherit; }
.basket-total { padding-top: 20px; border-top: 1px solid var(--rule); font: 18px/1.45 var(--font-light); }
.basket-empty { font: 16px/1.45 var(--font-light); }
.purchase-request-form { margin-top: 38px; padding-top: 28px; border-top: 1px solid var(--rule); font: 14px/1.45 var(--font-light); }
.purchase-request-form h2 { margin: 0 0 12px; font: 400 24px/1.2 var(--font-book); }
.purchase-request-form p { margin: 0 0 18px; }
.purchase-request-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 20px; max-width: 620px; }
.purchase-request-fields [data-delivery-address] { grid-column: 1 / -1; }
.purchase-request-fields [data-delivery-address][hidden] { display: none !important; }
.purchase-request-fields label:last-child { grid-column: 1 / -1; }
.purchase-request-form label { display: grid; gap: 6px; }
.purchase-request-form input, .purchase-request-form textarea { width: 100%; min-height: 38px; padding: 7px; border: 1px solid var(--rule); background: #fff; font: inherit; }
.purchase-request-form textarea { resize: vertical; }
.purchase-request-submit { margin-top: 20px; padding: 9px 13px; border: 1px solid var(--rule); background: #fff; font: 14px/1.25 var(--font-light); cursor: pointer; }
.purchase-request-submit:disabled { cursor: wait; opacity: .65; }
.purchase-request-form .purchase-request-status { min-height: 1.45em; margin-top: 14px; }
.purchase-request-form[data-submission-state="unavailable"] .purchase-request-status,
.contact-form[data-submission-state="unavailable"] .contact-status { color: #67583d; }
.contact-content { width: min(938px, calc(100% - 40px)); margin: 0 auto; padding-bottom: 100px; }
.contact-layout { display: grid; grid-template-columns: minmax(220px, 1fr) minmax(0, 1.55fr); gap: 67px; align-items: start; }
.contact-left-column .page-heading { margin: 24px 0 42px; text-align: left; }
.contact-details { font: 14px/1.5 var(--font-light); }
.contact-details section + section { margin-top: 36px; }
.contact-details h2, .contact-form h2 { margin: 0 0 10px; font: 400 30px/1.2 var(--font-book); }
.contact-details p, .contact-form p { margin: 0; }
.contact-form { margin-top: 24px; font: 14px/1.45 var(--font-light); }
.contact-form > p { margin-bottom: 22px; }
.contact-fields { display: grid; gap: 8px; }
.contact-fields > div { display: grid; gap: 3px; }
.contact-fields label span { font-family: var(--font-light); }
.contact-fields input, .contact-fields textarea { width: 100%; min-height: 40px; padding: 8px; border: 1px solid var(--rule); background: #fff; color: inherit; font: inherit; }
.contact-fields textarea { resize: vertical; }
.contact-fields input:focus-visible, .contact-fields textarea:focus-visible, .contact-submit:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.field-error { min-height: 1.45em; color: #8a1d16; }
.contact-form .field-error { min-height: .725em; }
.contact-submit { margin-top: 20px; padding: 9px 13px; border: 1px solid var(--rule); background: #fff; color: inherit; font: 14px/1.25 var(--font-light); cursor: pointer; }
.contact-submit:disabled { cursor: wait; opacity: .65; }
.contact-status { min-height: 1.45em; margin-top: 14px !important; }
.contact-footer { width: min(938px, calc(100% - 40px)); padding-bottom: 80px; }

.gallery-content {
  width: min(var(--canvas), calc(100% - 20px));
  margin: 62px auto 0;
}

.artwork-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 2px;
  row-gap: 49px;
}

.artwork-tile {
  display: grid;
  grid-template-rows: auto 42px;
  border-bottom: 1px solid var(--rule);
  text-align: center;
  text-decoration: none;
}

.artwork-tile img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 458 / 176;
  object-fit: cover;
}

/* The later gallery additions include portrait and near-square artwork. */
.artwork-tile--natural img {
  width: auto;
  max-width: 100%;
  max-height: 380px;
  margin: 0 auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.artwork-tile span {
  align-self: end;
  padding: 0 8px 8px;
  font-family: var(--font-light);
  font-size: 13px;
}

.gallery-footer {
  padding-bottom: 500px;
}

.artwork-content {
  width: min(978px, calc(100% - 40px));
  margin: 24px auto 0;
  text-align: center;
}

.artwork-content-wide {
  width: min(1086px, calc(100% - 40px));
}

.artwork-heading {
  margin: 0 0 12px;
  font-family: Arial, sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 1;
}

.artwork-heading-spaced {
  font-family: var(--font-book);
  font-size: 30px;
  letter-spacing: 0.25em;
}

.artwork-image {
  display: block;
  width: 100%;
  height: auto;
}

.artwork-information {
  margin: 19px auto 0;
  font-family: var(--font-book);
  font-size: 16px;
  line-height: 1.15;
}

.artwork-information p {
  margin: 0 0 3px;
}

.artwork-size-list {
  display: grid;
  gap: 7px;
  width: min(390px, 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.artwork-size-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.artwork-size-list-no-prices {
  display: block;
  width: auto;
}

.artwork-size-list-no-prices li {
  display: inline;
}

.artwork-size-list-no-prices li:not(:last-child)::after {
  content: ", ";
}

.artwork-footer {
  margin-top: 54px;
}

.triptych-content {
  width: min(1215px, calc(100% - 40px));
  margin: 24px auto 0;
  text-align: center;
}

.triptych-content > .artwork-heading {
  margin-bottom: 54px;
}

.triptych-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.triptych-card {
  margin: 0;
  padding: 66px 0 28px;
  border: 6px solid #efefef;
}

.triptych-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 978 / 376;
  object-fit: cover;
}

.triptych-size {
  margin: 16px 12px 0;
  font-family: var(--font-light);
  font-size: 13px;
  line-height: 1.2;
}

.triptych-size p {
  margin: 0;
}

.triptych-card h2 {
  margin: 24px 10px 0;
  font-family: var(--font-light);
  font-size: 16px;
  font-weight: 300;
}

.triptych-footer {
  margin-top: 78px;
  padding-bottom: 80px;
}

.artwork-empty-content {
  position: relative;
  width: min(978px, calc(100% - 40px));
  min-height: 550px;
  margin: 24px auto 0;
  text-align: center;
}

.artwork-empty-content h1 {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 1;
}

.artwork-empty-content > p {
  width: 260px;
  margin: 14px auto 0;
  font-family: var(--font-light);
  font-size: 16px;
}

.artwork-empty-size {
  position: absolute;
  top: 455px;
  left: 50%;
  font-family: var(--font-light);
  font-size: 13px;
  transform: translateX(-50%);
}

.artwork-empty-size p {
  margin: 0 0 17px;
}

.artwork-empty-footer {
  padding-bottom: 500px;
}

.site-footer {
  width: min(var(--canvas), calc(100% - 30px));
  margin: 0 auto;
  padding: 0 0 44px;
  text-align: center;
  font-family: var(--font-light);
  font-size: 12px;
}

.footer-email {
  margin: 0;
  padding: 15px 0 10px;
}

.contact-sally-link {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35em;
}

.contact-sally-icon {
  line-height: 1;
}

.site-footer a {
  text-decoration: none;
}

.artwork-placeholder {
  align-self: stretch;
  border-bottom: 1px solid var(--rule);
}

.location-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 320px;
  padding: 0 58px;
  text-align: left;
}

.location-panel {
  min-height: 116px;
  padding: 15px 13px;
  background: #eceaea;
  color: #000;
}

.location-panel h2 {
  max-width: 360px;
  margin: 0 0 12px;
  font-family: Arial, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.05;
}

.location-panels-home .location-panel {
  min-height: 0;
  width: min(325px, 100%);
  height: 72px;
  border-radius: 10px;
  background: rgb(236 234 234 / 70%);
  text-align: center;
}

.location-panels-home {
  position: relative;
  z-index: 1;
  justify-items: center;
}

.location-panels-home .location-panel h2 {
  max-width: none;
  font-size: 13px;
}

@media (min-width: 901px) {
  .location-panels-home {
    margin-top: -74px;
    grid-auto-rows: minmax(0, 1fr);
  }
}

.location-panel p {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.25;
}

.location-panel p span {
  margin-right: 4px;
  font-size: 8px;
  vertical-align: 1px;
}

.location-panel .location-map-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.location-panel .location-pin {
  display: inline-block;
  margin-right: 4px;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  vertical-align: -2px;
}

@media (max-width: 900px) {
  body {
    padding-top: 68px;
  }

  .header-inner {
    width: 100%;
    min-height: 68px;
    padding: 0 18px;
    border-bottom-color: #d0d0d0;
    align-items: center;
    flex-wrap: wrap;
  }

  .header-inner::before {
    display: none;
  }

  .site-title {
    flex: 1;
    padding: 0;
    font-size: 20px;
  }

  .menu-toggle {
    display: flex;
    min-height: 44px;
    gap: 9px;
    align-items: center;
    padding: 10px 0 10px 10px;
    border: 0;
    background: transparent;
    color: inherit;
    font: 15px var(--font-light);
    cursor: pointer;
  }

  .menu-icon,
  .menu-icon::before,
  .menu-icon::after {
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
  }

  .menu-icon {
    position: relative;
  }

  .menu-icon::before,
  .menu-icon::after {
    position: absolute;
    left: 0;
    content: "";
  }

  .menu-icon::before {
    top: -6px;
  }

  .menu-icon::after {
    top: 6px;
  }

  .primary-navigation {
    order: 2;
    display: none;
    flex: 0 0 calc(100% + 36px);
    margin: 0 -18px;
    padding: 5px 18px 14px;
    border-top: 1px solid #e2e2e2;
    grid-template-columns: 1fr 1fr;
    font-size: 15px;
  }

  .primary-navigation.is-open {
    display: grid;
  }

  .primary-navigation a {
    min-height: 44px;
    padding: 14px 8px 10px;
    border: 0;
    border-bottom: 1px solid #e4e4e4;
  }

  .hero {
    width: 100%;
    margin-top: 0;
  }

  .hero > img {
    width: 100%;
    min-height: 470px;
    object-fit: cover;
    object-position: center;
  }

  .hero-card {
    top: 44%;
    width: min(248px, calc(100% - 44px));
    padding: 20px 16px 18px;
  }

  .header-basket {
    order: 1;
    min-height: 44px;
    padding: 8px 0 8px 7px;
    border-left: 0;
  }

  .hero-card h1 {
    font-size: 22px;
  }

  .standard-content {
    width: min(100% - 32px, 660px);
  }

  .page-heading {
    margin: 26px 0 24px;
    font-size: 38px;
  }

  .image-caption {
    bottom: 24px;
  }

  .image-caption span {
    margin-bottom: 4px;
    font-size: 11px;
  }

  .image-caption strong {
    font-size: clamp(20px, 7vw, 28px);
  }

  .standard-content-prose {
    margin-top: 38px;
    font-size: 14px;
    line-height: 1.55;
  }

  .standard-content-prose p {
    margin-bottom: 20px;
  }

  .standard-content-footer {
    width: 100%;
    padding-bottom: 36px;
  }

  .book-content { width: min(100% - 32px, 660px); margin-top: 26px; padding-bottom: 72px; }
  .book-intro { margin-bottom: 38px; font-size: 14px; line-height: 1.55; }
  .book-intro h1 { margin-bottom: 22px; font-size: 38px; }
  .book-gallery,
  .book-gallery-portrait { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .book-cover { grid-column: auto; }

  .standard-content-sections {
    width: min(100% - 32px, 660px);
    margin-top: 48px;
    padding-bottom: 100px;
  }

  .standard-section,
  .standard-section-wide-media {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 68px;
  }

  .standard-section:first-child {
    margin-top: 0;
  }

  .standard-section:first-child + .standard-section {
    margin-top: 68px;
  }

  .standard-section-copy,
  .standard-section-media figcaption {
    font-size: 14px;
    line-height: 1.55;
  }

  .standard-section-copy h1,
  .standard-section-copy h2 {
    margin-bottom: 16px;
    font-size: 28px;
  }

  .standard-section-copy p {
    margin-bottom: 20px;
  }

  .standard-section-media,
  .standard-section-media-portrait {
    width: min(100%, 424px);
    margin-right: auto;
    margin-left: auto;
  }

  .standard-section-wide-media .standard-section-media {
    width: 100%;
  }

  .standard-section-media-drawing {
    width: min(100%, 334px);
    margin-top: 26px;
  }

  .image-led-content {
    left: 0;
    width: min(100% - 32px, 650px);
    padding-bottom: 80px;
  }

  .image-led-heading {
    margin: 26px 0 24px;
    font-size: 38px;
    line-height: 1;
  }

  .image-led-sequence {
    gap: 24px;
  }

  .photo-gallery-content {
    width: min(100% - 32px, 551px);
    margin-top: 0;
    padding: 0 0 80px;
  }

  .photo-gallery-intro {
    display: block;
    height: auto;
    text-align: center;
  }

  .photo-gallery-wordmark {
    width: min(100%, 400px);
    height: auto;
    margin: 0 auto -72px;
    transform: none;
  }

  .photo-gallery-heading {
    margin: 0 0 52px;
    font-size: 42px;
  }

  .photo-gallery-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 56px;
  }

  .photo-gallery-item {
    width: 100%;
    max-width: none;
  }

  .photo-gallery-item img {
    width: 100%;
  }

  .photo-gallery-item figcaption {
    margin-top: 11px;
    font-size: 13px;
    line-height: 1.5;
  }

  .gallery-content {
    width: min(100% - 32px, 551px);
    margin-top: 42px;
  }

  .artwork-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .artwork-tile {
    grid-template-rows: auto 44px;
  }

  .gallery-footer {
    padding-bottom: 80px;
  }

  .artwork-content {
    width: min(100% - 32px, 978px);
    margin-top: 18px;
  }

  .artwork-content-wide {
    width: min(100% - 32px, 1086px);
  }

  .artwork-heading,
  .artwork-empty-content h1 {
    margin-bottom: 14px;
    font-size: 38px;
  }

  .artwork-heading-spaced {
    font-size: 28px;
  }

  .artwork-information {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.45;
  }

  .artwork-size-list {
    width: min(300px, 100%);
  }

  .artwork-size-list-no-prices li {
    display: block;
  }

  .artwork-size-list-no-prices li:not(:last-child)::after {
    content: "";
  }

  .artwork-footer {
    margin-top: 38px;
  }

  .triptych-content {
    width: min(100% - 32px, 420px);
    margin-top: 24px;
  }

  .triptych-content > .artwork-heading {
    margin-bottom: 30px;
  }

  .triptych-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .triptych-card {
    padding-top: 30px;
  }

  .triptych-size {
    font-size: 12px;
    line-height: 1.35;
  }

  .triptych-footer {
    margin-top: 32px;
    padding-bottom: 50px;
  }

  .artwork-empty-content {
    width: min(100% - 32px, 650px);
    min-height: 410px;
    margin-top: 24px;
  }

  .artwork-empty-content > p {
    width: min(260px, 100%);
    font-size: 14px;
  }

  .artwork-empty-size {
    top: 300px;
  }

  .artwork-empty-footer {
    padding-bottom: 80px;
  }

  .site-footer {
    width: 100%;
    padding: 0 18px 30px;
  }

  .footer-email {
    padding: 18px 0 15px;
  }

  .location-panels {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0;
  }

  .location-panel {
    min-height: 0;
    padding: 18px;
  }

  .location-panel h2 {
    max-width: none;
    margin-bottom: 10px;
    font-size: 23px;
  }

  .location-panels-home .location-panel h2 {
    font-size: 11.5px;
  }
}

@media (max-width: 900px) {
  .product-listing-content {
    width: min(100% - 32px, 407px);
    margin-top: 28px;
    padding-bottom: 80px;
  }

  .product-listing-heading {
    margin-bottom: 38px;
    font-size: 28px;
  }

  .shop-listing-content > .product-listing-heading {
    margin-bottom: 19px;
  }

  .product-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 54px;
  }

  .shop-listing-content {
    width: min(100% - 32px, 407px);
  }

  .product-name {
    margin-top: 14px;
  }

  .product-status {
    min-height: 44px;
    padding-top: 14px;
  }

  .product-detail-content {
    width: min(100% - 32px, 620px);
    margin-top: 26px;
    padding-bottom: 70px;
  }

  .product-detail-back {
    margin-bottom: 24px;
  }

  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .product-detail-content:has(.product-detail-artwork),
  .product-detail-content:has(.product-detail-layout--home) {
    width: min(100% - 32px, 620px);
  }

  .product-detail-layout:has(.product-detail-artwork) {
    display: grid;
  }

  .product-detail-layout:has(.product-detail-artwork) .product-detail-information {
    position: static;
    width: auto;
    padding: 0;
    transform: none;
    background: transparent;
  }

  .product-detail-layout:has(.product-detail-artwork) .product-detail-copy {
    width: auto;
    text-align: left;
  }

  .product-detail-information {
    padding-top: 0;
  }

  .listing-heading-row { display: block; }
  .listing-heading-row .product-listing-heading { margin-bottom: 18px; }
  .listing-heading-row .basket-link { margin-bottom: 38px; }
  .basket-content { width: min(100% - 32px, 620px); margin-top: 26px; padding-bottom: 70px; transform: none; }
  .basket-line { grid-template-columns: 1fr; gap: 14px; }
  .basket-line-thumbnail { width: 144px; }
  .basket-line-controls { max-width: none; flex-wrap: wrap; }
  .purchase-request-fields { grid-template-columns: 1fr; }
  .purchase-request-fields label:last-child { grid-column: auto; }
  .contact-content { width: min(100% - 32px, 620px); padding-bottom: 70px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-left-column .page-heading { margin-bottom: 28px; }
  .contact-form { margin-top: 0; }
  .contact-details { display: grid; gap: 28px; }
  .contact-details section + section { margin-top: 0; }
  .contact-details h2, .contact-form h2 { font-size: 28px; }
  .contact-footer { width: 100%; padding-bottom: 36px; }
}

@media (max-width: 430px) {
  .hero > img {
    min-height: 500px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}

.analytics-consent {
  position: fixed;
  z-index: 1000;
  right: 24px;
  bottom: 24px;
  width: min(420px, calc(100% - 32px));
  padding: 18px;
  color: #fff;
  background: #2d2a28;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
  font-size: 14px;
  line-height: 1.5;
}

.analytics-consent p {
  margin: 0;
}

.analytics-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.analytics-consent button {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid #fff;
  border-radius: 0;
  color: #fff;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.analytics-consent .analytics-consent-accept {
  color: #2d2a28;
  background: #fff;
}

.analytics-consent button:focus-visible {
  outline: 3px solid #f1c75b;
  outline-offset: 2px;
}

@media (max-width: 900px) {
  .about-content {
    display: block;
  }

  .about-content .page-heading {
    margin-bottom: 12px;
  }

  .about-content .about-portrait-figure {
    width: 50%;
    margin-inline: auto;
  }

  .about-content .standard-content-prose {
    width: min(760px, 100%);
    margin: 38px auto 0;
  }
}

@media (max-width: 600px) {
  .analytics-consent {
    right: 16px;
    bottom: 16px;
  }
}
