.site-header:after,
.logo-wrap:after {
  clear: both;
  content: '';
  display: table;
}

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

a:active,
a:focus,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: .67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -.5em;
}

sub {
  bottom: -.25em;
}

img {
  border: 0;
  vertical-align: top;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100%;
  position: relative;
  background-color: #212121;
  background-image: url("");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: contain;
}

/* THEME VARIABLES */
:root {
  /* Radius */
  --radius-s: 8px;
  --radius-m: 12px;
  --radius-l: 16px;

  /* Buttons */
  --btn-primary-light-bg: #f5f8ff;
  --btn-primary-light-bg-hover: #e2e8ff;
  --btn-primary-light-text: #020617;

  /* Brand / theme colours */
  --color-bg-page: #050505;               /* main page background */
  --color-bg-header: #191919;             /* top nav / header */
  --color-bg-section-dark: #101010;       /* darker content sections */
  --color-bg-section-darker: #050505;     /* deepest sections / stripes */

  --color-text-heading: #d1d8dd;          /* section headings (h2) */
  --color-text-body: #f5f5f5;             /* body text on dark backgrounds */
  --color-text-muted: #a9a9a9;            /* footer and subtle text */
  --color-text-soft: #cbd5f5;             /* softer accent text */

  --color-accent: #9fe5ff;                /* highlights / bullets */
  --color-accent-soft: #cbd5f5;           /* gentle accent text */
  --color-border-subtle: #1f2933;         /* subtle borders / separators */

  --color-overlay-strong: rgba(0, 0, 0, 0.8); /* strong overlays / modals */
  --color-overlay-soft: rgba(0, 0, 0, 0.5);   /* softer overlays */
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style-type: none;
}

p {
  margin: 0;
}

body {
  min-height: 100%;
}

.italic {
  font-style: italic;
}

.underline {
  text-decoration: underline;
}

.strikethrough {
  text-decoration: line-through;
}

.bold {
  font-weight: 700;
}

.cfix:after {
  clear: both;
  content: ' ';
  display: block;
  height: 0;
  line-height: 0;
  overflow: hidden;
  visibility: hidden;
}

html:before {
  content: '';
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #000;
  display: none;
  opacity: calc(30 * .01);
}

.site-wrap,
.site-container {
  position: relative;
  width: 100%;
}

.site-container {
  float: none;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

.site-wrap:before {
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 30px;
  background: var(--color-bg-header);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
  justify-content: space-between;
}

.site-header .nav-container {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-self: start;
}

.site-header .page-title a {
  font-family: dwgd, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.site-header .nav-container .page-title {
  padding: 0;
}

.site-header .nav-container .page-title a.active {
  color: #fff;
}

.site-header .nav-container .page-title + .page-title {
  margin-left: 6px;
}

.site-header.on-scroll {
  transition: background-color .3s ease, box-shadow .3s ease;
  background-color: var(--color-bg-header);
}

.site-header.on-scroll .logo,
.site-header.on-scroll .logo a {
  color: #fff;
}

.site-header.on-scroll .pf-nav-social svg {
  fill: #fff;
  opacity: 1;
}

.site-header.on-scroll nav .page-title a,
.site-header.on-scroll nav .gallery-title a,
.site-header.on-scroll nav .project-title a,
.site-header.on-scroll nav .link-title a {
  color: #a9a9a9;
}

.logo,
.logo-secondary {
  clear: both;
  word-wrap: break-word;
}

.logo a,
.logo-secondary a {
  color: inherit;
}

.logo .image-link,
.logo-secondary .image-link {
  display: inline-block;
  max-width: 100%;
}

.logo .image-rollover,
.logo .image-scroll,
.logo-secondary .image-rollover,
.logo-secondary .image-scroll {
  display: none;
}

.logo.logo-text,
.logo-secondary.logo-text {
  width: 100%;
}

.logo.has-rollover.hoverable:hover .image-link,
.logo-secondary.has-rollover.hoverable:hover .image-link {
  display: none;
}

.logo.has-rollover.hoverable:hover .image-link.image-rollover,
.logo-secondary.has-rollover.hoverable:hover .image-link.image-rollover {
  display: block;
}

.logo-image,
.logo-secondary-image {
  width: 100%;
}

.logo img,
.logo-secondary img {
  max-width: 100%;
}

.logo-wrap {
  flex: 1;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 8px;
  padding-top: 8px;
  width: 40%;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  justify-self: center;
}

@media (max-width: 768px) {
  .logo-wrap {
    width: 65%;   /* or 70%, play with this until it feels right */
  }
}

.logo-image {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.logo-secondary-text {
  float: left;
  text-align: left;
}

.logo-secondary-image {
  max-width: 100%;
  float: left;
  text-align: left;
}

.logo {
  font-family: dwgd;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  padding: 0 7%;
  color: #fff;
}

.logo a:hover {
  color: #fff;
  font-style: normal;
  font-weight: 700;
}

.logo-secondary {
  font-family: dwgd;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  padding: 0;
  text-transform: uppercase;
  color: #ccc;
}

.logo-secondary a:hover {
  color: #ccc;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
}

.logo-image img {
  max-height: 72px;
}

.social {
  font-size: 0;
}

.social li {
  display: inline-block;
}

.social li:first-child {
  padding-left: 0 !important;
}

.social li:last-child {
  padding-right: 0 !important;
}

.social li svg {
  vertical-align: middle;
}

.social a {
  display: block;
  text-align: center;
}

nav {
  float: left;
  max-width: 100%;
  width: 30%;
  padding-left: 0;
  padding-right: 0;
  text-align: left;
}

nav .page-title,
nav .gallery-title,
nav .project-title,
nav .link-title,
nav .social,
nav .social li {
  display: inline-block;
  vertical-align: middle;
}

nav .gallery-title a,
nav .project-title a,
nav .page-title a,
nav .link-title a {
  color: #a9a9a9;
  font-family: dwgd;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}

nav .gallery-title a:hover,
nav .project-title a:hover,
nav .page-title a:hover,
nav .link-title a:hover {
  color: #fff;
  font-style: normal;
  font-weight: 500;
}

nav .gallery-title a.active,
nav .project-title a.active,
nav .page-title a.active {
  color: #fff;
  font-style: normal;
  font-weight: 400;
}

nav .gallery-title,
nav .project-title,
nav .page-title,
nav .link-title {
  padding-left: 0;
  padding-right: 20px;
}

nav .project-title:first-child,
nav .gallery-title:first-child,
nav .page-title:first-child,
nav .link-title:first-child {
  padding-left: 0 !important;
}

nav .project-title:last-child,
nav .gallery-title:last-child,
nav .page-title:last-child,
nav .link-title:last-child {
  padding-right: 0 !important;
}

.site-footer {
  clear: both;
  display: block;
  font-family: dwgd;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  padding: 50px 0;
  text-align: center;
  text-transform: none;
  width: 100%;
  color: var(--color-text-muted);
}

.cookie-banner {
  bottom: 0;
  display: none;
  position: fixed;
  text-align: center;
  z-index: 99999;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner p {
  font-size: 18px;
  line-height: 1.222;
  margin: 24px;
  max-width: calc(100% - 84px);
}

.cookie-banner a {
  color: inherit;
  margin-left: 10px;
  text-decoration: underline;
}

.cookie-banner .close-btn {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
}

.site-content {
  margin-left: 2%;
  margin-right: 2%;
  width: 96%;
}

.site-content [id] {
  scroll-margin-top: 70px;
}

.header-placeholder {
  display: block;
  height: 90px;
}

.pf-nav-social {
  text-align: right;
  margin-left: auto;
  width: 30%;
  display: none;
}

.pf-nav-social li {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 12px;
  padding-right: 0;
}

.pf-nav-social svg {
  fill: #fff;
  height: 22px;
  opacity: .8;
  width: 22px;
  transition: opacity .2s ease, transform .2s ease;
}

.pf-nav-social a:hover svg {
  fill: #fff;
  opacity: 1;
  transform: translateY(-1px);
}

.pf-footer-social {
  text-align: center;
}

.pf-footer-social li {
  padding-top: 0;
  padding-bottom: 30px;
  padding-left: 0;
  padding-right: 15px;
}

.pf-footer-social a:hover svg {
  fill: #999;
  opacity: 1;
}

.pf-footer-social svg {
  fill: #aaa;
  height: 30px;
  opacity: 1;
  width: 30px;
}

.responsive-nav {
  display: none;
  opacity: 0;
  visibility: hidden;
  background-color: #212121;
  bottom: 0;
  height: 100%;
  left: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 50px 5% 0;
  position: fixed;
  right: 0;
  text-align: center;
  top: 0;
  transition: visibility 0s ease .2s, opacity .2s ease 0s;
  z-index: 99999;
}

.responsive-nav nav {
  float: none;
  margin: auto;
  max-width: 100%;
  width: 100%;
}

.responsive-nav.has-social nav {
  padding-bottom: 80px;
}

.responsive-nav .nav-container {
  width: 100%;
}

.responsive-nav .page-title,
.responsive-nav .project-title,
.responsive-nav .link-title,
.responsive-nav .gallery-title {
  display: block;
  text-align: center;
  padding: 0 0 30px;
}

.responsive-nav .page-title a,
.responsive-nav .project-title a,
.responsive-nav .link-title a,
.responsive-nav .gallery-title a {
  font-size: 22px;
  line-height: 32px;
}

.responsive-nav .group {
  padding: 0;
}

.responsive-nav .social {
  text-align: center;
  width: 100%;
  background-color: #212121;
  border-top: 1px solid rgba(0, 0, 0, .08);
  bottom: 0;
  left: 0;
  margin: 0;
  min-height: 80px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 5%;
  position: fixed;
}

.responsive-nav .social ul {
  white-space: nowrap;
}

.responsive-nav .social svg {
  width: 42px;
}

.responsive-nav .social li {
  display: inline-block;
  float: none !important;
  padding: 0 20px 0 0;
}

.responsive-nav .social li:last-child {
  padding-right: 0;
}

.close-responsive-click-area {
  cursor: pointer;
  padding: 50px 6%;
  position: fixed;
  right: 0;
  -webkit-tap-highlight-color: transparent;
  top: 0;
}

.close-responsive-button {
  height: 20px;
  position: fixed;
  right: 5%;
  width: 20px;
}

.close-responsive-button:before,
.close-responsive-button:after {
  background-color: #fff;
  content: '';
  display: block;
  height: 20px;
  left: 50%;
  position: absolute;
  width: 2px;
}

.close-responsive-button:before {
  transform: rotate(45deg);
}

.close-responsive-button:after {
  transform: rotate(-45deg);
}

.show-responsive-nav {
  overflow: hidden;
}

.show-responsive-nav .responsive-nav {
  opacity: 1;
  transition: visibility 0s ease 0s, opacity .2s ease 0s;
  visibility: visible;
}

.show-responsive-nav .responsive-nav nav {
  display: block;
}

.show-responsive-nav .site-header,
.show-responsive-nav .site-container {
  display: none;
}

.preserve-whitespace {
  white-space: pre-wrap;
}

.preserve-whitespace--nowrap {
  white-space: pre;
}

.page-background-video .video-wrap {
  height: 100vh;
  left: 80px;
  overflow: hidden;
  position: fixed;
  top: 0;
  width: calc(100vw - 80px);
  z-index: -1;
}

.image-right .page-background-video .video-wrap {
  width: 50vw;
}

.image-left .page-background-video .video-wrap {
  left: 50%;
  width: 50vw;
}

.page-background-video .renditions-video {
  font-family: 'object-fit: cover;';
  height: 100%;
  left: 0;
  object-fit: cover;
  position: relative;
  top: 0;
  width: 100%;
}

.page-background-video-with-panel .video-wrap {
  left: 260px;
  width: calc(100vw - 260px);
}

.image-right .page-background-video-with-panel .video-wrap {
  left: 0;
  width: 50vw;
}

.image-left .page-background-video-with-panel .video-wrap {
  left: 50%;
  width: 50vw;
}

.mp4-image {
  display: none !important;
  font-family: 'object-fit: cover;';
  height: 100%;
  left: 0;
  object-fit: cover;
  position: relative;
  top: 0;
  width: 100%;
}

@supports (-webkit-overflow-scrolling: touch) {
  .video-wrap .renditions-video {
    display: none;
  }
  .video-wrap .mp4-image {
    display: block !important;
  }
}

.project-cover .separator:last-child,
.project-header .fields .separator:last-child {
  display: none;
}

.disable-download img {
  pointer-events: none;
}

.is-hidden {
  display: none !important;
}

@-webkit-keyframes rotate-forever {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes rotate-forever {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate-forever {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
,    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.lightbox-spinner {
  -webkit-animation-duration: .7s;
  -moz-animation-duration: .7s;
  animation-duration: .7s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: rotate-forever;
  -moz-animation-name: rotate-forever;
  animation-name: rotate-forever;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  animation-timing-function: linear;
  height: 30px;
  width: 30px;
  border: 4px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  display: inline-block;
  opacity: .7;
}

.link-transition a {
  transition: background .2s ease, color .2s ease;
}

.link-transition a svg {
  transition: fill .2s ease;
}

.project-cover .details {
  transition: background .2s ease;
}

.project-cover .title,
.project-cover .fields,
.project-cover .custom,
.project-cover .description,
.project-cover .date {
  transition: color .2s ease;
}

html.lightbox-enabled,
html.lightbox-enabled body {
  overflow: hidden;
}

html.lightbox-zoomed .lightbox-content {
  cursor: zoom-out;
  overflow: auto;
}

html.lightbox-zoomed .lightbox-content.zoomable-x {
  justify-content: flex-start;
}

html.lightbox-zoomed .lightbox-content.zoomable-y {
  align-items: baseline;
}

html.lightbox-zoomed #lightbox-wrap img {
  max-width: inherit;
  max-height: inherit;
}

html.lightbox-zoomed #lightbox-img-wrap .lightbox-extra {
  display: none;
}

.lightbox-link,
.lightbox-content.zoomable {
  cursor: zoom-in;
}

#lightbox-wrap .lightbox-contents {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.lightbox-content {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  opacity: 1;
  position: absolute;
  top: 0;
  transition: opacity .4s;
  width: 100vw;
}

#lightbox-blocking {
  align-items: center;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1002;
}

#lightbox-blocking .lightbox-spinner {
  display: none;
}

#lightbox-wrap {
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 1001;
}

#lightbox-wrap .offscreen,
#lightbox-wrap.offscreen {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transform: translateX(-99999px);
  -ms-transform: translateX(-99999px);
  transform: translateX(-99999px);
  width: 0;
}

