:root {
  color-scheme: light;
  --ink: #171714;
  --ink-soft: #504f49;
  --paper: #f5f0e7;
  --paper-deep: #ebe4d8;
  --white: #fffdf8;
  --line: rgba(23, 23, 20, 0.16);
  --line-strong: rgba(23, 23, 20, 0.34);
  --aqua: #7fc7cf;
  --aqua-deep: #326d75;
  --clay: #c56f54;
  --sage: #8fa79b;
  --rose: #dca3ac;
  --fjord: #739aa2;
  --shadow: 0 24px 70px rgba(35, 31, 25, 0.16);
  --radius: 2px;
  --shell: min(1440px, calc(100vw - 64px));
  --header-height: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open,
body.drawer-open,
body.dialog-open { overflow: hidden; }
button,
input { font: inherit; }
button,
a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg,
.lucide { width: 1.1em; height: 1.1em; stroke-width: 1.8; }
[hidden] { display: none !important; }

.shell { width: var(--shell); margin-inline: auto; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  z-index: 99999;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--white);
}
.skip-link:focus { transform: none; }
.site-noise {
  position: fixed;
  z-index: 9999;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}
.toast {
  position: fixed;
  z-index: 20000;
  left: 50%;
  bottom: max(20px, env(safe-area-inset-bottom));
  max-width: calc(100vw - 32px);
  padding: 13px 18px;
  transform: translate(-50%, calc(100% + 72px));
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, opacity 0.2s ease, visibility 0s linear 0.28s;
  will-change: transform, opacity;
}
.toast.is-visible {
  transform: translate(-50%, 0);
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.eyebrow {
  margin: 0 0 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: var(--aqua-deep); border-color: var(--aqua-deep); }
.button-quiet:hover { background: var(--white); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
}
.icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.digital-strip {
  position: relative;
  z-index: 1001;
  background: var(--ink);
  color: var(--white);
}
.digital-strip-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.digital-strip-inner span { display: inline-flex; align-items: center; gap: 7px; }
.digital-strip-detail { opacity: 0.58; }

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.brand-mark {
  position: relative;
  display: inline-block;
  width: 27px;
  height: 27px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}
.brand-mark::before,
.brand-mark::after,
.brand-mark span::before,
.brand-mark span::after {
  content: "";
  position: absolute;
  background: var(--ink);
}
.brand-mark::before { width: 1px; height: 35px; top: -5px; left: 13px; transform: rotate(24deg); }
.brand-mark::after { width: 35px; height: 1px; top: 13px; left: -5px; transform: rotate(-18deg); }
.brand-mark span::before { width: 5px; height: 5px; border-radius: 50%; top: 4px; right: 3px; }
.brand-mark span::after { width: 3px; height: 3px; border-radius: 50%; bottom: 5px; left: 4px; }
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 46px);
}
.desktop-nav a,
.header-create {
  position: relative;
  font-size: 11px;
  font-weight: 600;
}
.desktop-nav a::after,
.header-create::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--ink);
  transition: transform 0.25s ease;
}
.desktop-nav a:hover::after,
.header-create:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 22px; }
.basket-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0 4px 0 0;
  border: 0;
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}
.basket-count {
  display: inline-grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 10px;
}
.mobile-menu-button { display: none; }
.mobile-menu {
  position: fixed;
  z-index: 1500;
  inset: 0;
  overflow-y: auto;
  background: var(--paper);
}
.mobile-menu-head {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.mobile-menu-kicker { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.mobile-nav { display: grid; padding-block: 22px; }
.mobile-nav a {
  display: grid;
  grid-template-columns: 38px 1fr 24px;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a > .lucide:first-child { width: 22px; height: 22px; }
.mobile-nav a > .lucide:last-child { justify-self: end; }
.mobile-nav span { display: grid; gap: 4px; }
.mobile-nav strong { font-size: 16px; }
.mobile-nav small { color: var(--ink-soft); font-size: 11px; line-height: 1.45; }
.mobile-menu-footer { padding: 4px 0 36px; }
.mobile-menu-footer .button { width: 100%; }
.mobile-menu-footer p { max-width: 44ch; margin: 17px 0 0; color: var(--ink-soft); font-size: 11px; line-height: 1.6; }

.hero {
  min-height: min(820px, calc(100vh - 110px));
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: clamp(50px, 7vw, 120px);
  padding-block: clamp(70px, 8vw, 118px);
}
.hero-copy { max-width: 680px; }
.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(54px, 6.3vw, 104px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.91;
}
.hero h1 em {
  display: block;
  margin-top: 0.12em;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}
.hero-intro {
  max-width: 650px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 35px; }
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 52px 0 0;
  padding: 25px 0 0;
  border-top: 1px solid var(--line);
}
.hero-facts div { display: grid; gap: 7px; }
.hero-facts dt { display: flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; }
.hero-facts dd { margin: 0; color: var(--ink-soft); font-size: 10px; line-height: 1.45; }
.hero-gallery { position: relative; min-height: 610px; }
.hero-poster { position: absolute; margin: 0; overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.hero-poster img { width: 100%; height: 100%; object-fit: cover; }
.hero-poster-main { z-index: 3; top: 0; left: 13%; width: 53%; aspect-ratio: 0.73; transform: rotate(-1.3deg); }
.hero-poster-main img { object-position: center; }
.hero-poster-main figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.92);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-poster-main figcaption strong { color: var(--aqua-deep); }
.hero-poster-dawlish { z-index: 2; right: 0; bottom: 4%; width: 47%; aspect-ratio: 1.25; transform: rotate(2.5deg); }
.hero-poster-westward { z-index: 1; left: 0; bottom: 7%; width: 44%; aspect-ratio: 1.28; transform: rotate(-5deg); }
.hero-download-badge {
  position: absolute;
  z-index: 4;
  right: 2%;
  top: 8%;
  display: grid;
  width: 122px;
  height: 122px;
  place-items: center;
  align-content: center;
  gap: 7px;
  border-radius: 50%;
  transform: rotate(7deg);
  background: var(--ink);
  color: var(--white);
  text-align: center;
  box-shadow: 0 14px 40px rgba(23,23,20,.22);
}
.hero-download-badge span { font-size: 10px; font-weight: 700; line-height: 1.5; text-transform: uppercase; letter-spacing: .1em; }

.ticker { overflow: hidden; border-block: 1px solid var(--line); background: var(--white); }
.ticker-track {
  width: max-content;
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 23px;
  animation: ticker 30s linear infinite;
}
.ticker span { font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.ticker i { width: 5px; height: 5px; border-radius: 50%; background: var(--aqua-deep); }
@keyframes ticker { to { transform: translateX(-50%); } }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 46px;
}
.section-heading h2,
.files-copy h2,
.story-copy h2,
.faq-intro h2,
.newsletter-shell h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .98;
}
.section-heading > p {
  max-width: 52ch;
  margin: 0 0 5px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
}

.shop-section { padding: clamp(88px, 10vw, 150px) 0; }
.shop-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.shop-filters { display: flex; flex-wrap: wrap; gap: 7px; }
.shop-filters button {
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}
.shop-filters button.is-active,
.shop-filters button:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }
.product-count { color: var(--ink-soft); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px 18px; }
.product-card { min-width: 0; }
.product-card[hidden] { display: none; }
.product-art {
  position: relative;
  overflow: hidden;
  aspect-ratio: .83;
  background: var(--paper-deep);
}
.product-art > img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .3s ease; }
.product-card:hover .product-art > img { transform: scale(1.025); }
.product-amsterdam .product-art > img { object-position: center; }
.product-dawlish .product-art > img,
.product-westward .product-art > img { object-position: center; }