#lightbox-wrap.loading .lightbox-spinner {
  display: block;
}

#lightbox-wrap .hidden {
  opacity: 0;
}

#lightbox-wrap .lightbox-contents {
  display: inline-block;
  max-height: 100%;
  max-width: 100%;
}

#lightbox-wrap.single .next,
#lightbox-wrap.single .next:hover,
#lightbox-wrap.single .prev,
#lightbox-wrap.single .prev:hover {
  display: none;
}

#lightbox-wrap.extras-hidden #lightbox-img-wrap .lightbox-extra {
  opacity: 0;
  transition: opacity 1s;
}

#lightbox-wrap img {
  max-height: 100vh;
  max-width: 100vw;
}

#lightbox-inner-wrap {
  height: 100%;
  margin: auto;
  position: relative;
  z-index: 1003;
}

#lightbox-inner-wrap .control {
  cursor: pointer;
  position: absolute;
  z-index: 1003;
}

#lightbox-inner-wrap svg .lightbox-icon-bg {
  fill: #696969;
  opacity: .2;
}

#lightbox-inner-wrap svg:hover .lightbox-icon-bg {
  opacity: .4;
}

#lightbox-inner-wrap .next,
#lightbox-inner-wrap .prev {
  height: 100vh;
  opacity: 0;
  top: 0;
  width: 30vw;
}

#lightbox-inner-wrap .next:hover,
#lightbox-inner-wrap .prev:hover {
  opacity: 1;
}

#lightbox-inner-wrap .next.hidden,
#lightbox-inner-wrap .prev.hidden {
  cursor: default;
}

#lightbox-inner-wrap .next.hidden svg,
#lightbox-inner-wrap .prev.hidden svg {
  display: none;
}

#lightbox-inner-wrap .next svg,
#lightbox-inner-wrap .prev svg {
  top: calc(50% - 30px);
  position: absolute;
}

#lightbox-inner-wrap .next svg .lightbox-icon-arrow,
#lightbox-inner-wrap .prev svg .lightbox-icon-arrow {
  fill: #fff;
}

#lightbox-inner-wrap .next {
  right: 0;
}

#lightbox-inner-wrap .next svg {
  right: 20px;
}

#lightbox-inner-wrap .prev {
  left: 0;
}

#lightbox-inner-wrap .prev svg {
  left: 20px;
}

#lightbox-inner-wrap .close {
  position: fixed;
  height: 40px;
  right: 20px;
  top: 20px;
  width: 40px;
}

#lightbox-inner-wrap .close:hover {
  cursor: pointer;
}

#lightbox-inner-wrap .close .lightbox-icon-bg {
  fill: #fff;
}

@media (max-width: 1024px) {
  #lightbox-inner-wrap .close {
    right: 0;
    top: 0;
  }
  #lightbox-inner-wrap .close circle {
    display: none;
  }
  #lightbox-inner-wrap .next:hover,
  #lightbox-inner-wrap .prev:hover {
    opacity: 0;
  }
}

@media (min-width: 1024px) {
  .lightbox-link.hover-icon-enabled {
    position: relative;
  }
  .lightbox-link.hover-icon-enabled:hover::after {
    background: rgba(105, 105, 105, .2) url(data:image/svg+xml;base64,PHN2ZyBzdHlsZT0iZmlsbDogd2hpdGUiIHZpZXdCb3g9IjAgMCAyMSAyMSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICA8cGF0aCBkPSJNLTEuMjUyMjIyNTEsMTUuNjAzNDE5NyBDLTEuMzUyNTE5MjcsMTUuNjkzNjg2OCAtMS40MjUyMzMzMywxNS43OTg5OTY4IC0xLjQ3MDM2Njg3LDE1LjkxOTM1MjkgQy0xLjUxNTUwMDQxLDE2LjAzOTcwOSAtMS41MzgwNjY4NCwxNi4xNjAwNjMzIC0xLjUzODA2Njg0LDE2LjI4MDQxOTQgQy0xLjUzODA2Njg0LDE2LjQwMDc3NTUgLTEuNTE1NTAwNDEsMTYuNTIxMTI5OCAtMS40NzAzNjY4NywxNi42NDE0ODU5IEMtMS40MjUyMzMzMywxNi43NjE4NDIgLTEuMzUyNTE5MjcsMTYuODY3MTUyIC0xLjI1MjIyMjUxLDE2Ljk1NzQxOTEgTDMuNTYxOTk3NzEsMjEuNzcxNjM5MyBDMy43NTI1NjE1NSwyMS45NjIyMDMyIDMuOTgwNzMzMjQsMjIuMDU3NDgzNyA0LjI0NjUxOTY1LDIyLjA1NzQ4MzcgQzQuNTEyMzA2MDUsMjIuMDU3NDgzNyA0LjczNTQ2Mjk5LDIxLjk2MjIwMzIgNC45MTU5OTcxNSwyMS43NzE2MzkzIEM1LjEwNjU2MDk4LDIxLjU4MTA3NTUgNS4yMDE4NDE0NywyMS4zNTU0MTEyIDUuMjAxODQxNDcsMjEuMDk0NjM5NiBDNS4yMDE4NDE0NywyMC44MzM4NjggNS4xMDY1NjA5OCwyMC42MDgyMDM3IDQuOTE1OTk3MTUsMjAuNDE3NjM5OSBMMS43NTY2NjUxMywxNy4yNDMyNjM0IEwxMC4wMTYwNjE3LDE3LjI0MzI2MzQgQzEwLjI4Njg2MjksMTcuMjQzMjYzNCAxMC41MTUwMzQ2LDE3LjE1MDQ5MDMgMTAuNzAwNTgzNiwxNi45NjQ5NDEzIEMxMC44ODYxMzI2LDE2Ljc3OTM5MjMgMTAuOTc4OTA1NywxNi41NTEyMjA2IDEwLjk3ODkwNTcsMTYuMjgwNDE5NCBDMTAuOTc4OTA1NywxNi4wMDk2MTgyIDEwLjg4NjEzMjYsMTUuNzgxNDQ2NSAxMC43MDA1ODM2LDE1LjU5NTg5NzUgQzEwLjUxNTAzNDYsMTUuNDEwMzQ4NSAxMC4yODY4NjI5LDE1LjMxNzU3NTMgMTAuMDE2MDYxNywxNS4zMTc1NzUzIEwxLjc1NjY2NTEzLDE1LjMxNzU3NTMgTDQuOTE1OTk3MTUsMTIuMTQzMTk4OSBDNS4xMDY1NjA5OCwxMS45NTI2MzUxIDUuMjAxODQxNDcsMTEuNzI2OTcwNyA1LjIwMTg0MTQ3LDExLjQ2NjE5OTIgQzUuMjAxODQxNDcsMTEuMjA1NDI3NiA1LjEwNjU2MDk4LDEwLjk3OTc2MzMgNC45MTU5OTcxNSwxMC43ODkxOTk1IEM0LjczNTQ2Mjk5LDEwLjU5ODYzNTYgNC41MTIzMDYwNSwxMC41MDMzNTUxIDQuMjQ2NTE5NjUsMTAuNTAzMzU1MSBDMy45ODA3MzMyNCwxMC41MDMzNTUxIDMuNzUyNTYxNTUsMTAuNTk4NjM1NiAzLjU2MTk5NzcxLDEwLjc4OTE5OTUgTC0xLjI1MjIyMjUxLDE1LjYwMzQxOTcgWiIgaWQ9IngiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQuNzIwNDE5LCAxNi4yODA0MTkpIHJvdGF0ZSgtNDUuMDAwMDAwKSB0cmFuc2xhdGUoLTQuNzIwNDE5LCAtMTYuMjgwNDE5KSAiPjwvcGF0aD4KICA8cGF0aCBkPSJNMTAuMzA3Nzc3NCw0LjA0MzQxOTczIEMxMC4yMDc0ODA3LDQuMTMzNjg2ODEgMTAuMTM0NzY2Niw0LjIzODk5NjgzIDEwLjA4OTYzMzEsNC4zNTkzNTI5MyBDMTAuMDQ0NDk5NSw0LjQ3OTcwOTA0IDEwLjAyMTkzMzEsNC42MDAwNjMzNCAxMC4wMjE5MzMxLDQuNzIwNDE5NDUgQzEwLjAyMTkzMzEsNC44NDA3NzU1NiAxMC4wNDQ0OTk1LDQuOTYxMTI5ODYgMTAuMDg5NjMzMSw1LjA4MTQ4NTk3IEMxMC4xMzQ3NjY2LDUuMjAxODQyMDcgMTAuMjA3NDgwNyw1LjMwNzE1MjA5IDEwLjMwNzc3NzQsNS4zOTc0MTkxNyBMMTUuMTIxOTk3NywxMC4yMTE2Mzk0IEMxNS4zMTI1NjE1LDEwLjQwMjIwMzIgMTUuNTQwNzMzMiwxMC40OTc0ODM3IDE1LjgwNjUxOTYsMTAuNDk3NDgzNyBDMTYuMDcyMzA2LDEwLjQ5NzQ4MzcgMTYuMjk1NDYyOSwxMC40MDIyMDMyIDE2LjQ3NTk5NzEsMTAuMjExNjM5NCBDMTYuNjY2NTYwOSwxMC4wMjEwNzU2IDE2Ljc2MTg0MTQsOS43OTU0MTEyNCAxNi43NjE4NDE0LDkuNTM0NjM5NjcgQzE2Ljc2MTg0MTQsOS4yNzM4NjgxMSAxNi42NjY1NjA5LDkuMDQ4MjAzNzkgMTYuNDc1OTk3MSw4Ljg1NzYzOTk1IEwxMy4zMTY2NjUxLDUuNjgzMjYzNDkgTDIxLjU3NjA2MTYsNS42ODMyNjM0OSBDMjEuODQ2ODYyOSw1LjY4MzI2MzQ5IDIyLjA3NTAzNDYsNS41OTA0OTAzOSAyMi4yNjA1ODM2LDUuNDA0OTQxMzkgQzIyLjQ0NjEzMjYsNS4yMTkzOTIzOSAyMi41Mzg5MDU3LDQuOTkxMjIwNjkgMjIuNTM4OTA1Nyw0LjcyMDQxOTQ1IEMyMi41Mzg5MDU3LDQuNDQ5NjE4MjEgMjIuNDQ2MTMyNiw0LjIyMTQ0NjUxIDIyLjI2MDU4MzYsNC4wMzU4OTc1MSBDMjIuMDc1MDM0NiwzLjg1MDM0ODUxIDIxLjg0Njg2MjksMy43NTc1NzU0MSAyMS41NzYwNjE2LDMuNzU3NTc1NDEgTDEzLjMxNjY2NTEsMy43NTc1NzU0MSBMMTYuNDc1OTk3MSwwLjU4MzE5ODk0NyBDMTYuNjY2NTYwOSwwLjM5MjYzNTExMSAxNi43NjE4NDE0LDAuMTY2OTcwNzk0IDE2Ljc2MTg0MTQsLTAuMDkzODAwNzcxNSBDMTYuNzYxODQxNCwtMC4zNTQ1NzIzMzcgMTYuNjY2NTYwOSwtMC41ODAyMzY2NTQgMTYuNDc1OTk3MSwtMC43NzA4MDA0OSBDMTYuMjk1NDYyOSwtMC45NjEzNjQzMjcgMTYuMDcyMzA2LC0xLjA1NjY0NDgyIDE1LjgwNjUxOTYsLTEuMDU2NjQ0ODIgQzE1LjU0MDczMzIsLTEuMDU2NjQ0ODIgMTUuMzEyNTYxNSwtMC45NjEzNjQzMjcgMTUuMTIxOTk3NywtMC43NzA4MDA0OSBMMTAuMzA3Nzc3NCw0LjA0MzQxOTczIFoiIGlkPSJ4IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNi4yODA0MTksIDQuNzIwNDE5KSByb3RhdGUoLTIyNS4wMDAwMDApIHRyYW5zbGF0ZSgtMTYuMjgwNDE5LCAtNC43MjA0MTkpICI+PC9wYXRoPgo8L3N2Zz4K) no-repeat center;
    background-size: 16px;
    border-radius: 50%;
    content: '';
    display: block;
    height: 36px;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 36px;
    z-index: 1000;
  }
}