.product-mono .product-art > img { filter: grayscale(1) contrast(1.12); }
.product-graphite .product-art > img { filter: grayscale(.82) contrast(1.06) brightness(.98); }
.product-petal-edition .product-art > img { filter: sepia(.2) saturate(.72) hue-rotate(292deg) brightness(1.03); }
.product-generated .product-art { padding: 9%; }
.product-generated .product-art::before {
  content: "";
  position: absolute;
  inset: 6%;
  z-index: 1;
  background: var(--white);
  box-shadow: 0 18px 35px rgba(29,25,20,.16);
}
.product-generated .product-art > img {
  position: relative;
  z-index: 2;
  width: 82%;
  height: 75%;
  margin: 5% auto 0;
  object-fit: cover;
}
.product-lisbon .product-art { background: #e9d7c7; }
.product-lisbon .product-art > img { filter: sepia(.62) saturate(.75) hue-rotate(328deg) contrast(1.08); }
.product-copenhagen .product-art { background: #d9e1df; }
.product-copenhagen .product-art > img { filter: grayscale(.45) sepia(.35) hue-rotate(136deg) saturate(.8); }
.product-stives .product-art { background: #ecdade; }
.product-stives .product-art > img { filter: grayscale(.25) sepia(.4) hue-rotate(292deg) saturate(.75); }
.generated-caption {
  position: absolute;
  z-index: 3;
  right: 15%;
  bottom: 13%;
  left: 15%;
  display: grid;
  gap: 3px;
  text-align: right;
}
.generated-caption strong { font-size: clamp(10px, 1vw, 14px); letter-spacing: .12em; }
.generated-caption span { font-size: 7px; letter-spacing: .18em; }
.product-tag {
  position: absolute;
  z-index: 5;
  top: 12px;
  left: 12px;
  padding: 7px 9px;
  background: var(--white);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.product-zoom {
  position: absolute;
  z-index: 5;
  right: 12px;
  top: 12px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease;
}
.product-card:hover .product-zoom,
.product-zoom:focus-visible { opacity: 1; transform: none; }
.product-copy {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 17px 2px 0;
}
.product-copy p { margin: 0 0 5px; color: var(--ink-soft); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.product-copy h3 { margin: 0 0 7px; font-size: 20px; letter-spacing: -.035em; }
.product-copy span { color: var(--ink-soft); font-size: 9px; line-height: 1.45; }
.product-buy { display: grid; justify-items: end; align-content: space-between; gap: 12px; }
.product-buy strong { font-size: 14px; }
.add-product {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid var(--ink);
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}
.add-product:hover { background: var(--ink); color: var(--white); }

.customiser-section {
  padding: clamp(88px, 10vw, 150px) 0;
  background: var(--ink);
  color: var(--white);
}
.customiser-heading > p { color: rgba(255,255,255,.62); }
.customiser-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr);
  gap: 24px;
  align-items: start;
}
.preview-side { min-width: 0; }
.preview-toolbar {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-bottom: 0;
  color: rgba(255,255,255,.68);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.preview-toolbar span { display: inline-flex; align-items: center; gap: 7px; }
.preview-backdrop {
  min-height: 735px;
  display: grid;
  place-items: center;
  padding: 55px;
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    #252521;
  background-size: 38px 38px;
}
.poster-frame {
  width: min(74%, 470px);
  padding: 12px;
  background: #faf8f1;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  transition: width .35s ease;
}
.poster-preview {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  width: 100%;
  aspect-ratio: 210 / 297;
  overflow: hidden;
  background: #fff;
  color: #121212;
  transition: aspect-ratio .35s ease, background .25s ease;
}
.poster-preview[data-orientation="landscape"] { aspect-ratio: 297 / 210; }
.poster-preview[data-orientation="landscape"] .poster-caption { min-height: 18%; }
.poster-map-wrap { position: relative; min-height: 0; overflow: hidden; background: #e8e8e5; }
.poster-map-canvas { width: 100%; height: 100%; background: #ededeb; }
.poster-map-canvas .leaflet-control-attribution {
  padding: 1px 4px !important;
  background: rgba(255,255,255,.66) !important;
  font-size: 6px !important;
}
.poster-map-canvas .leaflet-control-zoom { border: 0 !important; box-shadow: 0 8px 22px rgba(0,0,0,.14) !important; }
.poster-map-canvas .leaflet-control-zoom a { border: 0 !important; color: #111 !important; }
.poster-map-canvas .leaflet-tile-pane { filter: grayscale(1) contrast(1.15); }
.poster-colour-wash {
  position: absolute;
  z-index: 450;
  inset: 0;
  pointer-events: none;
  background: var(--aqua);
  opacity: .34;
  mix-blend-mode: multiply;
}
.poster-preview[data-palette="clay"] .poster-colour-wash { background: var(--clay); opacity: .35; }
.poster-preview[data-palette="fjord"] .poster-colour-wash { background: var(--fjord); opacity: .42; }
.poster-preview[data-palette="petal"] .poster-colour-wash { background: var(--rose); opacity: .39; }
.poster-preview[data-palette="mono"] .poster-colour-wash { opacity: 0; }
.poster-preview[data-palette="clay"] { background: #faf2e9; }
.poster-preview[data-palette="fjord"] { background: #eef2f3; }
.poster-preview[data-palette="petal"] { background: #faf2f2; }
.poster-preview[data-palette="mono"] { background: #fff; }
.map-centre-mark {
  position: absolute;
  z-index: 500;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: .7;
}
.map-centre-mark::before,
.map-centre-mark::after { content: ""; position: absolute; background: #111; }
.map-centre-mark::before { width: 22px; height: 1px; top: 10px; left: 0; }
.map-centre-mark::after { width: 1px; height: 22px; top: 0; left: 10px; }
.map-centre-mark span { position: absolute; inset: 6px; border: 1px solid #111; border-radius: 50%; }
.poster-caption {
  position: relative;
  z-index: 600;
  min-height: 15%;
  display: grid;
  align-content: center;
  justify-items: end;
  gap: 4px;
  padding: 5.5% 6%;
  background: inherit;
  text-align: right;
}
.poster-caption strong { max-width: 100%; overflow: hidden; font-size: clamp(13px, 2.2vw, 29px); letter-spacing: .14em; line-height: 1; white-space: nowrap; }
.poster-caption span { font-size: clamp(6px, .72vw, 10px); letter-spacing: .2em; }
.preview-note-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 13px; }
.preview-note-row p { margin: 0; color: rgba(255,255,255,.55); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.preview-note { display: inline-flex; align-items: center; gap: 7px; }
.pulse-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--aqua); box-shadow: 0 0 0 0 rgba(127,199,207,.5); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(127,199,207,0); } }

.studio-panel {
  padding: 30px;
  border: 1px solid rgba(255,255,255,.18);
  background: #1e1e1b;
}
.studio-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.studio-header .eyebrow { margin-bottom: 8px; }
.studio-header h3 { margin: 0; font-size: 23px; letter-spacing: -.04em; }
.studio-price { font-size: 24px; font-weight: 700; }
.control-group { margin: 0; padding: 25px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.control-group legend {
  width: 100%;
  margin: 0 0 16px;
  padding: 0;
  font-size: 11px;
  font-weight: 700;
}
.control-group legend span {
  display: inline-grid;
  width: 25px;
  height: 25px;
  place-items: center;
  margin-right: 8px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  font-size: 8px;
}
.search-shell {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 51px;
  padding: 0 5px 0 15px;
  background: var(--white);
  color: var(--ink);
}
.search-shell input { min-width: 0; border: 0; outline: 0; background: transparent; font-size: 12px; }
.search-shell button { min-height: 40px; padding: 0 15px; border: 0; background: var(--ink); color: var(--white); font-size: 10px; font-weight: 700; cursor: pointer; }
.search-shell button:hover { background: var(--aqua-deep); }
.search-meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 10px; }
.search-meta p { margin: 0; color: rgba(255,255,255,.5); font-size: 9px; line-height: 1.5; }
.search-meta button { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 6px; padding: 0; border: 0; background: transparent; color: var(--aqua); font-size: 9px; font-weight: 700; cursor: pointer; }
.two-column-controls { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.two-column-controls legend { grid-column: 1 / -1; }
.input-shell { display: grid; gap: 7px; }
.input-shell span { color: rgba(255,255,255,.56); font-size: 9px; }
.input-shell input { width: 100%; min-height: 47px; padding: 0 13px; border: 1px solid rgba(255,255,255,.22); outline: 0; background: transparent; color: var(--white); font-size: 11px; }
.input-shell input:focus { border-color: var(--aqua); }
.palette-options { display: grid; grid-template-columns: repeat(5, 1fr); gap: 7px; }
.palette-option {
  display: grid;
  justify-items: start;
  gap: 6px;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.16);
  background: transparent;
  color: var(--white);
  text-align: left;
  cursor: pointer;
}
.palette-option:hover,
.palette-option.is-active { border-color: var(--white); background: rgba(255,255,255,.07); }
.palette-option b { font-size: 9px; }
.palette-option small { overflow: hidden; max-width: 100%; color: rgba(255,255,255,.48); font-size: 7px; white-space: nowrap; text-overflow: ellipsis; }
.swatch { width: 100%; height: 18px; border: 1px solid rgba(255,255,255,.12); }
.swatch-tide { background: linear-gradient(90deg, #171717 0 64%, #7fc7cf 64%); }
.swatch-clay { background: linear-gradient(90deg, #302d2a 0 64%, #c56f54 64%); }
.swatch-fjord { background: linear-gradient(90deg, #32383a 0 64%, #739aa2 64%); }
.swatch-petal { background: linear-gradient(90deg, #3a3838 0 64%, #dca3ac 64%); }
.swatch-mono { background: linear-gradient(90deg, #111 0 50%, #fff 50%); }
.studio-choice-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.studio-choice-row > div { min-width: 0; }
.compact-segments { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
.studio-choice-row > div:last-child .compact-segments { grid-template-columns: 1fr 1fr; }
.compact-segments button {
  min-width: 0;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 8px;
  border: 1px solid rgba(255,255,255,.16);
  background: transparent;
  color: rgba(255,255,255,.72);
  font-size: 8px;
  font-weight: 700;
  cursor: pointer;
}
.compact-segments button:hover,
.compact-segments button.is-active { border-color: var(--white); background: var(--white); color: var(--ink); }
.download-includes {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  margin-top: 24px;
  padding: 16px;
  background: rgba(127,199,207,.1);
  color: var(--aqua);
}
.download-includes .lucide { width: 22px; height: 22px; }
.download-includes strong { display: block; margin-bottom: 4px; color: var(--white); font-size: 10px; }
.download-includes p { margin: 0; color: rgba(255,255,255,.56); font-size: 9px; line-height: 1.55; }
.studio-total { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 22px; }
.studio-total > div { display: grid; gap: 4px; }
.studio-total span { color: rgba(255,255,255,.5); font-size: 9px; }
.studio-total strong { font-size: 25px; }
.studio-total .button { min-width: 205px; border-color: var(--white); background: var(--white); color: var(--ink); }
.studio-total .button:hover { background: var(--aqua); border-color: var(--aqua); }
.studio-smallprint { display: flex; align-items: center; gap: 7px; margin: 14px 0 0; color: rgba(255,255,255,.46); font-size: 8px; line-height: 1.5; }

.files-section { padding: clamp(90px, 11vw, 170px) 0; }
.files-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(450px, 1.1fr); gap: clamp(60px, 9vw, 140px); align-items: center; }
.files-copy h2 { max-width: 760px; }
.files-lead { max-width: 62ch; margin: 28px 0; color: var(--ink-soft); font-size: 14px; line-height: 1.8; }
.file-stack { position: relative; min-height: 510px; }
.file-card {
  position: absolute;
  display: grid;
  grid-template-columns: 72px 1fr 40px;
  align-items: center;
  gap: 18px;
  width: min(100%, 580px);
  min-height: 150px;
  padding: 25px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 24px 55px rgba(42,37,30,.11);
}
.file-card > span { display: grid; width: 58px; height: 70px; place-items: center; background: var(--ink); color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.file-card strong { font-size: 17px; letter-spacing: -.025em; }
.file-card p { max-width: 40ch; margin: 7px 0 0; color: var(--ink-soft); font-size: 10px; line-height: 1.55; }
.file-card > .lucide { justify-self: end; width: 27px; height: 27px; opacity: .48; }
.file-card-pdf { top: 20px; left: 0; transform: rotate(-3deg); }
.file-card-png { z-index: 2; top: 175px; right: 0; transform: rotate(2.3deg); }
.file-card-guide { z-index: 3; bottom: 15px; left: 4%; transform: rotate(-1deg); }
.file-card-png > span { background: var(--aqua-deep); }
.file-card-guide > span { background: var(--clay); }
.file-spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 90px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.file-spec-grid article { position: relative; min-height: 250px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.file-spec-grid article > .lucide { width: 25px; height: 25px; margin-bottom: 45px; }
.file-spec-grid article > span { position: absolute; top: 28px; right: 28px; color: var(--ink-soft); font-size: 9px; }
.file-spec-grid h3 { margin: 0 0 12px; font-size: 17px; letter-spacing: -.025em; }
.file-spec-grid p { margin: 0; color: var(--ink-soft); font-size: 10px; line-height: 1.65; }

.how-section { padding: clamp(90px, 10vw, 150px) 0; background: var(--paper-deep); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-strong); border-left: 1px solid var(--line); }
.process-grid li { position: relative; min-height: 330px; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); list-style: none; }
.process-grid li > span { position: absolute; right: 30px; top: 30px; color: var(--ink-soft); font-size: 9px; }
.process-grid .lucide { width: 36px; height: 36px; margin-bottom: 95px; }
.process-grid h3 { margin: 0 0 14px; font-size: 23px; letter-spacing: -.04em; }
.process-grid p { max-width: 38ch; margin: 0; color: var(--ink-soft); font-size: 11px; line-height: 1.7; }

.story-section { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 720px; }
.story-photo {
  min-height: 650px;
  background: linear-gradient(rgba(21,21,18,.05), rgba(21,21,18,.16)), url("https://images.unsplash.com/photo-1563093036-bcebce757b1f?auto=format&fit=crop&w=1800&q=85") center / cover;
}
.story-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(55px, 8vw, 120px); background: var(--ink); color: var(--white); }
.story-copy h2 { max-width: 620px; }
.story-copy > p:not(.eyebrow) { max-width: 55ch; margin: 25px 0 0; color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.8; }
.story-copy blockquote { max-width: 800px; margin: 50px 0 0; font-family: "Playfair Display", serif; font-size: clamp(27px, 3.1vw, 50px); line-height: 1.2; }

.faq-section { padding: clamp(90px, 11vw, 170px) 0; }
.faq-layout { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: clamp(50px, 9vw, 130px); }
.faq-intro { position: sticky; top: 130px; align-self: start; }
.faq-intro h2 { margin-bottom: 25px; }
.faq-intro > p:not(.eyebrow) { max-width: 42ch; margin: 0 0 25px; color: var(--ink-soft); font-size: 12px; line-height: 1.7; }
.faq-list { border-top: 1px solid var(--line-strong); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 24px 45px 24px 0; font-size: 14px; font-weight: 700; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span,
.faq-list summary::after { content: ""; position: absolute; right: 8px; top: 31px; width: 14px; height: 1px; background: var(--ink); }
.faq-list summary::after { transform: rotate(90deg); transition: transform .2s ease; }
.faq-list details[open] summary::after { transform: rotate(0); }
.faq-list details p { max-width: 70ch; margin: 0; padding: 0 50px 25px 0; color: var(--ink-soft); font-size: 11px; line-height: 1.75; }

.newsletter-section { padding: 70px 0; border-top: 1px solid var(--line); background: var(--white); }
.newsletter-shell { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 70px; }
.newsletter-shell h2 { max-width: 780px; font-size: clamp(37px, 4.2vw, 64px); }
.newsletter-form > div { display: grid; grid-template-columns: 22px 1fr auto; align-items: center; gap: 10px; border-bottom: 1px solid var(--ink); }
.newsletter-form input { min-width: 0; min-height: 55px; border: 0; outline: 0; background: transparent; font-size: 12px; }
.newsletter-form .button { min-height: 44px; margin-bottom: 5px; }
.newsletter-form > p { margin: 10px 0 0; color: var(--ink-soft); font-size: 8px; }

.site-footer { padding: 70px 0 24px; background: var(--ink); color: var(--white); }
.footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; padding-bottom: 65px; }
.brand-footer .brand-mark { border-color: var(--white); }
.brand-footer .brand-mark::before,
.brand-footer .brand-mark::after,
.brand-footer .brand-mark span::before,
.brand-footer .brand-mark span::after { background: var(--white); }
.footer-brand p { margin: 18px 0; color: rgba(255,255,255,.52); font-size: 11px; }
.footer-digital { display: inline-flex; align-items: center; gap: 8px; color: var(--aqua); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; }
.footer-links h3 { margin: 0 0 17px; color: rgba(255,255,255,.42); font-size: 9px; text-transform: uppercase; letter-spacing: .13em; }
.footer-links a { display: block; width: fit-content; margin: 10px 0; color: rgba(255,255,255,.75); font-size: 10px; }
.footer-links a:hover { color: var(--aqua); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.38); font-size: 8px; }
.footer-bottom div { display: flex; gap: 20px; }

.drawer-backdrop {
  position: fixed;
  z-index: 11990;
  inset: 0;
  background: rgba(17,17,15,.52);
  backdrop-filter: blur(4px);
}
.basket-drawer {
  position: fixed;
  z-index: 12000;
  top: 0;
  right: 0;
  width: min(480px, 100vw);
  height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  transform: translateX(105%);
  background: var(--white);
  color: var(--ink);
  box-shadow: -30px 0 80px rgba(20,18,15,.22);
  transition: transform .34s cubic-bezier(.2,.8,.2,1);
}
.basket-drawer.is-open { transform: translateX(0); }
.basket-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 105px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
}
.basket-header .eyebrow { margin: 0 0 7px; }
.basket-header h2 { margin: 0; font-size: 34px; font-weight: 500; letter-spacing: -.06em; }
.basket-body { min-height: 0; overflow-y: auto; }
.basket-empty { min-height: 100%; display: grid; place-items: center; align-content: center; padding: 45px 30px; text-align: center; }
.empty-compass { position: relative; width: 72px; height: 72px; margin-bottom: 24px; border: 1px solid var(--ink); border-radius: 50%; }
.empty-compass::before,
.empty-compass::after { content: ""; position: absolute; top: 50%; left: 50%; background: var(--ink); transform-origin: center; }
.empty-compass::before { width: 1px; height: 90px; transform: translate(-50%,-50%) rotate(27deg); }
.empty-compass::after { width: 90px; height: 1px; transform: translate(-50%,-50%) rotate(-17deg); }
.basket-empty h3 { margin: 0; font-size: 24px; letter-spacing: -.04em; }
.basket-empty p { max-width: 34ch; margin: 12px auto 24px; color: var(--ink-soft); font-size: 11px; line-height: 1.65; }
.basket-empty .button { width: min(100%, 260px); }
.basket-items { padding: 10px 25px 25px; }
.basket-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.basket-thumb { position: relative; aspect-ratio: .8; overflow: hidden; background: var(--paper-deep); }
.basket-thumb img { width: 100%; height: 100%; object-fit: cover; }
.basket-item-main { min-width: 0; display: grid; gap: 7px; }
.basket-item-top { display: flex; align-items: start; justify-content: space-between; gap: 12px; }
.basket-item h3 { margin: 0; font-size: 15px; letter-spacing: -.025em; }
.basket-item-meta { margin: 0; color: var(--ink-soft); font-size: 9px; line-height: 1.5; }
.basket-item-price { font-size: 12px; }
.basket-item-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 4px; }
.qty-control { display: inline-grid; grid-template-columns: 30px 28px 30px; min-height: 31px; border: 1px solid var(--line); }
.qty-control button { display: grid; place-items: center; padding: 0; border: 0; background: transparent; cursor: pointer; }
.qty-control span { display: grid; place-items: center; border-inline: 1px solid var(--line); font-size: 9px; }
.remove-item { display: inline-flex; align-items: center; gap: 5px; padding: 0; border: 0; background: transparent; color: var(--ink-soft); font-size: 8px; cursor: pointer; }
.remove-item:hover { color: #9b332f; }
.basket-footer { padding: 22px 25px max(22px, env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: var(--white); }
.basket-summary { display: flex; align-items: center; justify-content: space-between; margin-bottom: 13px; }
.basket-summary span { font-size: 10px; }
.basket-summary strong { font-size: 24px; }
.basket-note { display: flex; align-items: start; gap: 8px; margin: 0 0 16px; color: var(--ink-soft); font-size: 8px; line-height: 1.55; }
.basket-note .lucide { flex: 0 0 auto; color: var(--aqua-deep); }
.basket-checkout { width: 100%; }
.continue-shopping { width: 100%; margin-top: 10px; padding: 10px; border: 0; background: transparent; font-size: 9px; font-weight: 700; cursor: pointer; }
.mobile-cart-bar { display: none; }

.product-dialog {
  width: min(900px, calc(100vw - 32px));
  max-height: min(780px, calc(100dvh - 32px));
  padding: 0;
  border: 0;
  background: var(--white);
  box-shadow: var(--shadow);
}
.product-dialog::backdrop { background: rgba(17,17,15,.62); backdrop-filter: blur(5px); }
.product-dialog[open] { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr); }
.product-dialog > img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; background: var(--paper-deep); }
.product-dialog > div { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 55px; }
.product-dialog h2 { margin: 0; font-size: 50px; font-weight: 500; letter-spacing: -.065em; line-height: 1; }
.product-dialog > div > p:not(.eyebrow) { margin: 20px 0 30px; color: var(--ink-soft); font-size: 12px; line-height: 1.7; }
.dialog-close { position: absolute; z-index: 2; top: 12px; right: 12px; border-radius: 50%; background: var(--white); }

/* Checkout */
.checkout-main { min-height: calc(100vh - 110px); padding: 70px 0 110px; }
.checkout-heading { max-width: 820px; margin-bottom: 50px; }
.checkout-heading h1 { margin: 0; font-size: clamp(48px, 7vw, 92px); font-weight: 500; letter-spacing: -.07em; line-height: .95; }
.checkout-heading p:last-child { max-width: 58ch; margin: 24px 0 0; color: var(--ink-soft); font-size: 13px; line-height: 1.75; }
.checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .65fr); gap: 55px; align-items: start; }
.checkout-form { display: grid; gap: 24px; }
.checkout-panel { padding: 28px; border: 1px solid var(--line); background: var(--white); }
.checkout-panel h2 { margin: 0 0 22px; font-size: 22px; letter-spacing: -.04em; }
.checkout-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.checkout-fields label { display: grid; gap: 7px; }
.checkout-fields label.full { grid-column: 1 / -1; }
.checkout-fields span { font-size: 9px; font-weight: 700; }
.checkout-fields input { min-height: 48px; padding: 0 13px; border: 1px solid var(--line); background: var(--paper); outline: 0; }
.checkout-fields input:focus { border-color: var(--ink); }
.checkout-consent { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; color: var(--ink-soft); font-size: 9px; line-height: 1.6; }
.checkout-consent input { margin-top: 2px; }
.checkout-submit { width: 100%; }
.order-summary { position: sticky; top: 125px; padding: 28px; background: var(--ink); color: var(--white); }
.order-summary h2 { margin: 0 0 20px; font-size: 25px; letter-spacing: -.04em; }
.checkout-items { display: grid; gap: 15px; }
.checkout-item { display: grid; grid-template-columns: 58px 1fr auto; gap: 12px; align-items: center; padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,.14); }
.checkout-item img { width: 58px; height: 72px; object-fit: cover; }
.checkout-item strong { font-size: 10px; }
.checkout-item p { margin: 4px 0 0; color: rgba(255,255,255,.52); font-size: 8px; line-height: 1.45; }
.checkout-item > span { font-size: 10px; }
.checkout-total { display: flex; justify-content: space-between; margin-top: 22px; font-size: 12px; }
.checkout-total strong { font-size: 25px; }
.checkout-empty { padding: 30px 0; color: rgba(255,255,255,.6); font-size: 11px; line-height: 1.7; }
.checkout-note { margin: 20px 0 0; color: rgba(255,255,255,.48); font-size: 8px; line-height: 1.6; }

@media (max-width: 1180px) {
  :root { --shell: min(100% - 42px, 1180px); }
  .desktop-nav { gap: 22px; }
  .hero { grid-template-columns: .95fr 1.05fr; gap: 45px; }
  .hero-gallery { min-height: 540px; }
  .customiser-shell { grid-template-columns: 1fr; }
  .preview-backdrop { min-height: 690px; }
  .poster-frame { width: min(58%, 470px); }
  .studio-panel { max-width: none; }
  .files-layout { gap: 50px; }
  .file-spec-grid article { padding: 24px; }
}

@media (max-width: 960px) {
  :root { --header-height: 66px; }
  html { scroll-padding-top: 96px; }
  .header-inner { grid-template-columns: 44px 1fr auto; gap: 10px; }
  .mobile-menu-button { display: inline-grid; justify-self: start; margin-left: -10px; }
  .header-inner > .brand { justify-self: center; }
  .desktop-nav,
  .header-create { display: none; }
  .header-actions { justify-self: end; gap: 0; }
  .basket-label { display: none; }
  .basket-button { min-width: 48px; justify-content: end; }
  .hero { min-height: 0; grid-template-columns: 1fr; padding-block: 70px 90px; }
  .hero-copy { max-width: 850px; }
  .hero h1 { font-size: clamp(58px, 10vw, 92px); }
  .hero-gallery { width: min(780px, 100%); min-height: 640px; margin: 20px auto 0; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .files-layout { grid-template-columns: 1fr; }
  .file-stack { width: min(720px, 100%); margin-inline: auto; }
  .file-spec-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid li { min-height: 300px; padding: 28px; }
  .story-section { grid-template-columns: 1fr; }
  .story-photo { min-height: 520px; }
  .story-copy { padding: 80px var(--page-padding, 32px); }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .newsletter-shell { grid-template-columns: 1fr; align-items: start; gap: 38px; }
  .footer-top { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; order: -1; }
}

@media (max-width: 720px) {
  :root { --shell: calc(100vw - 30px); }
  body { padding-bottom: 0; }
  .digital-strip-inner { min-height: 31px; justify-content: center; }
  .digital-strip-detail { display: none !important; }
  .header-inner > .brand { font-size: 13px; }
  .brand-mark { width: 24px; height: 24px; }
  .brand-mark::before { height: 31px; left: 11px; }
  .brand-mark::after { width: 31px; top: 11px; }
  .brand-mark span::before { top: 3px; right: 2px; }
  .brand-mark span::after { bottom: 4px; left: 3px; }
  .basket-count { position: absolute; top: 7px; right: -2px; width: 19px; height: 19px; font-size: 8px; }
  .basket-button { position: relative; }
  .mobile-menu .shell { width: calc(100vw - 30px); }
  .hero { gap: 25px; padding-block: 52px 72px; }
  .hero h1 { font-size: clamp(51px, 15vw, 75px); line-height: .94; }
  .hero-intro { margin-top: 25px; font-size: 14px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-facts { grid-template-columns: 1fr; gap: 14px; margin-top: 34px; }
  .hero-facts div { grid-template-columns: 135px 1fr; align-items: center; gap: 12px; }
  .hero-gallery { min-height: 480px; margin-top: 15px; }
  .hero-poster-main { left: 13%; width: 65%; }
  .hero-poster-dawlish { width: 54%; bottom: 2%; }
  .hero-poster-westward { width: 51%; bottom: 5%; }
  .hero-download-badge { width: 92px; height: 92px; right: 0; top: 7%; }
  .hero-download-badge span { font-size: 8px; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 32px; }
  .section-heading h2,
  .files-copy h2,
  .story-copy h2,
  .faq-intro h2,
  .newsletter-shell h2 { font-size: clamp(39px, 12vw, 58px); }
  .shop-section,
  .customiser-section,
  .files-section,
  .how-section,
  .faq-section { padding-block: 78px; }
  .shop-tools { align-items: flex-start; }
  .shop-filters { flex-wrap: nowrap; max-width: calc(100vw - 70px); overflow-x: auto; padding-bottom: 5px; scrollbar-width: none; }
  .shop-filters::-webkit-scrollbar { display: none; }
  .shop-filters button { flex: 0 0 auto; }
  .product-count { padding-top: 12px; white-space: nowrap; }
  .product-grid { grid-template-columns: 1fr; gap: 34px; }
  .product-art { aspect-ratio: .9; }
  .product-zoom { opacity: 1; transform: none; }
  .product-copy h3 { font-size: 22px; }
  .customiser-shell { width: 100%; }
  .customiser-heading { width: var(--shell); }
  .preview-toolbar { min-height: 42px; padding: 0 15px; }
  .preview-toolbar span:last-child { display: none; }
  .preview-backdrop { min-height: 520px; padding: 36px 20px; }
  .poster-frame { width: min(76%, 360px); padding: 8px; }
  .poster-preview[data-orientation="landscape"] { width: 100%; }
  .poster-caption strong { font-size: clamp(13px, 4vw, 20px); }
  .preview-note-row { padding-inline: 15px; }
  .studio-panel { padding: 24px 15px; border-inline: 0; }
  .two-column-controls { grid-template-columns: 1fr; }
  .palette-options { grid-template-columns: repeat(5, minmax(74px, 1fr)); overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
  .palette-options::-webkit-scrollbar { display: none; }
  .palette-option { min-width: 84px; }
  .studio-choice-row { grid-template-columns: 1fr; }
  .studio-total { align-items: stretch; flex-direction: column; }
  .studio-total .button { width: 100%; }
  .files-layout { gap: 30px; }
  .file-stack { min-height: 440px; }
  .file-card { grid-template-columns: 60px 1fr 28px; min-height: 125px; padding: 18px; }
  .file-card > span { width: 50px; height: 60px; }
  .file-card-png { top: 145px; }
  .file-spec-grid { grid-template-columns: 1fr; margin-top: 55px; }
  .file-spec-grid article { min-height: 215px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: 260px; }
  .process-grid .lucide { margin-bottom: 60px; }
  .story-photo { min-height: 390px; }
  .story-copy { padding: 68px 15px; }
  .story-copy blockquote { margin-top: 38px; font-size: 31px; }
  .faq-list summary { padding-block: 22px; font-size: 13px; }
  .newsletter-section { padding-block: 58px; }
  .newsletter-form > div { grid-template-columns: 20px 1fr; }
  .newsletter-form .button { grid-column: 1 / -1; width: 100%; margin: 8px 0 0; }
  .footer-top { gap: 45px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .mobile-cart-bar {
    position: fixed;
    z-index: 1100;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    display: block;
    transform: translateY(160%);
    transition: transform .3s ease;
  }
  .mobile-cart-bar.is-visible { transform: none; }
  .mobile-cart-bar button {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 18px;
    border: 0;
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 16px 40px rgba(23,23,20,.25);
  }
  .mobile-cart-bar span { display: inline-flex; align-items: center; gap: 9px; }
  .mobile-cart-bar b { font-size: 10px; }
  .mobile-cart-bar strong { font-size: 13px; }
  .basket-drawer { width: 100vw; }
  .basket-header { min-height: 85px; padding: 17px 18px; }
  .basket-items { padding-inline: 18px; }
  .basket-footer { padding-inline: 18px; }
  .product-dialog[open] { display: block; overflow-y: auto; }
  .product-dialog > img { width: 100%; height: auto; min-height: 0; max-height: 58vh; object-fit: cover; }
  .product-dialog > div { padding: 30px 22px; }
  .product-dialog h2 { font-size: 42px; }
  .checkout-main { padding: 50px 0 90px; }
  .checkout-fields { grid-template-columns: 1fr; }
  .checkout-fields label.full { grid-column: auto; }
  .checkout-panel,
  .order-summary { padding: 22px; }
}

@media (max-width: 420px) {
  .header-inner > .brand > span:last-child { font-size: 12px; }
  .hero-gallery { min-height: 420px; }
  .hero-download-badge { display: none; }
  .poster-frame { width: 82%; }
  .search-meta { align-items: flex-start; flex-direction: column; }
  .file-card { grid-template-columns: 48px 1fr; }
  .file-card > .lucide { display: none; }
  .file-card > span { width: 42px; }
  .footer-links { grid-template-columns: 1fr; }
}

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

/* Checkout prototype additions */
.checkout-header-inner { grid-template-columns: 1fr auto; }
.checkout-back { display: inline-flex; align-items: center; gap: 9px; font-size: 10px; font-weight: 700; }
.checkout-prototype-note { display: flex; align-items: flex-start; gap: 8px; margin: -10px 0 0; color: var(--ink-soft); font-size: 9px; line-height: 1.55; }
.checkout-submit:disabled { cursor: not-allowed; opacity: .42; transform: none; }
.checkout-empty a { color: var(--aqua); text-decoration: underline; text-underline-offset: 3px; }
.checkout-success {
  width: min(560px, calc(100vw - 30px));
  padding: 48px;
  border: 0;
  background: var(--white);
  color: var(--ink);
  text-align: center;
  box-shadow: var(--shadow);
}
.checkout-success::backdrop { background: rgba(17,17,15,.62); backdrop-filter: blur(5px); }
.checkout-success > .lucide:not(.dialog-close .lucide) { width: 48px; height: 48px; margin-bottom: 20px; color: var(--aqua-deep); }
.checkout-success h2 { margin: 0; font-size: clamp(32px, 5vw, 52px); font-weight: 500; letter-spacing: -.06em; line-height: 1; }
.checkout-success > p:not(.eyebrow) { margin: 22px auto 28px; color: var(--ink-soft); font-size: 11px; line-height: 1.7; }
.checkout-success .button { margin-inline: auto; }
.location-status.is-error,
#locationStatus.is-error { color: #f0a29b; }

@media (max-width: 720px) {
  .checkout-header-inner { grid-template-columns: 1fr auto; }
  .checkout-header-inner .brand { justify-self: start; }
  .checkout-back { font-size: 0; }
  .checkout-back .lucide { width: 22px; height: 22px; }
  .checkout-success { padding: 42px 22px 30px; }
}

@media (max-width: 720px) {
  body.cart-active { padding-bottom: 78px; }
}

/* Restored editorial map-idea collection */
.collections-section {
  padding: clamp(96px, 10vw, 154px) 0 clamp(104px, 11vw, 164px);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.collections-section .section-heading { margin-bottom: 54px; }
.collections-section .section-heading > p { color: rgba(255, 253, 248, .62); }
.collections-section .eyebrow { color: rgba(255, 253, 248, .68); }
.collection-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .18);
}
.collection-card {
  min-height: 560px;
  grid-column: span 4;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  background: var(--ink);
}
.collection-card-large { grid-column: span 8; }
.collection-image {
  min-height: 330px;
  background-position: center;
  background-size: cover;
  filter: saturate(.74) contrast(1.02);
  transform: scale(1.001);
  transition: transform .55s ease, filter .55s ease;
}
.collection-card:hover .collection-image {
  filter: saturate(1) contrast(1.02);
  transform: scale(1.025);
}
.image-city {
  background-image:
    linear-gradient(rgba(25, 26, 24, .08), rgba(25, 26, 24, .08)),
    url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?auto=format&fit=crop&w=1800&q=82');
}
.image-home {
  background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=1200&q=82');
}
.image-coast {
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1200&q=82');
}
.image-road {
  background-image: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=82');
}
.image-tiny {
  background-image: url('https://images.unsplash.com/photo-1470770841072-f978cf4d019e?auto=format&fit=crop&w=1800&q=82');
}
.collection-copy {
  position: relative;
  z-index: 2;
  min-height: 228px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  background: var(--ink);
}
.collection-copy > p {
  margin: 0;
  color: rgba(255, 255, 255, .43);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
}
.collection-copy h3 {
  margin: 18px 0 0;
  font-size: clamp(27px, 2.4vw, 42px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: 1;
}
.collection-copy > span {
  max-width: 38ch;
  margin-top: 12px;
  color: rgba(255, 255, 255, .61);
  font-size: 11px;
  line-height: 1.7;
}
.collection-copy a {
  min-height: 44px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  font-size: 10px;
  font-weight: 700;
}
.collection-copy a .lucide {
  width: 17px;
  height: 17px;
  transition: transform .2s ease;
}
.collection-copy a:hover .lucide { transform: translate(3px, -3px); }

@media (max-width: 960px) {
  .collection-card { grid-column: span 6; }
  .collection-card-large { grid-column: span 12; }
}

@media (max-width: 720px) {
  .collections-section { padding-block: 78px; }
  .collections-section .section-heading { margin-bottom: 34px; }
  .collection-card,
  .collection-card-large {
    min-height: 510px;
    grid-column: span 12;
  }
  .collection-image { min-height: 300px; }
  .collection-copy { min-height: 205px; padding: 22px; }
  .collection-copy h3 { font-size: 31px; }
  .collection-copy > span { font-size: 10px; }
}
.checkout-consent + .checkout-consent {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

/* ========================================================================== 
   August 2026 visual refresh: header, hero, shop discovery and collections
   ========================================================================== */

/* Header */
.site-header {
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  box-shadow: 0 10px 34px rgba(35, 31, 25, .045);
}
.header-inner {
  min-height: 82px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(28px, 4vw, 62px);
}
.header-inner > .brand {
  font-size: 16px;
  letter-spacing: -.04em;
}
.desktop-nav {
  width: max-content;
  justify-self: center;
  gap: 2px;
  padding: 5px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, .5);
}
.desktop-nav a {
  padding: 10px 13px;
  color: var(--ink-soft);
  font-size: 10px;
  transition: background .2s ease, color .2s ease;
}
.desktop-nav a::after { display: none; }
.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  background: var(--white);
  color: var(--ink);
}
.header-actions { gap: 8px; }
.header-search {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, .55);
  transition: background .2s ease, border-color .2s ease;
}
.header-search:hover { border-color: var(--ink); background: var(--white); }
.header-create {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
}
.header-create::after { display: none; }
.header-create:hover { background: var(--aqua-deep); border-color: var(--aqua-deep); }
.basket-button {
  min-height: 42px;
  padding: 0 4px 0 11px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, .55);
}
.basket-button:hover { border-color: var(--ink); background: var(--white); }
.mobile-menu-button { margin: 0; border: 1px solid var(--line); background: var(--white); }

/* Off-canvas mobile navigation */
.mobile-menu {
  position: fixed;
  z-index: 1800;
  inset: 0;
  overflow: hidden;
  background: transparent;
  pointer-events: none;
}
.mobile-menu.is-open { pointer-events: auto; }
.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(20, 20, 17, .48);
  opacity: 0;
  backdrop-filter: blur(3px);
  transition: opacity .28s ease;
}
.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(430px, 88vw);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 0 24px max(24px, env(safe-area-inset-bottom));
  transform: translateX(104%);
  background: var(--paper);
  box-shadow: -24px 0 70px rgba(20, 20, 17, .18);
  transition: transform .3s cubic-bezier(.22, .8, .2, 1);
}
.mobile-menu.is-open .mobile-menu-backdrop { opacity: 1; }
.mobile-menu.is-open .mobile-menu-panel { transform: none; }
.mobile-menu-head {
  min-height: 78px;
  flex: 0 0 auto;
  padding: 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu-head .brand { font-size: 14px; }
.mobile-menu-kicker {
  margin: 28px 0 10px;
  color: var(--ink-soft);
  font-size: 9px;
  letter-spacing: .18em;
}
.mobile-nav {
  width: 100%;
  display: grid;
  padding: 0;
}
.mobile-nav a {
  grid-template-columns: 32px minmax(0, 1fr) 24px;
  gap: 8px;
  min-height: 67px;
  padding: 0;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a > span {
  display: block;
  color: rgba(23, 23, 20, .42);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
}
.mobile-nav strong {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.025em;
}
.mobile-nav a > .lucide { width: 17px; height: 17px; justify-self: end; transition: transform .2s ease; }
.mobile-nav a:hover > .lucide { transform: translateX(4px); }
.mobile-menu-footer {
  width: 100%;
  margin-top: auto;
  padding: 30px 0 0;
}
.mobile-menu-footer .button { width: 100%; }
.mobile-menu-basket {
  width: 100%;
  min-height: 50px;
  display: grid;
  grid-template-columns: 20px 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 0 15px;
  border: 1px solid var(--line);
  background: var(--white);
  text-align: left;
  cursor: pointer;
}
.mobile-menu-basket span { font-size: 11px; font-weight: 700; }
.mobile-menu-basket b {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 9px;
}
.mobile-menu-footer p { margin-top: 16px; font-size: 9px; }

/* Hero */
.hero {
  position: relative;
  min-height: min(830px, calc(100vh - 116px));
  grid-template-columns: minmax(0, .84fr) minmax(520px, 1.16fr);
  grid-template-rows: auto auto;
  grid-template-areas:
    "lead gallery"
    "support gallery";
  align-items: stretch;
  gap: 24px clamp(54px, 7vw, 112px);
  padding-block: clamp(54px, 6vw, 84px) clamp(78px, 8vw, 116px);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 8%;
  left: -15vw;
  width: 45vw;
  height: 45vw;
  border: 1px solid rgba(23, 23, 20, .055);
  border-radius: 50%;
}
.hero-lead { grid-area: lead; align-self: end; }
.hero-support { grid-area: support; align-self: start; }
.hero-kicker-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 23px;
}
.hero-kicker-row .eyebrow { margin: 0; }
.hero-kicker-row > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 9px;
  white-space: nowrap;
}
.hero h1 {
  max-width: 730px;
  margin: 0;
  font-size: clamp(58px, 6.05vw, 100px);
  font-weight: 500;
  letter-spacing: -.078em;
  line-height: .86;
}
.hero h1 > span { color: var(--aqua-deep); }
.hero h1 em {
  display: block;
  margin-top: .22em;
  font-family: "Playfair Display", serif;
  font-size: .67em;
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .96;
}
.hero-intro {
  max-width: 600px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.72;
}
.hero-actions { margin-top: 28px; }
.hero-facts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
  padding-top: 20px;
}
.hero-facts div { gap: 5px; }
.hero-facts dt { font-size: 10px; }
.hero-facts dd { max-width: 20ch; font-size: 9px; }
.hero-gallery {
  grid-area: gallery;
  position: relative;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(145deg, rgba(255,255,255,.82), rgba(231,224,211,.7)),
    var(--paper-deep);
  box-shadow: inset 0 0 0 1px var(--line);
}
.hero-gallery::before {
  content: "N";
  position: absolute;
  z-index: -1;
  right: -3%;
  top: -12%;
  color: rgba(23, 23, 20, .035);
  font-family: "Playfair Display", serif;
  font-size: min(44vw, 600px);
  font-style: italic;
  line-height: 1;
}
.hero-map-lines {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .42;
  background-image:
    repeating-radial-gradient(ellipse at 76% 22%, transparent 0 24px, rgba(50,109,117,.11) 25px 26px, transparent 27px 42px),
    linear-gradient(112deg, transparent 0 47%, rgba(23,23,20,.09) 48% 48.25%, transparent 49% 100%);
}
.hero-poster { box-shadow: 0 28px 65px rgba(35,31,25,.19); }
.hero-poster-main {
  top: 5%;
  left: 10%;
  width: 51%;
  aspect-ratio: .73;
  transform: rotate(-2.2deg);
}
.hero-poster-dawlish {
  right: -4%;
  bottom: 7%;
  width: 52%;
  aspect-ratio: 1.24;
  transform: rotate(3deg);
}
.hero-poster-westward {
  left: -7%;
  bottom: 2%;
  width: 44%;
  aspect-ratio: 1.24;
  transform: rotate(-5deg);
}
.hero-download-badge {
  right: 4%;
  top: 7%;
  width: 112px;
  height: 112px;
  background: var(--aqua-deep);
}
.hero-file-note {
  position: absolute;
  z-index: 6;
  left: 6%;
  bottom: 7%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  background: rgba(255,253,248,.94);
  box-shadow: 0 12px 30px rgba(35,31,25,.12);
  font-size: 8px;
  line-height: 1.4;
}
.hero-file-note .lucide { width: 18px; height: 18px; color: var(--aqua-deep); }
.hero-file-note span { display: grid; }
.hero-file-note strong { font-size: 9px; letter-spacing: .08em; }

/* Shop discovery */
.shop-section { padding-top: clamp(94px, 10vw, 148px); }
.shop-tools {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  align-items: center;
  gap: 24px 42px;
  margin-bottom: 30px;
  padding-top: 24px;
}
.product-search {
  min-height: 50px;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 10px;
  padding: 0 9px 0 15px;
  border: 1px solid var(--line-strong);
  background: var(--white);
}
.product-search:focus-within { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(50, 109, 117, .08); }
.product-search > .lucide { color: var(--ink-soft); }
.product-search input {
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
}
.product-search input::placeholder { color: rgba(80,79,73,.64); }
.product-search button {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.shop-filter-row {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.product-grid { row-gap: 44px; }
.product-art { cursor: zoom-in; }
.product-art:focus-visible { outline: 3px solid var(--aqua-deep); outline-offset: 4px; }
.product-zoom { pointer-events: none; }
.product-fjord-edition .product-art > img { filter: grayscale(.28) sepia(.2) hue-rotate(135deg) saturate(.72) contrast(1.02); }
.product-card[hidden] { display: none !important; }
.shop-more {
  display: flex;
  justify-content: center;
  padding-top: 52px;
}
.shop-more .button { min-width: 190px; background: var(--white); }
.shop-empty {
  min-height: 300px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: rgba(255,253,248,.4);
  text-align: center;
}
.shop-empty .lucide { width: 34px; height: 34px; color: var(--aqua-deep); }
.shop-empty h3 { margin: 5px 0 0; font-size: 25px; letter-spacing: -.045em; }
.shop-empty p { margin: 0; color: var(--ink-soft); font-size: 11px; }

/* Places worth mapping: fixed visual rhythm regardless of copy length */
.collection-grid { align-items: stretch; }
.collection-card {
  min-height: 630px;
  height: 100%;
  grid-template-rows: 372px minmax(0, 1fr);
}
.collection-image { min-height: 0; height: 372px; }
.collection-copy {
  min-height: 258px;
  display: grid;
  grid-template-rows: auto minmax(52px, auto) minmax(0, 1fr) auto;
  align-content: stretch;
}
.collection-copy h3 {
  min-height: 1.8em;
  display: flex;
  align-items: flex-start;
  margin-top: 16px;
}
.collection-copy > span { margin-top: 6px; }
.collection-copy a {
  align-items: center;
  margin-top: 22px;
}

@media (max-width: 1240px) {
  .desktop-nav a { padding-inline: 10px; }
  .header-create { padding-inline: 12px; }
  .hero { grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr); gap: 24px 50px; }
  .hero-gallery { min-height: 620px; }
}

@media (max-width: 1080px) {
  .desktop-nav a:nth-last-child(1) { display: none; }
  .header-search { display: none; }
}

@media (max-width: 960px) {
  :root { --header-height: 68px; }
  .header-inner {
    min-height: 68px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }
  .header-inner > .brand { justify-self: start; }
  .desktop-nav,
  .header-create,
  .header-search { display: none; }
  .header-actions { justify-self: end; gap: 6px; }
  .mobile-menu-button { display: inline-grid; }
  .basket-button { min-width: 44px; justify-content: center; padding: 0; }
  .basket-label { display: none; }
  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "lead"
      "gallery"
      "support";
    gap: 30px;
    padding-block: 48px 88px;
  }
  .hero-lead { max-width: 820px; }
  .hero-gallery { width: min(820px, 100%); min-height: 640px; margin: 0 auto; }
  .hero-support { max-width: 760px; }
  .hero h1 { font-size: clamp(60px, 10.4vw, 92px); }
  .shop-tools { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 720px) {
  .digital-strip-inner { justify-content: flex-start; }
  .site-header { box-shadow: 0 8px 25px rgba(35,31,25,.06); }
  .header-inner > .brand { font-size: 13px; }
  .header-actions { gap: 4px; }
  .basket-button,
  .mobile-menu-button { width: 42px; height: 42px; min-width: 42px; }
  .basket-count { top: -3px; right: -3px; }
  .mobile-menu-panel { width: min(390px, 92vw); padding-inline: 20px; }
  .mobile-menu-head { min-height: 70px; }
  .mobile-nav a { min-height: 62px; }
  .hero {
    gap: 24px;
    padding-block: 34px 68px;
  }
  .hero::before { display: none; }
  .hero-kicker-row { margin-bottom: 14px; }
  .hero-kicker-row > span { display: none; }
  .hero h1 {
    max-width: 620px;
    font-size: clamp(48px, 14.3vw, 69px);
    line-height: .88;
  }
  .hero h1 em { margin-top: .2em; font-size: .62em; }
  .hero-gallery {
    min-height: 480px;
    width: calc(100vw - 16px);
    margin-left: calc((var(--shell) - 100vw + 16px) / 2);
  }
  .hero-poster-main { top: 5%; left: 14%; width: 59%; }
  .hero-poster-dawlish { right: -6%; bottom: 7%; width: 57%; }
  .hero-poster-westward { left: -8%; bottom: 3%; width: 51%; }
  .hero-download-badge { width: 82px; height: 82px; right: 2%; top: 5%; }
  .hero-download-badge span { font-size: 7px; }
  .hero-file-note { left: 5%; bottom: 5%; padding: 9px 10px; }
  .hero-file-note span { font-size: 7px; }
  .hero-support { display: grid; }
  .hero-intro { font-size: 13px; line-height: 1.65; }
  .hero-actions { grid-template-columns: 1fr 1fr; margin-top: 20px; }
  .hero-actions .button { min-height: 50px; padding-inline: 12px; font-size: 10px; }
  .hero-facts {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-top: 26px;
    padding-top: 16px;
  }
  .hero-facts div { display: block; }
  .hero-facts dt { display: grid; gap: 5px; font-size: 9px; }
  .hero-facts dd { display: none; }
  .shop-tools { align-items: stretch; }
  .product-search { min-height: 48px; }
  .shop-filter-row { align-items: flex-start; }
  .shop-filters { max-width: calc(100vw - 96px); }
  .product-count { padding-top: 11px; }
  .shop-more { padding-top: 38px; }
  .collection-card,
  .collection-card-large {
    min-height: 0;
    grid-template-rows: 290px auto;
  }
  .collection-image { height: 290px; }
  .collection-copy {
    min-height: 238px;
    grid-template-rows: auto auto 1fr auto;
  }
  .collection-copy h3 { min-height: 0; }
}

@media (max-width: 460px) {
  .hero-gallery { min-height: 420px; }
  .hero-poster-main { left: 12%; width: 64%; }
  .hero-file-note { display: none; }
  .hero-actions { grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .shop-filter-row { display: block; }
  .shop-filters { max-width: 100%; }
  .product-count { display: block; padding-top: 12px; }
}

/* ========================================================================== 
   August 2026 refinement: real brand mark, navigation, hero artwork and shop CTA
   ========================================================================== */

/* Real No Fixed North mark */
.brand-logo {
  width: 36px;
  height: 38px;
  flex: 0 0 auto;
  object-fit: contain;
}
.brand-footer .brand-logo { width: 40px; height: 42px; }
.empty-basket-logo {
  width: 92px;
  height: 96px;
  margin-bottom: 23px;
  object-fit: contain;
}

/* Cleaner, borderless desktop navigation */
.site-header {
  border-bottom: 1px solid rgba(23, 23, 20, .12);
  background: rgba(247, 243, 235, .9);
  box-shadow: 0 8px 30px rgba(35, 31, 25, .035);
  backdrop-filter: blur(18px) saturate(120%);
}
.header-inner {
  min-height: 80px;
  grid-template-columns: minmax(230px, auto) minmax(0, 1fr) auto;
  gap: clamp(26px, 4vw, 70px);
}
.header-inner > .brand {
  gap: 11px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.045em;
}
.desktop-nav {
  width: auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(22px, 2.7vw, 42px);
  padding: 0;
  border: 0;
  background: transparent;
}
.desktop-nav a {
  position: relative;
  min-height: 80px;
  display: inline-flex;
  align-items: center;
  padding: 0;
  color: rgba(23, 23, 20, .66);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: color .2s ease;
}
.desktop-nav a::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 17px;
  left: 50%;
  height: 1.5px;
  background: var(--ink);
  transition: right .24s ease, left .24s ease;
}
.desktop-nav a::after { display: none; }
.desktop-nav a:hover,
.desktop-nav a:focus-visible { background: transparent; color: var(--ink); }
.desktop-nav a:hover::before,
.desktop-nav a:focus-visible::before { right: 0; left: 0; }
.header-actions { gap: 5px; }
.header-search {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: transparent;
}
.header-search:hover,
.header-search:focus-visible { border-color: transparent; background: rgba(23, 23, 20, .065); }
.header-create {
  min-height: 43px;
  padding: 0 17px;
  border: 0;
  background: var(--ink);
  box-shadow: 0 8px 20px rgba(23, 23, 20, .11);
}
.header-create:hover { background: var(--aqua-deep); }
.basket-button {
  min-height: 43px;
  gap: 7px;
  padding: 0 3px 0 15px;
  border: 0;
  border-left: 1px solid rgba(23, 23, 20, .15);
  background: transparent;
}
.basket-button:hover { border-color: rgba(23, 23, 20, .15); background: transparent; }
.basket-button:hover .basket-label { text-decoration: underline; text-underline-offset: 4px; }

/* A structured editorial hero instead of floating, competing mockups */
.hero {
  min-height: min(820px, calc(100vh - 112px));
  grid-template-columns: minmax(0, .8fr) minmax(560px, 1.2fr);
  gap: 26px clamp(52px, 6.4vw, 104px);
  padding-block: clamp(58px, 6vw, 88px) clamp(78px, 8vw, 112px);
}
.hero-gallery {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(190px, .72fr);
  gap: 14px;
  padding: 14px;
  overflow: visible;
  background: rgba(236, 229, 217, .65);
  box-shadow: inset 0 0 0 1px rgba(23, 23, 20, .13), 0 35px 80px rgba(35, 31, 25, .08);
}
.hero-gallery::before {
  content: "";
  inset: 14px;
  right: auto;
  top: auto;
  width: calc(68% - 14px);
  height: calc(100% - 28px);
  border: 1px solid rgba(23, 23, 20, .06);
  font-size: 0;
}
.hero-map-lines { opacity: .24; }
.hero-poster,
.hero-poster-main,
.hero-poster-dawlish,
.hero-poster-westward {
  position: relative;
  inset: auto;
  width: auto;
  height: auto;
  aspect-ratio: auto;
  transform: none;
  box-shadow: 0 18px 42px rgba(35, 31, 25, .14);
}
.hero-poster-main {
  z-index: 2;
  min-height: 0;
  overflow: hidden;
  background: #fff;
}
.hero-poster-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}
.hero-side-gallery {
  min-width: 0;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}
.hero-side-gallery .hero-poster { min-height: 0; }
.hero-side-gallery .hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-poster figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 13px;
  background: rgba(255, 253, 248, .94);
  color: var(--ink);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.hero-poster-main figcaption { padding-inline: 16px; }
.hero-download-badge {
  z-index: 8;
  right: -23px;
  top: 30px;
  width: 112px;
  height: 112px;
  background: #11110f;
  box-shadow: 0 18px 36px rgba(23, 23, 20, .22);
}
.hero-download-badge .lucide { color: #fff; }
.hero-file-note {
  z-index: 7;
  left: 28px;
  bottom: 30px;
  border: 1px solid rgba(23, 23, 20, .1);
  box-shadow: 0 12px 28px rgba(35, 31, 25, .12);
}

/* A more editorial, useful load-more control */
.shop-more {
  display: flex;
  justify-content: center;
  padding-top: 54px;
}
.shop-load-more {
  width: min(100%, 360px);
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  align-items: center;
  gap: 18px;
  padding: 0 12px 0 4px;
  border: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: padding .22s ease, background .22s ease;
}
.shop-load-more:hover,
.shop-load-more:focus-visible {
  padding-left: 14px;
  background: rgba(255, 253, 248, .72);
}
.shop-load-copy { display: grid; gap: 4px; }
.shop-load-copy strong { font-size: 13px; font-weight: 700; letter-spacing: -.02em; }
.shop-load-copy small { color: var(--ink-soft); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.shop-load-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  transition: transform .22s ease;
}
.shop-load-more:hover .shop-load-icon { transform: translateY(3px); }

@media (max-width: 1240px) {
  .desktop-nav { gap: 23px; }
  .hero { grid-template-columns: minmax(0, .82fr) minmax(500px, 1.18fr); gap: 30px 52px; }
  .hero-gallery { min-height: 600px; }
}

@media (max-width: 1080px) {
  .desktop-nav { gap: 20px; }
  .desktop-nav a { font-size: 9px; }
}

@media (max-width: 960px) {
  .brand-logo { width: 31px; height: 33px; }
  .hero-gallery {
    width: min(820px, 100%);
    min-height: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .header-inner > .brand { gap: 8px; }
  .brand-logo { width: 28px; height: 30px; }
  .mobile-menu-head .brand-logo { width: 31px; height: 33px; }
  .hero-gallery {
    width: 100%;
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 0;
    padding: 8px;
    overflow: visible;
  }
  .hero-gallery::before { display: none; }
  .hero-poster-main {
    grid-column: 1 / -1;
    aspect-ratio: .78;
  }
  .hero-side-gallery {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    gap: 8px;
  }
  .hero-side-gallery .hero-poster { aspect-ratio: 1.2; }
  .hero-download-badge {
    width: 78px;
    height: 78px;
    right: -7px;
    top: 22px;
  }
  .hero-download-badge span { font-size: 6.5px; }
  .hero-file-note { left: 18px; bottom: 132px; }
  .hero-poster figcaption { min-height: 34px; padding: 8px 9px; font-size: 6.5px; }
  .shop-more { padding-top: 40px; }
  .shop-load-more { min-height: 70px; }
}

@media (max-width: 460px) {
  .hero-gallery { width: 100%; }
  .hero-download-badge { right: -4px; }
  .hero-file-note { display: none; }
  .shop-load-more { width: 100%; }
}

/* Responsive reset for the appended header/hero rules */
@media (max-width: 960px) {
  :root { --header-height: 68px; }
  .header-inner {
    min-height: 68px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }
  .desktop-nav,
  .header-create,
  .header-search { display: none; }
  .header-actions { justify-self: end; gap: 6px; }
  .mobile-menu-button { display: inline-grid; }
  .basket-button {
    min-width: 44px;
    justify-content: center;
    padding: 0;
    border-left: 0;
  }
  .basket-label { display: none; }
  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "lead"
      "gallery"
      "support";
    gap: 30px;
    padding-block: 48px 88px;
  }
  .hero-lead { max-width: 820px; }
  .hero-support { max-width: 760px; }
  .hero h1 { font-size: clamp(60px, 10.4vw, 92px); }
}

@media (max-width: 720px) {
  .hero {
    gap: 24px;
    padding-block: 34px 68px;
  }
  .hero-kicker-row { margin-bottom: 14px; }
  .hero-kicker-row > span { display: none; }
  .hero h1 {
    max-width: 620px;
    font-size: clamp(48px, 14.3vw, 69px);
    line-height: .88;
  }
  .hero h1 em { margin-top: .2em; font-size: .62em; }
  .hero-intro { font-size: 13px; line-height: 1.65; }
  .hero-actions { grid-template-columns: 1fr 1fr; margin-top: 20px; }
  .hero-actions .button { min-height: 50px; padding-inline: 12px; font-size: 10px; }
  .hero-facts {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-top: 26px;
    padding-top: 16px;
  }
  .hero-facts div { display: block; }
  .hero-facts dt { display: grid; gap: 5px; font-size: 9px; }
  .hero-facts dd { display: none; }
  .basket-button,
  .mobile-menu-button {
    width: 42px;
    height: 42px;
    min-width: 42px;
    padding: 0;
  }
}

@media (max-width: 460px) {
  .hero-actions { grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
}

/* 2026-08-06 hero and notification refinements */
.hero-download-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transform: none;
  text-align: center;
}
.hero-download-badge .lucide {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.hero-download-badge .hero-download-badge__copy {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  font-size: 9px;
  font-weight: 750;
  line-height: 1.28;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}
.hero-download-badge .hero-download-badge__copy > span {
  display: block;
  padding-left: .08em;
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.hero-poster-main .hero-file-note {
  left: auto;
  right: 16px;
  bottom: 56px;
}

@media (max-width: 720px) {
  .hero-download-badge {
    gap: 4px;
  }
  .hero-download-badge .lucide {
    width: 14px;
    height: 14px;
  }
  .hero-download-badge .hero-download-badge__copy {
    font-size: 6.5px;
    line-height: 1.24;
  }
  .hero-poster-main .hero-file-note {
    left: auto;
    right: 10px;
    bottom: 44px;
  }
}