@media all and (-ms-high-contrast: none) {
  .lightbox-link,
  .lightbox-content.zoomable {
    cursor: pointer;
  }
}

@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-moz-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-moz-keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.transition-enabled {
  opacity: 0;
}

.transition-in {
  -webkit-animation: fade-in ease-in;
  animation: fade-in ease-in;
  -webkit-animation-duration: .25s;
  animation-duration: .25s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.transition-out {
  opacity: 1;
  -webkit-animation: fade-out ease-out;
  animation: fade-out ease-out;
  -webkit-animation-duration: .25s;
  animation-duration: .25s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.photo-frame {
  background: #000;
  border-radius: var(--radius-m);
  overflow: hidden;
}

.button-primary {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  cursor: pointer;
}

.button-primary:hover {
  background: #e7e7e7;
}

/* Hide Book Now (header button) */
.site-header .button-primary {
  display: none;
}

.project-cover {
  transition: transform .25s ease, box-shadow .25s ease;
}

.project-cover:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
}

.project-covers {
  max-width: 1200px;
  margin: 40px auto 80px;
  padding: 0 2%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.project-covers .project-cover {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #111;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .6);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.project-covers .project-cover.hold-space .cover-image:before {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 75%;
}

.project-covers .cover-image-wrap {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #000;
  flex: 1 1 auto; /* image block stays as the card */
}

.project-covers .cover-image,
.project-covers .cover,
.project-covers .cover__img {
  border-radius: 0;
}

.project-covers .cover-image {
  position: relative;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  border-radius: var(--radius-s);
  overflow: hidden;
}

.project-covers .cover {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  min-height: 100%;
  width: 100%;
  overflow: hidden;
}

.project-covers .cover .cover__img {
  font-family: 'object-fit: cover;';
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.project-covers .details-wrap {
  position: static;
  inset: auto 0 0;
  opacity: 1;
  transform: none;
  pointer-events: none;
  margin-top: 10px; 
}

.project-covers .details-inner {
  padding: 0;
  text-align: center;
}

.project-covers .title {
  color: var(--color-text-heading); /* uses your #d1d8dd var */
  font-family: dwgd, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.project-covers .project-cover:hover .details-wrap,
.project-covers .project-cover.touch-hover .details-wrap {
  opacity: 1;
  transform: translateY(0);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-m);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .3s ease;
}

.gallery-item:hover img {
  transform: scale(1.02);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease;
  z-index: 1000;
}

.lightbox--open {
  opacity: 1;
  visibility: visible;
}

.lightbox__image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 32px;
  background: 0 0;
  border: none;
  color: #fff;
  cursor: pointer;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: 0 0;
  border: none;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  padding: 16px;
}

.lightbox__nav--prev {
  left: 24px;
}

.lightbox__nav--next {
  right: 24px;
}

body.lightbox-open {
  overflow: hidden;
}

.print-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease;
  z-index: 1000;
  font-family: inherit;
}

.print-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.print-modal__overlay {
  position: absolute;
  inset: 0;
}

.print-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 96vw);
  max-width: 1200px;
  max-height: 92vh;
  padding: 20px;
  background: #101010;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .85);
  display: flex;
  flex-direction: column;
}

.print-modal__body {
  display: flex;
  gap: 24px;
  flex: 1;
  min-height: 0;
}

.print-modal__image-wrap {
  position: relative;
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
  border-radius: var(--radius-m);
  max-height: 60vh;
}

.print-modal__image {
  max-width: 100%;
  max-height: calc(100vh - 300px);/* tweak 220px to account for header/padding */
  object-fit: contain;
}

.print-modal__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.print-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, .5);
  color: #fff;
  font-size: 40px;
  width: 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 4px;
  transition: background .2s ease, transform .2s ease;
}

.print-modal__nav--prev {
  left: 10px;
}

.print-modal__nav--next {
  right: 10px;
}

.print-modal__nav:hover {
  background: rgba(255, 255, 255, .2);
  transform: translateY(-50%) scale(1.03);
}

.print-modal__details {
  flex: 1;
  padding: 20px 24px 22px;
  color: #eee;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.print-modal__details h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.print-modal__note {
  margin: 2px 0 8px;
  font-size: 12px;
  color: #a0a0a0;
}

.print-modal__sizes {
  border: none;
  padding: 0;
  margin: 0 0 10px;
}

.print-modal__sizes legend {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 6px;
}

.print-modal__sizes label {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  margin-bottom: 4px;
  border-radius: 10px;
  background: #151515;
  border: 1px solid #222;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}

.print-modal__sizes label:hover {
  border-color: #555;
  background: #191919;
}

.print-modal__sizes input[type=radio] {
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid #666;
  margin: 0;
}

.print-modal__sizes input[type=radio]:checked {
  border-color: #fff;
  background: #fff;
}

.print-modal__actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.print-modal__submit {
  margin-top: 6px;
  width: 100%;
  border-radius: 999px;
  padding: 11px 18px;
  border: none;
  background: var(--btn-primary-light-bg);
  color: var(--btn-primary-light-text);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  cursor: pointer;
}

.print-modal__submit:hover {
  background: var(--btn-primary-light-bg-hover);
}

.print-modal__secondary {
  border-radius: 999px;
  padding: 10px 18px;
  border: 1px solid #666;
  background: 0 0;
  color: #ddd;
  font-size: 13px;
  cursor: pointer;
}

.print-modal__close,
.print-modal__fullscreen {
  position: absolute;
  top: 12px;
  border: none;
  background: rgba(0, 0, 0, .6);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.print-modal__close {
  top: 10px;
  right: 12px;
  width: 28px;
  height: 28px;
  font-size: 18px;
  line-height: 1;
}

.print-modal__close:hover {
  background: rgba(0, 0, 0, .9);
}

.print-modal__fullscreen {
  right: 52px;
  font-size: 16px;
}

.print-modal__dialog--image-only .print-modal__details {
  display: none;
}

.print-modal__dialog--image-only .print-modal__body {
  padding-right: 0;
}

.print-modal__dialog--image-only .print-modal__image-wrap {
  flex: 1;
}

.cart-button {
  position: fixed;
  right: 20px;
  bottom: 80px;
  border-radius: 999px;
  padding: 8px 14px;
  border: 1px solid #555;
  background: rgba(0, 0, 0, .7);
  color: #eee;
  font-size: 13px;
  cursor: pointer;
  z-index: 1050;
}

.cart-toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%) translateY(24px);
  background: rgba(10, 10, 10, .96);
  color: #f9fafb;
  padding: 14px 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 1.4;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 1100;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .65);
}

.cart-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.cart-toast__btn {
  border-radius: 999px;
  border: 1px solid #4b5563;
  background: 0 0;
  padding: 6px 12px;
  font-size: 13px;
  cursor: pointer;
  color: #e5e7eb;
}

.cart-toast__btn--primary {
  background: var(--btn-primary-light-bg);
  color: var(--btn-primary-light-text);
  border-color: var(--btn-primary-light-bg);
}

.cart-toast__btn--primary:hover {
  background: var(--btn-primary-light-bg-hover);
  border-color: var(--btn-primary-light-bg-hover);
}

.single-photo {
  max-width: 1200px;
  margin: 0 auto 80px;
}

.single-photo__layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.single-photo__image-wrap {
  background: #000;
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .55);
}

.single-photo__image {
  display: block;
  width: 100%;
  height: auto;
  max-height:40vh;
}

.single-photo__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 32px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.single-photo__nav-link {
  color: #eaeaea;
}

.single-photo__nav-link--disabled {
  opacity: .4;
}

.single-photo__buy {
  background: #111;
  border-radius: var(--radius-l);
  padding: 20px 18px 22px;
  color: #eee;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .6);
}

.single-photo__buy-title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.single-photo__buy-note {
  margin: 0 0 14px;
  font-size: 13px;
  color: #b0b0b0;
}

.single-photo__buy-smallprint {
  margin-top: 20px;
  margin-bottom: 20px;
}

.single-photo__buy .print-modal__sizes {
  margin-bottom: 10px;
}

.checkout-layout {
  max-width: 1100px;
  margin: 0 auto 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.checkout-cart,
.checkout-details {
  background: #111;
  border-radius: 16px;
  padding: 20px 18px 24px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .6);
  color: #eee;
}

.checkout-heading {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.checkout-cart__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checkout-cart__item {
  display: flex;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #222;
}

.checkout-cart__item:last-child {
  border-bottom: none;
}

.checkout-cart__thumb {
  flex: 0 0 96px;
  height: 72px;
  border-radius: var(--radius-s);
  overflow: hidden;
  background: #000;
}

.checkout-cart__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-cart__meta {
  flex: 1;
  font-size: 13px;
}

.checkout-cart__line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2px;
}

.checkout-cart__label {
  color: #888;
}

.checkout-cart__line--total .checkout-cart__label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.checkout-cart__line--total .checkout-cart__value {
  font-weight: 600;
}

.checkout-summary {
  margin-top: 16px;
  padding-top: 10px;
  border-top: 1px solid #222;
  font-size: 13px;
}

.checkout-summary__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  font-weight: 600;
}

.checkout-summary__note {
  margin: 6px 0 0;
  color: #b0b0b0;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 13px;
}

.checkout-form__field label {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #aaa;
}

.checkout-form__field input,
.checkout-form__field textarea {
  width: 100%;
  padding: 9px 10px;
  border-radius: 8px;
  border: 1px solid #333;
  background: #050505;
  color: #eee;
  font-size: 13px;
}

.checkout-form__field input:focus,
.checkout-form__field textarea:focus {
  outline: 0;
  border-color: #666;
}

.checkout-form__actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}

.checkout-form__submit {
  border: none;
  border-radius: 999px;
  padding: 11px 20px;
  background: var(--btn-primary-light-bg);
  color: var(--btn-primary-light-text);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  cursor: pointer;
  white-space: nowrap;
}

.checkout-form__submit:hover {
  background: var(--btn-primary-light-bg-hover);
}

.checkout-form__secondary {
  border-radius: 999px;
  padding: 9px 16px;
  border: 1px solid #555;
  color: #eee;
  text-decoration: none;
  font-size: 12px;
  white-space: nowrap;
}

.checkout-form__secondary:hover {
  background: #181818;
}

.checkout-form__smallprint {
  margin: 6px 0 0;
  font-size: 11px;
  color: #a0a0a0;
}

.checkout-cart__qty-controls {
  margin: 6px 0 8px;
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

.checkout-cart__qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid #555;
  background: #151515;
  color: #eee;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.checkout-cart__qty-btn:hover {
  background: #1d1d1d;
  border-color: #777;
}

.checkout-cart__remove {
  border-radius: 999px;
  border: 1px solid #555;
  background: 0 0;
  color: #bbb;
  font-size: 11px;
  padding: 6px 10px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.checkout-cart__remove:hover {
  background: #181818;
  color: #fff;
}

.masthead {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  height: auto;
  padding: 90px 24px 80px;
  color: #f9fafb;
  text-align: center;
  background: radial-gradient(ellipse at top, rgba(255, 255, 255, .08), transparent 55%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.homepage .masthead {
    background-position: 50% 15%;
}

.masthead-contents {
  max-width: 1100px;
  margin: 0 auto;
}

.masthead-text {
  max-width: 720px;
  margin: 0 auto;
}

.masthead-text h1 {
  font-family: dwgd, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.masthead-text p {
  max-width: 640px;
  margin: 0 auto 22px;
  font-size: 15px;
  line-height: 1.7;
  color: #e5e5e5;
}

.masthead-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 14px;
}

.button-primary--ghost {
  background: 0 0;
  border: 1px solid rgba(249, 250, 251, .7);
  color: #f9fafb;
}

.button-primary--ghost:hover {
  background: rgba(249, 250, 251, .08);
}

/* HOME PAGE SECTIONS */

.homepage-section {
  padding: 45px 24px;
  color: #e5e5e5;
}

.homepage-section--weddings {
  background: var(--color-bg-section-dark);
}

.homepage-section--sports {
  background: #0b0b0b;
}

.homepage-section--portfolio {
  background: var(--color-bg-section-darker);
}

/* Line below Portfolio (above Weddings) */
#portfolio + .homepage-section--weddings {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Line between Weddings and Sports & Events */
.homepage-section--weddings + .homepage-section--sports {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Line between Sports & Events and Portraits */
.homepage-section--sports + .homepage-section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.homepage-section--about {
  background: #0b0b0b;
}

.homepage-section--info {
  background: var(--color-bg-section-darker);
  border-top: 1px solid #181818;
}

.homepage-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* h2 headings in homepage sections -> #d1d8dd */
.homepage-section__header h2 {
  margin: 0 0 10px;
  font-family: dwgd, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-text-heading);
}

/* Paragraphs in homepage sections -> #f5f5f5 */
.homepage-section__header p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-body);
}

/* Catch-all paragraphs inside homepage sections */
.homepage-section p {
  color: var(--color-text-body);
}

.homepage-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 28px;
  align-items: flex-start;
}

.homepage-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.7;
}

.homepage-list li + li {
  margin-top: 6px;
}

.homepage-list--ticks li:before {
  content: "•";
  display: inline-block;
  margin-right: 8px;
  color: var(--color-accent);
}

.homepage-section__cta-block {
  padding: 16px 18px 18px;
  border-radius: var(--radius-m);
  background: radial-gradient(circle at top left, #272727, #2b2b2b);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .7);
}

.homepage-section__cta-text {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.6;
}

.homepage-section__cta-centered {
  margin-top: 30px;
  text-align: center;
}

.homepage-section__cta-centered p {
  margin: 0 0 14px;
  font-size: 14px;
}

.homepage-section__grid--portfolio {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.homepage-section__grid--portfolio .project-covers {
  margin: 0;
  padding: 0;
  gap: 20px;
}

.homepage-section__grid--portfolio .project-covers .project-cover {
  box-shadow: 0 16px 50px rgba(0, 0, 0, .7);
}

.homepage-section__about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
}

.homepage-section__about-photo {
  max-width: 420px;
  margin: 0 auto;
}

.homepage-section__about-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-m);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .7);
}

.homepage-section__about-text {
  font-size: 14px;
  line-height: 1.8;
  color: #e5e5e5;
}

.homepage-section__about-text p + p {
  margin-top: 10px;
}

.homepage-section__info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
}

.homepage-section__info-card {
  padding: 18px 18px 16px;
  border-radius: var(--radius-m);
  background: #080808;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .7);
  font-size: 14px;
  line-height: 1.7;
}

.homepage-section__info-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.homepage-section__info-card p + p {
  margin-top: 8px;
}

.homepage-section__info-card--muted {
  background: #050505;
  border: 1px solid var(--color-border-subtle);
}

/* Use body colour for info header paragraphs as well */
.homepage-section--info .homepage-section__header p {
  color: var(--color-text-body);
}

.homepage-section__info-inline-cta {
  margin-top: 14px;
  font-size: 13px;
  color: var(--color-accent-soft);
}

.homepage-section__info-inline-cta a {
  text-decoration: underline;
}

.homepage-section__info-inline-cta a:hover {
  opacity: .9;
}

.site-header .nav-container .page-title a {
  display: inline-block;
  padding: 7px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .85);
  background: #000;
  color: #f9fafb;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.primary-nav-toggle {
  display: none;
}

.primary-nav-toggle__button {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 20px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  -webkit-tap-highlight-color: transparent;
  justify-self: end;
}

.primary-nav-toggle__button span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.primary-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility 0s linear .2s;
  z-index: 9999;
  flex-direction: column;
  gap: 32px;
}

.primary-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
}

.primary-nav a {
  font-family: dwgd, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 14px;
  color: #f9fafb;
  padding: 6px 0;
}

.primary-nav a:hover {
  color: #fff;
}

.primary-nav__social {
  margin-top: 20px;
}

.primary-nav__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.primary-nav__social svg {
  fill: #fff;
  opacity: .9;
}

.primary-nav__social a:hover svg {
  opacity: 1;
}

.primary-nav-close {
  position: fixed;
  top: 45px;
  right: 5%;
  width: 28px;
  height: 20px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: .25s;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Toggle overlay and close button via checkbox */
#primary-nav-toggle:checked ~ .primary-nav-overlay {
  opacity: 1;
  visibility: visible;
  transition: opacity .2s ease, visibility 0s;
}

#primary-nav-toggle:checked ~ .primary-nav-overlay .primary-nav-close {
  opacity: 1;
  pointer-events: auto;
}

.js-responsive-nav,
.responsive-nav {
  display: none;
}

.site-header .nav-container {
  justify-self: start;
}

.site-header .primary-nav-toggle__button {
  justify-self: end;
}

@media (max-width: 932px) {
  .cookie-banner p {
    font-size: 16px;
  }
  .pf-nav-social li {
    padding-left: 8px;
  }
  .pf-footer-social li {
    padding-bottom: 24px;
    padding-right: 12px;
  }
  .site-footer {
    font-size: 14px;
    line-height: 20px;
    padding-bottom: 48px;
    padding-top: 48px;
  }
  .site-header {
    padding: 11px 5%;
  }
  .site-header .pf-nav-social {
    display: none;
  }
  .site-header.on-scroll .hamburger i {
    background-color: #fff;
  }
  .responsive-nav,
  .responsive-nav .social {
    background-color: #191919 !important;
  }
  .site-content {
    margin: 0;
    padding: 0 0;
    width: 100%;
  }
  .project-covers {
    grid-template-columns: minmax(0, 1fr);  /* single column on mobile */
    gap: 20px;
    margin-bottom: 60px;
  }
  .homepage-section__grid,
  .homepage-section__grid--portfolio,
  .homepage-section__about-grid,
  .homepage-section__info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .checkout-layout {
    margin-bottom: 60px;
  }
  .checkout-cart,
  .checkout-details {
    padding: 16px 14px 20px;
  }
  .checkout-form__actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .checkout-form__secondary,
  .checkout-form__submit {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .site-header .nav-container {
    display: none;
  }
  .site-header {
    grid-template-columns: 1fr auto 1fr;
    height: 90px;
  }
  .header-placeholder {
    height: 90px;
  }
}

@media (max-width: 700px) {
  .print-modal__dialog {
    width: 96vw;
    max-height: 96vh;
  }
  .print-modal__image-wrap {
    max-height: 55vh;
  }
  .print-modal__details {
    padding: 16px 16px 20px;
  }
  .print-modal__body {
    flex-direction: column;
  }
  .print-modal__actions {
    flex-direction: column;
  }
  .single-photo {
    margin-bottom: 60px;
  }
  .single-photo__buy {
    padding: 16px 14px 20px;
  }
  .single-photo__nav {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .masthead {
    padding-top: 60px;
    padding-bottom: 56px;
    min-height: 0;
  }
  .masthead-text h1 {
    font-size: 2rem;
    letter-spacing: .13em;
  }
  .masthead-text p {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .cart-toast {
    left: 16px;
    right: 16px;
    bottom: 24px;
    width: auto;
    max-width: none;
    transform: translateY(24px);
    border-radius: 16px;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
  }
  .cart-toast--visible {
    transform: translateY(0);
  }
  .cart-toast__btn {
    margin-left: auto;
    flex-shrink: 0;
  }
}

@media (max-width: 540px) {
  .pf-nav-social li {
    padding-left: 7px;
  }
  .pf-footer-social li {
    padding-bottom: 20px;
    padding-right: 10px;
  }
  .site-footer {
    font-size: 14px;
    line-height: 20px;
    padding-bottom: 41px;
    padding-top: 41px;
  }
  .close-responsive-click-area {
    padding: 40px 10%;
  }
  .close-responsive-button {
    top: 30px;
  }
}

/* New masthead with cover image */

.masthead {
  position: relative;
  min-height: 70vh;              /* tweak height as you like */
  display: flex;
  align-items: center;

  background-image: url('/static/cover.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  color: #ffffff;                /* make sure text is readable */
}

/* optional dark overlay to help text stand out */
.masthead::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.65)
  );
}

.masthead-contents {
  position: relative;            /* so it sits above the overlay */
  padding: 4rem 1.5rem;
}

.back-to-top {
  text-align: center;
  padding: 24px 0 40px;
}

.back-to-top a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;           /* small text */
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ffffff;            /* white */
  opacity: 0.8;
}

.back-to-top a:hover {
  opacity: 1;
}

.back-to-top .arrow {
  font-size: 14px;           /* tiny bit larger for the arrow */
  line-height: 1;
}

/* ==== GALLERY (NEW) ===================================== */

/* --- MOBILE-FIRST: simple vertical stack --- */

.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.gallery-item {
  text-decoration: none;
  color: inherit;
}

.gallery-item figure {
  margin: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #050505;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
  transition:
    transform 160ms ease-out,
    box-shadow 160ms ease-out;
}

/* On mobile we show full image, no cropping. */
.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
}

/* Caption overlay */
.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.6rem 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82),
    rgba(0, 0, 0, 0.0)
  );
  pointer-events: none;
}

/* Hover (only really visible desktop, but fine on touch too) */
.gallery-item:hover figure {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
}

/* --- DESKTOP: justified mosaic when JS adds .is-enhanced --- */

@media (min-width: 768px) {
	
   /* Hide gallery grid by default */
  .gallery-grid {
    opacity: 0;
  }

  .gallery-grid.is-enhanced {
    display: block;          /* JS will inject .gallery-row wrappers */
    animation: galleryFadeIn 1000ms cubic-bezier(.16, 1, .3, 1) 200ms forwards
  }

  .gallery-grid.is-enhanced .gallery-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.4rem;
    margin-bottom: 1.4rem;
  }

  .gallery-grid.is-enhanced .gallery-item {
    flex: 0 0 auto;          /* width is set via JS */
  }

  .gallery-grid.is-enhanced .gallery-item figure {
    height: 100%;            /* row height is set via JS */
  }

  .gallery-grid.is-enhanced .gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    /* IMPORTANT: no cropping if our JS sizes match the aspect ratio.
       object-fit is not needed; removing it avoids unwanted crops. */
  }
}

/* No special per-ratio CSS needed: JS uses the aspect-ratio classes
   to compute widths numerically. Keep the classes as markers only. */

.page-header.content {
	margin-left: auto;
    margin-right: auto;
    max-width: 620px;
    padding-bottom: 60px;
    padding-top: 70px;
    width: 100%;
}

.page-header .title {
    color: #eeeeee;
    font-family: dwgd;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
    padding-bottom: 20px;
    padding-top: 0px;
    text-align: center;
    text-transform: none;
    width: 100%;
	margin: 0 auto;
}

.page-header .description {
    color: #eeeeee;
    font-family: dwgd;
    font-size: 18px;
    font-style: normal;
    padding-top: 0px;
    text-align: center;
    text-transform: none;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 540px) {
    .page-header.content {
        padding-bottom: 15px;
        padding-top: 30px;
        width: 100%;
    }
}

/* === SINGLE PHOTO LAYOUT (aspect-ratio aware) === */

.single-photo {
  max-width: 1200px;
  margin: 0 auto 80px;
}

.single-photo__layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Base wrapper: black “frame”, centered, height capped by viewport */
.single-photo__image-wrap {
  background: var(--color-bg-page);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .55);

  width: 100%;
  max-height: 82vh;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image always fits fully – no cropping on the detail page */
.single-photo__image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ---------- Aspect-ratio tuning (desktop) ---------- */

/* Default: treat as 3:2 landscape */
.single-photo__image-wrap--ar-3-2,
.single-photo__image-wrap--ar-landscape {
  aspect-ratio: 3 / 2;   /* nice landscape viewing window */
}

.single-photo__image-wrap--ar-5-4 {
  aspect-ratio: 5 / 4;   /* nice landscape viewing window */
}


.single-photo__image-wrap--ar-4-3 {
  aspect-ratio: 4 / 3;   /* nice landscape viewing window */
}

.single-photo__image-wrap--ar-4-3 {
  aspect-ratio: 4 / 3;   /* nice landscape viewing window */
}

.single-photo__image-wrap--ar-16-9 {
  aspect-ratio: 16 / 9;   /* nice landscape viewing window */
}

/* Cinematic ultra-wide */
.single-photo__image-wrap--ar-21-9 {
  aspect-ratio: 21 / 9;
}

/* 2:1 panos */
.single-photo__image-wrap--ar-2-1 {
  aspect-ratio: 2 / 1;
}

/* Portraits – taller window, same no-crop behaviour */
.single-photo__image-wrap--ar-2-3,
.single-photo__image-wrap--ar-portrait {
  aspect-ratio: 2 / 3;
  max-width: 55%;         /* avoid a super skinny pillar across full width */
}

.single-photo__image-wrap--ar-9-16 {
  aspect-ratio: 9 / 16;
  max-width: 55%;         /* avoid a super skinny pillar across full width */
}

.single-photo__image-wrap--ar-3-4 {
  aspect-ratio: 3 / 4;
  max-width: 55%;         /* avoid a super skinny pillar across full width */
}

.single-photo__image-wrap--ar-4-5 {
  aspect-ratio: 4 / 5;
  max-width: 55%;         /* avoid a super skinny pillar across full width */
}

/* Squares */
.single-photo__image-wrap--ar-1-1 {
  aspect-ratio: 1 / 1;
  max-width: 50%;
}

/* Fallback if we somehow don’t know the ratio */
.single-photo__image-wrap--ar-unknown {
  aspect-ratio: 3 / 2;
}

/* You *can* also do minor tweaks per-image class if you like, e.g.: */
/*
.single-photo__image--ar-21-9 {
  /* nothing needed right now – object-fit: contain handles it */
/*}
*/

/* ---------- Mobile: let the image dictate layout ---------- */

@media (max-width: 700px) {
  .single-photo {
    margin-bottom: 60px;
  }

  .single-photo__layout {
    gap: 15px;
  }

  .single-photo__image-wrap {
    max-height: none;
    aspect-ratio: auto;     /* don’t force a frame; just let it flow */
    border-radius: 0;
    box-shadow: none;
    background: #000;
  }

  .single-photo__image-wrap[class*="single-photo__image-wrap--"] {
    max-width: 100%;
  }

  .single-photo__image {
    width: 100%;
    height: auto;
    max-height: none;
  }
}

/* Keyframes for fade-in */
@keyframes galleryFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.single-photo__nav {
  display: flex;
  align-items: center;
  justify-content: space-between; /* spreads prev / back / next nicely */
  gap: 12px;
  margin-top: 12px;
}

.single-photo__nav-link,
.single-photo__nav-link--disabled {
  font-size: 14px;
  white-space: nowrap;      /* prevent each link breaking on its own line */
}

/* Optional: tighten spacing slightly on smaller screens */
@media (max-width: 700px) {
  .single-photo__nav {
    gap: 8px;
    font-size: 13px;
  }
}


/* ============================
   SERVICE PAGES (WEDDINGS, EVENTS, ETC.)
   ============================ */

/* Base hook for all service pages */
.service-page {
  background: var(--color-bg-section-darker);
}

/* Optional modifiers if you ever want small per-service tweaks */
.service-page--wedding {}
.service-page--event {}
.service-page--portrait {}

/* Every section on a service page */
.service-section {
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.service-section:first-of-type {
  border-top: none;
}

@media (min-width: 900px) {
  .service-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }
}

/* ========= INTRO / HERO-TEXT SECTION ========= */

.service-section--intro {
  background: var(--color-bg-section-dark);
  border-bottom: 1px solid #181818;
}

/* Keep weddings as an alias for backwards compatibility */
.homepage-section--weddings-intro {
  /* No visual styles needed; we now style via .service-section--intro */
}

.service-intro {
  max-width: 780px;
}

.service-intro p {
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* Two-column grid: copy + side card */
.service-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: flex-start;
  margin-top: 24px;
}

/* Heading + body copy inside intro */
.service-section--intro h1 {
  margin: 0 0 12px;
  font-family: dwgd, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(22px, 2.4vw, 26px);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-text-heading);
}

.service-section--intro .homepage-section__header p {
  font-size: 15px;
  line-height: 1.8;
}

.service-intro__copy p + p {
  margin-top: 10px;
}

.service-intro__card {
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.7);
  border-radius: var(--radius-m);
}

/* Stack nicely on mobile */
@media (max-width: 768px) {
  .service-intro__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-section--intro .homepage-section__header p {
    font-size: 14px;
  }
}

/* ========= SERVICE GALLERY / IMAGES ========= */

.service-section--gallery {
  background: var(--color-bg-section-darker);
}

/* Generic gallery grid for services: ALWAYS 3 across */
.service-gallery-grid,
.wedding-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 4px;
}

.wedding-grid__row {
  border-radius: var(--radius-s);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .75);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  margin-top: 25px;
  display:flex;
}

.service-gallery-item {
  background: #060606;
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .75);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.wedding-grid__item img,
.service-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
}

.wedding-grid__item:hover,
.service-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .9);
}

/* Optional captions / meta */
.wedding-grid__title,
.service-gallery-item h3 {
  margin: 12px 14px 2px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-text-heading);
}

.wedding-grid__meta,
.service-gallery-item p {
  margin: 0 14px 14px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text-body);
}

/* (Optional) tighten on very small phones */
@media (max-width: 420px) {
  .service-gallery-grid,
  .wedding-grid {
    gap: 10px;
  }
}

/* ========= PRICING / PACKAGES ========= */

.service-section--pricing {
  background: #050505;
  border-top: 1px solid #181818;
  border-bottom: 1px solid #181818;
}

.service-pricing-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 22px;
}

.service-pricing-card,
.pricing-card {
  background: #080808;
  border-radius: var(--radius-l);
  padding: 18px 18px 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .8);
  border: 1px solid rgba(148, 163, 184, 0.18);
  display: flex;
  flex-direction: column;
}

.service-pricing-card--highlight,
.pricing-card--highlight {
  border-color: rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at top left, #15171b, #050607);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.75);
}

.service-pricing-card h3,
.pricing-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-text-heading);
}

.pricing-card__price {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
  color: #f9fafb;
}

.pricing-card .homepage-list,
.service-pricing-card .homepage-list {
  margin-bottom: 16px;
}

.pricing-card .button-primary,
.service-pricing-card .button-primary {
  margin-top: auto;
}

.pricing-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--color-text-soft);
  text-align: center;
}

/* ========= PROCESS / HOW IT WORKS ========= */

.service-section--process {
  background: var(--color-bg-section-dark);
}

.service-process-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 18px;
}

.service-process-step,
.process-step {
  background: #080808;
  border-radius: 18px;
  padding: 16px 16px 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .75);
  position: relative;
}

/* Step number pill */
.process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(156, 163, 175, .8);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 10px 0 0;
}

.service-process-step h3,
.process-step h3 {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-text-heading);
}

.service-process-step p,
.process-step p {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.7;
}

/* ========= TESTIMONIALS ========= */

.service-section--testimonials {
  background: #050505;
  border-top: 1px solid #181818;
}

.service-testimonial,
.testimonial {
  max-width: 760px;
  margin: 10px auto 0;
  padding: 20px 20px 18px;
  border-radius: var(--radius-l);
  background: radial-gradient(circle at top left, #151515, #050505);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .75);
}

.testimonial__quote {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text-body);
}

.testimonial__name {
  margin: 12px 0 0;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

/* ========= AVAILABILITY / ENQUIRY FORM ========= */

.service-section--availability,
.homepage-section--availability {
  background: var(--color-bg-section-dark);
}

/* Center the form; ignore default 2-col grid here */
.service-section--availability .homepage-section__grid,
.homepage-section--availability .homepage-section__grid {
  display: flex;
  justify-content: center;
}

/* Form card */
.service-availability-form,
.availability-form {
  /*background: #050505;
  border: 1px solid #181818;
  */
  border-radius: var(--radius-l);
  padding: 22px 24px 26px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .85);
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
}

/* Generic form rows */
.form-row {
  margin-bottom: 16px;
}

.form-row--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

/* Labels */
.form-row label,
.form-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-text-body);
}

/* Inputs / textarea / select */
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #30343c;
  background: #050711;
  color: #e5e5e5;
  font-size: 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #6b7280;
}

/* Select arrow */
.form-row select {
  background-image: linear-gradient(45deg, #9fe5ff 50%, transparent 50%),
                    linear-gradient(135deg, #9fe5ff 50%, transparent 50%);
  background-position: right 12px top 55%, right 7px top 55%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

/* Focus state */
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: 0;
  border-color: #9fe5ff;
  box-shadow: 0 0 0 1px rgba(159, 229, 255, .25);
}

/* Form actions */
.form-row--actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
}

.form-row--actions .button-primary {
  flex: 0 0 auto;
}

.form-help {
  font-size: 11px;
  color: var(--color-text-soft);
}

/* Optional info card beside form */
.service-availability-aside,
.availability-aside {
  background: #050505;
  border-radius: var(--radius-l);
  padding: 18px 18px 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .85);
  border: 1px solid #181818;
  font-size: 14px;
  line-height: 1.7;
}

.service-availability-aside h3,
.availability-aside h3 {
  margin: 0 0 8px;
  font-size: 15px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-text-heading);
}

.service-availability-aside p + p,
.availability-aside p + p {
  margin-top: 8px;
}

/* Mobile tweaks */
@media (max-width: 720px) {
  .service-section--availability,
  .homepage-section--availability {
    padding-left: 18px;
    padding-right: 18px;
  }

  .service-availability-form,
  .availability-form {
    padding: 20px 16px 22px;
    max-width: 100%;
  }

  .form-row--actions {
    flex-direction: column;
    align-items: stretch;
  }

  .form-row--actions .button-primary {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .form-row input,
  .form-row textarea,
  .form-row select {
    font-size: 16px;
    padding: 13px 16px;
  }
}

/* ========= FAQ ========= */

.service-section--faq,
.homepage-section--faq {
  background: #050505;
  border-top: 1px solid #181818;
}

.service-faq-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

/* Accordion using <details>/<summary> */
.faq-item,
.service-faq-item {
  background: #050505;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

/* Remove default marker */
.faq-item__summary {
  list-style: none;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

.faq-item__summary::-webkit-details-marker {
  display: none;
}

.faq-item__summary:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-item__question {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* plus/minus icon */
.faq-item__icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 14px;
  height: 2px;
  margin: -1px 0 0 -7px;
  background: #ffffff;
  border-radius: 999px;
  transition: transform 0.18s ease;
}

/* vertical bar for + */
.faq-item__icon::after {
  transform: rotate(90deg);
}

/* When open, show minus */
.faq-item[open] .faq-item__icon::after {
  transform: rotate(0deg);
}

.faq-item__body {
  padding: 0 16px 14px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-text-body);
}

.faq-item__body p {
  margin-top: 6px;
}

@media (max-width: 720px) {
  .service-faq-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* ========= FINAL CTA ========= */

.service-section--cta,
.homepage-section--cta {
  background: var(--color-bg-section-darker);
  border-top: 1px solid #181818;
  padding-bottom: 60px;
}

.service-section--cta h2,
.homepage-section--cta h2 {
  margin-bottom: 10px;
}

.service-section--cta p,
.homepage-section--cta p {
  max-width: 640px;
  margin: 0 auto 18px;
}

/* Shared small responsive tweaks for service grids */
@media (max-width: 900px) {
  .service-pricing-grid,
  .pricing-grid,
  .service-process-grid,
  .process-grid,
  .service-faq-grid,
  .faq-grid,
  .service-gallery-grid,
  .wedding-grid {
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .service-availability-form,
  .availability-form,
  .service-availability-aside,
  .availability-aside {
    padding: 16px 0px 18px;
  }

  .service-section--cta,
  .homepage-section--cta {
    padding-bottom: 40px;
  }
}

main > section:last-of-type {
  padding-bottom: 90px;
}

/* Base nav layout (desktop & general) */
.single-photo__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.single-photo__nav-link,
.single-photo__nav-link--disabled {
  font-size: 14px;
  white-space: nowrap;
  padding: 6px 10px;      /* more padding around each item */
  border-radius: 999px;   /* optional: pill-feel, remove if you don't like */
}

/* Mobile tweaks */
@media (max-width: 700px) {
  .single-photo__nav {
    justify-content: center;   /* center the whole strip */
    gap: 16px;                 /* more space between buttons */
  }

  .single-photo__nav-link,
  .single-photo__nav-link--disabled {
    font-size: 13px;
  }
}

/* --- Fix single-photo nav so all buttons sit on one line --- */
.single-photo__nav {
  display: flex;
  flex-direction: row;   /* force row on all viewports */
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;     /* keep them on one line */
  gap: 12px;
  margin-top: 12px;
}

.single-photo__nav-link,
.single-photo__nav-link--disabled {
  white-space: nowrap;   /* don't break "Back to {gallery}" etc */
}

/* Mobile: keep them in a row, allow scroll instead of wrapping */
@media (max-width: 700px) {
  .single-photo__nav {
    justify-content: center;
    overflow-x: auto;    /* if it's too tight, you can scroll sideways */
    padding-bottom: 4px; /* tiny buffer so the scrollbar isn't tight */
	width:100%;
	margin:0;
  }

  .single-photo__nav-link,
  .single-photo__nav-link--disabled {
    font-size: 13px;
  }
}

/* Promo banner for src-based offers */
.promo-banner {
  margin-bottom: 1.5rem;
  padding: 0.9rem 1.2rem;
  border-radius: 6px;
  background: #f5fbf7;
  border: 1px solid #c6ead2;
  font-size: 0.95rem;
  line-height: 1.5;
  color:black;
}

.promo-banner strong {
  font-weight: 600;
}

/* Price display with strike-through + discounted value */
.pricing-card__price {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* Original price (struck through when a discount is active) */
.price-original {
  font-size: 0.95rem;
  font-weight: 400;
  color: #888;
  text-decoration: line-through;
  margin-right: 0.4rem;
}

/* Discounted price */
.price-discounted {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f6f3f; /* subtle “offer” feel, but still on-brand */
}

/* Small badge showing "% off" */
.price-badge {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.15rem 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 999px;
  background: #e4f6eb;
  color: #1f6f3f;
}

/* Optional: keep things tidy on small screens */
@media (max-width: 600px) {
  .promo-banner {
    font-size: 0.9rem;
  }

  .pricing-card__price {
    font-size: 1.15rem;
  }

  .price-discounted {
    font-size: 1.2rem;
  }
}

.error-page {
  padding: 6rem 2rem;
  text-align: center;
  color:#f1f1f1
}

.error-inner h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.error-inner p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.error-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.error-image {
  margin-top: 3rem;
  max-width: 100%;
  border-radius: 8px;
  box-shadow: rgba(0,0,0,0.08) 0 4px 18px;
}

/* TESTIMONIALS (Weddings page) */
.homepage-section--testimonials {
  background: var(--color-bg-section-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.testimonial-card {
  padding: 18px 18px 16px;
  border-radius: var(--radius-m);
  background: #080808;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .7);
  border: 1px solid var(--color-border-subtle);
  margin: 0;
}

/* === OPTION C: Premium centered testimonial card === */

.service-section--testimonials .homepage-section__header h2{
  letter-spacing: 0.14em; /* keeps your current vibe */
}

/* Give the section a little breathing room + a soft top separator */
.service-section--testimonials{
  padding-top: 48px;
  padding-bottom: 28px;
  position: relative;
}

.service-section--testimonials::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 18px;
  height: 1px;
  opacity: 0.25;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
}

/* Center + size the testimonial card */
.service-section--testimonials .service-testimonial{
  max-width: 820px;            /* adjust to taste */
  margin: 18px auto 0;         /* centers it */
  padding: 26px 28px;
  border-radius: 16px;

  /* “glass” look that still works on your dark theme */
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 18px 45px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.04) inset;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  position: relative;
  overflow: hidden;
}

/* Quote styling */
.service-section--testimonials .testimonial__quote{
  margin: 0;
  font-style: italic;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.65;
  color: rgba(255,255,255,0.92);
  text-wrap: pretty;
  hyphens: auto;
  padding:10px;
}

/* Decorative quote mark */
.service-section--testimonials .testimonial__quote::before{
  content: "“";
  position: absolute;
  left: 18px;
  top: 6px;
  font-style: normal;
  font-size: 56px;
  line-height: 1;
  opacity: 0.12;
  color: #fff;
}

/* Slightly nicer text rendering on dark backgrounds */
.service-section--testimonials,
.service-section--testimonials *{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Mobile tweaks */
@media (max-width: 560px){
  .service-section--testimonials .service-testimonial{
    padding: 20px 18px;
    border-radius: 14px;
  }
  .service-section--testimonials .testimonial__quote::before{
    left: 14px;
    top: 4px;
    font-size: 48px;
  }
}
