/* Livis — considered luxury */
:root {
  --bg: #f7f3ec;
  --bg-deep: #e5dfd7;
  --mist: #efeae3;
  --sand: #e5dfd7;
  --product-plate: #e4dfd6;
  --ink: #2c2824;
  --ink-soft: #4a453f;
  --muted: #7a736a;
  --line: rgba(44, 40, 36, 0.12);
  --accent: #3f4f3c;
  --accent-soft: #5a6b56;
  --blush: #c4b6a8;
  --surface: rgba(255, 252, 247, 0.78);
  --surface-solid: #fffcf7;
  --on-accent: #f7f3ec;
  --night: #1c1915;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --space: clamp(1.5rem, 5vw, 3.75rem);
  --max: 1200px;
  --gutter: max(var(--space), calc((100vw - var(--max)) / 2 + var(--space)));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 4px;
  --radius-card: 0;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  font-variant-numeric: lining-nums;
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0.018;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--gutter);
  background: rgba(247, 243, 236, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(44, 40, 36, 0.08);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}

body[data-catalogue="home"] .site-header {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
}

body[data-catalogue="home"] .site-header .logo,
body[data-catalogue="home"] .site-header .nav a:not(.nav-cta) {
  color: #fff;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.35);
}

body[data-catalogue="home"] .site-header .nav a:not(.nav-cta):hover,
body[data-catalogue="home"] .site-header .nav a:not(.nav-cta):focus-visible {
  color: rgba(255, 255, 255, 0.78);
}

body[data-catalogue="home"] .site-header .nav-toggle span {
  background: #fff;
}

body[data-catalogue="home"] .site-header.is-scrolled,
body[data-catalogue="home"] .site-header:has(.nav.is-open) {
  background: rgba(247, 243, 236, 0.9);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(44, 40, 36, 0.08);
}

body[data-catalogue="home"] .site-header.is-scrolled .logo,
body[data-catalogue="home"] .site-header:has(.nav.is-open) .logo {
  color: var(--ink);
  text-shadow: none;
}

body[data-catalogue="home"] .site-header.is-scrolled .nav a:not(.nav-cta),
body[data-catalogue="home"] .site-header:has(.nav.is-open) .nav a:not(.nav-cta) {
  color: var(--ink-soft);
  text-shadow: none;
}

body[data-catalogue="home"] .site-header.is-scrolled .nav a:not(.nav-cta):hover,
body[data-catalogue="home"] .site-header.is-scrolled .nav a:not(.nav-cta):focus-visible,
body[data-catalogue="home"] .site-header:has(.nav.is-open) .nav a:not(.nav-cta):hover,
body[data-catalogue="home"] .site-header:has(.nav.is-open) .nav a:not(.nav-cta):focus-visible {
  color: var(--accent);
}

body[data-catalogue="home"] .site-header.is-scrolled .nav-toggle span,
body[data-catalogue="home"] .site-header:has(.nav.is-open) .nav-toggle span {
  background: var(--ink);
}

.logo {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem 1.4rem;
  max-width: min(52rem, 72vw);
}

.nav a {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--ink-soft);
  transition: color 0.2s var(--ease);
}

.nav a:not(.nav-cta):hover,
.nav a:not(.nav-cta):focus-visible {
  color: var(--accent);
}

.nav-cta {
  color: #f7f3ec !important;
  background: var(--accent);
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  font-size: 0.78rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.nav-cta:hover {
  color: #f7f3ec !important;
  background: var(--accent-soft);
  border-color: var(--accent-soft);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  margin: 0.35rem auto;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Hero */
.hero {
  min-height: calc(100svh - 9.75rem);
  display: grid;
  grid-template-rows: 1fr auto;
  position: relative;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-media img,
.keepsakes-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  object-position: 50% 48%;
}

.hero-placeholder,
.keepsakes-placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(120deg, rgba(28, 25, 21, 0.35), rgba(28, 25, 21, 0.15)),
    linear-gradient(160deg, #8a7a6a 0%, #5a6b5c 45%, #3d4a42 100%);
  position: relative;
}

.hero-media:has(img)::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(44, 40, 36, 0.58) 0%, rgba(44, 40, 36, 0.18) 42%, transparent 68%),
    linear-gradient(180deg, rgba(44, 40, 36, 0.1) 0%, rgba(44, 40, 36, 0.48) 100%);
}

.hero-placeholder::after,
.keepsakes-placeholder::after {
  content: attr(data-label);
  position: absolute;
  inset: auto var(--space) var(--space) auto;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.7);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: start;
  width: min(56rem, calc(100% - var(--gutter) - var(--space)));
  max-width: none;
  padding: clamp(5.5rem, 12vh, 8rem) var(--space) clamp(2rem, 5vh, 3.25rem);
  padding-left: var(--gutter);
  color: #fff;
  text-align: left;
  animation: rise 1.1s var(--ease) both;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
  color: rgba(247, 243, 236, 0.82);
}

.brand {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  line-height: 1;
  letter-spacing: 0.08em;
  margin: 0 0 0.7rem;
  text-shadow: none;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: normal;
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
  max-width: none;
}

.lede {
  margin: 0 0 1.75rem;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.75rem 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.7rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn-primary {
  background: var(--accent);
  color: #f7f3ec;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-soft);
  border-color: var(--accent-soft);
  color: #f7f3ec;
}

.hero .btn-primary {
  background: #f7f3ec;
  color: var(--ink);
  border-color: #f7f3ec;
}

.hero .btn-primary:hover {
  background: transparent;
  color: #f7f3ec;
  border-color: #f7f3ec;
}

.btn-ghost {
  border-color: rgba(247, 243, 236, 0.7);
  color: #f7f3ec;
  background: transparent;
}

.btn-ghost:hover {
  border-color: #f7f3ec;
  background: #f7f3ec;
  color: var(--ink);
}

.btn-wide {
  width: 100%;
}

.btn-ghost-dark {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: transparent;
}

.btn-ghost-dark:hover {
  border-color: #fff;
  background: #fff;
  color: #000;
}

.btn-add {
  flex: 1;
  min-width: 0;
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
}

.item-actions {
  display: flex;
  align-items: stretch;
  gap: 0.65rem;
  margin-top: auto;
}

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}

.qty-btn {
  width: 2.4rem;
  height: 2.9rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--ink);
}

.qty-btn:hover {
  background: color-mix(in srgb, var(--ink) 5%, transparent);
}

.qty-value {
  min-width: 1.5rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
}

.in-cart-note {
  margin: 0.55rem 0 0;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Story */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.75rem, 6vw, 5rem) var(--space) clamp(4.5rem, 10vw, 8rem);
}

.story h2,
.section-head h2,
.section-head h1,
.keepsakes-copy h2,
.enquire-intro h2,
.discover-head h2,
.landing-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 4.6vw, 3.35rem);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 1rem;
}

.section-head h1,
.landing-hero h1 {
  margin: 0.5rem 0 1rem;
}

.story-copy .aside-label {
  margin-bottom: 0.75rem;
}

.story-copy h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(1.75rem, 3.8vw, 2.6rem);
}

.story-copy p {
  margin: 0 0 1rem;
  font-size: clamp(0.98rem, 1.5vw, 1.1rem);
  max-width: 42ch;
  color: var(--ink-soft);
}

.story-copy p:last-child {
  margin-bottom: 0;
}

.story-media-group {
  display: flex;
  align-items: flex-start;
  gap: clamp(0.75rem, 2vw, 1.15rem);
  align-self: center;
}

.story-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--bg-deep);
}

.story-media--small {
  flex: 0 0 min(38%, 11rem);
  aspect-ratio: 3 / 4;
}

.story-media--large {
  flex: 1;
  min-width: 0;
  aspect-ratio: 4 / 3;
  margin-top: clamp(1.5rem, 5vw, 3rem);
}

.story-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
}

.story-aside {
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.aside-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.story-aside p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

/* Discover by category */
.discover {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space) clamp(1.5rem, 3vw, 2.5rem);
}

.discover-head {
  margin: 0 auto clamp(1.75rem, 4vw, 2.5rem);
  max-width: 40rem;
  text-align: center;
}

.discover-head h2 {
  margin: 0;
}

.discover-copy {
  text-align: center;
}

.discover-copy h3 {
  margin: 0 0 0.25rem;
}

.discover-sub {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.35;
}

.film-guide {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.film-guide h2 {
  margin: 0 0 0.5rem;
}

.film-guide-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.25rem 0 1rem;
  max-width: 28rem;
}

.film-guide-result {
  margin: 0 0 0.75rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.landing-note {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.discover-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2.5vw, 1.75rem);
}

#explore-categories {
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
}

#explore-categories .explore-row {
  display: flex;
  align-items: flex-start;
  gap: clamp(1rem, 2.4vw, 2rem);
}

#explore-categories .discover-grid {
  flex: 1 1 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: none;
  margin-inline: 0;
  gap: clamp(0.65rem, 1.4vw, 1.15rem);
}

#explore-categories .discover-head {
  flex: 0 0 min(11rem, 18vw);
  margin: 0;
  max-width: none;
  text-align: left;
  padding-top: 0.15rem;
}

#explore-categories .discover-head h2 {
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  line-height: 1.15;
}

#explore-categories .discover-media {
  aspect-ratio: 1;
  margin-bottom: 0.75rem;
  background: transparent;
}

#explore-categories .discover-media img {
  object-fit: contain;
}

#explore-categories .discover-copy h3 {
  font-weight: 500;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.discover-grid--four {
  grid-template-columns: repeat(4, 1fr);
}

.discover-item {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.discover-item:hover,
.discover-item:focus-visible {
  color: inherit;
}

.discover-media {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--mist);
  margin-bottom: 1rem;
  border-radius: var(--radius-card);
}

.discover-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.discover-item:hover .discover-media img,
.discover-item:focus-visible .discover-media img {
  transform: scale(1.04);
}

.discover-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

/* Featured starter */
.featured {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space) clamp(4.5rem, 10vw, 8rem);
}

.featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 4vw, 2.75rem);
  align-items: center;
  color: inherit;
  text-decoration: none;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.featured-card:hover,
.featured-card:focus-visible {
  color: inherit;
}

.featured-media {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--mist);
  border-radius: var(--radius-card);
}

.featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.featured-card:hover .featured-media img,
.featured-card:focus-visible .featured-media img {
  transform: scale(1.04);
}

.featured-copy {
  text-align: center;
  justify-self: center;
  max-width: 36rem;
}

.featured-copy .aside-label {
  margin-bottom: 0.65rem;
}

.featured-copy h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 0 0 0.85rem;
}

.featured-copy p {
  margin: 0 auto 1.25rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  max-width: 36ch;
  line-height: 1.5;
}

.featured-cta {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.featured-card:hover .featured-cta,
.featured-card:focus-visible .featured-cta {
  color: var(--ink);
}

/* Hire */
.hire {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space) clamp(4.5rem, 10vw, 8rem);
}

#how {
  position: relative;
  max-width: none;
  margin: 0;
  padding: clamp(1.75rem, 3.5vw, 2.75rem) var(--space);
  overflow: hidden;
  isolation: isolate;
}

#how::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/how/water-bg.jpg") center / cover no-repeat;
  filter: sepia(0.55) hue-rotate(350deg) saturate(0.95) brightness(0.72) contrast(1.05);
  z-index: -2;
}

#how::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(247, 243, 236, 0.68) 0%,
    rgba(196, 168, 142, 0.62) 45%,
    rgba(196, 168, 142, 0.62) 55%,
    rgba(247, 243, 236, 0.68) 100%
  );
  z-index: -1;
}

#how .section-head,
#how .steps,
#how .hire-links {
  max-width: var(--max);
  margin-inline: auto;
}

.page-hire {
  padding-top: clamp(6rem, 12vh, 8rem);
}

.section-head {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.page-hire .section-head {
  max-width: min(52rem, 100%);
  margin: 0 0 2.5rem;
  text-align: left;
}

.page-hire .section-head h1 {
  font-size: clamp(1.9rem, 4.1vw, 2.95rem);
}

.section-head p,
.keepsakes-copy > p,
.enquire-intro > p {
  margin: 0 auto;
  color: var(--ink-soft);
}

.page-hire .section-head p {
  margin: 0;
  max-width: min(62ch, 100%);
  line-height: 1.65;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.page-hire .filters {
  justify-content: flex-start;
}

.filter {
  border: 1px solid var(--line);
  background: transparent;
  padding: 0.55rem 1.05rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.filter:hover {
  border-color: var(--ink);
}

.filter.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
}

.catalogue {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
}

.item {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.item[hidden] {
  display: none;
}

.item-media {
  aspect-ratio: 1;
  background: var(--mist);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
}

.item-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(224, 58, 47, 0.16), transparent 50%),
    linear-gradient(20deg, #e8e0d6, #c9c0b4 60%, #6f6a64);
  transition: transform 0.7s var(--ease);
}

.item:hover .item-media::before {
  transform: scale(1.04);
}

.item-media[data-tone="warm"]::before {
  background:
    linear-gradient(150deg, rgba(224, 58, 47, 0.18), transparent 45%),
    linear-gradient(200deg, #f0c9b8, #d08a72 55%, #8a4a3c);
}

.item-media[data-tone="cool"]::before {
  background:
    linear-gradient(150deg, rgba(14, 14, 14, 0.12), transparent 50%),
    linear-gradient(200deg, #d8d2c8, #9a958c 55%, #4a4742);
}

.item-media[data-tone="soft"]::before {
  background:
    linear-gradient(150deg, rgba(224, 58, 47, 0.22), transparent 50%),
    linear-gradient(200deg, #f2d6ce, #e0a090 55%, #9a5a50);
}

.item-media .photo-slot {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end start;
  padding: 1rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--night) 45%, transparent);
}

.item-media.has-photo {
  background: var(--product-plate);
  position: relative;
}

.coming-soon-badge {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  margin: 0;
  padding: 0.28rem 0.45rem;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(247, 243, 236, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  line-height: 1;
  pointer-events: none;
}

.btn-add:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.item-media.has-photo::before {
  display: none;
}

.item-media img,
.item-media .item-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6%;
  transition: opacity 0.35s var(--ease), transform 0.7s var(--ease);
}

.item-media.has-photo:not(.is-lifestyle) img {
  /* Plate colour matches --product-plate so letterboxing reads as one background */
  mix-blend-mode: normal;
  filter: none;
  padding: 0;
  object-fit: contain;
}

.item-media.is-lifestyle {
  background: var(--surface-solid);
}

.item-media.is-lifestyle img {
  object-fit: cover;
  padding: 0;
  mix-blend-mode: normal;
  filter: none;
}

.item-media.has-hover .item-photo {
  position: absolute;
  inset: 0;
}

.item-media.has-hover .item-photo-hover {
  opacity: 0;
  pointer-events: none;
}

.item-open:hover .item-media.has-hover .item-photo-primary,
.item-media.has-hover:hover .item-photo-primary {
  opacity: 0;
}

.item-open:hover .item-media.has-hover .item-photo-hover,
.item-media.has-hover:hover .item-photo-hover {
  opacity: 1;
}

@media (hover: none) {
  .item-open:hover .item-media.has-hover .item-photo-primary,
  .item-media.has-hover:hover .item-photo-primary {
    opacity: 1;
  }

  .item-open:hover .item-media.has-hover .item-photo-hover,
  .item-media.has-hover:hover .item-photo-hover {
    opacity: 0;
  }
}

.item:hover .item-media:not(.has-hover) img {
  transform: scale(1.04);
}

.item-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.item-open {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.item-open:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.item-body-preview {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 0.1rem;
}

.item-body-preview h3 {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.75vw, 1.15rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}

.item-descriptor {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.45;
  color: var(--muted);
}

.item-subtitle,
.product-subtitle {
  margin: 0 0 0.4rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.35;
}

.product-subtitle {
  margin: 0 0 0.65rem;
}

.item-price {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: clamp(1.12rem, 1.9vw, 1.22rem);
  font-weight: 600;
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
}

.item-media {
  position: relative;
}

.item-actions {
  display: flex;
  align-items: stretch;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

/* Product modal */
body.product-open {
  overflow: hidden;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 1rem;
}

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

.product-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(20, 18, 16, 0.5);
  cursor: pointer;
}

.product-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  max-height: min(92vh, 900px);
  overflow: auto;
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: 0;
  animation: rise 0.35s var(--ease);
}

.product-close {
  position: sticky;
  top: 0;
  z-index: 2;
  float: right;
  margin: 0.85rem 0.85rem 0 0;
  border: 0;
  background: var(--surface-solid);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  padding: 0.4rem 0.55rem;
}

.product-close:hover {
  color: var(--ink);
}

.product-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  padding: 1.25rem clamp(1.25rem, 3vw, 2rem) 2rem;
  clear: both;
}

.product-stage {
  position: relative;
  aspect-ratio: 1;
  background: var(--product-plate);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 0;
}

.product-stage.is-lifestyle {
  background: var(--bg-deep);
}

.product-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  mix-blend-mode: normal;
}

.product-stage.is-lifestyle img {
  object-fit: cover;
  padding: 0;
  mix-blend-mode: normal;
}

.product-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.product-thumb {
  width: 4.25rem;
  height: 4.25rem;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0;
  background: var(--product-plate);
  cursor: pointer;
  overflow: hidden;
}

.product-thumb.is-lifestyle {
  background: var(--bg-deep);
}

.product-thumb.is-active {
  border-color: var(--ink);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  mix-blend-mode: normal;
}

.product-thumb.is-lifestyle img {
  object-fit: cover;
  padding: 0;
  mix-blend-mode: normal;
}

.product-info .aside-label {
  margin-bottom: 0.4rem;
}

.product-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.15rem;
}

.product-price {
  margin: 0;
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: clamp(1.35rem, 2.4vw, 1.55rem);
  font-weight: 700;
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--accent);
}

.product-subtitle {
  margin: 0 0 0.2rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.35;
}

.product-price-note {
  margin: 0.2rem 0 0.85rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.4;
  color: var(--ink-soft);
}

.product-blurb {
  margin: 0 0 0.75rem;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.55;
}

.product-desc {
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.product-desc-list {
  margin: 0 0 1.85rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.5;
}

.product-details {
  margin: 0 0 1.35rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.product-detail-row {
  display: grid;
  grid-template-columns: 7.25rem 1fr;
  gap: 0.85rem;
  align-items: baseline;
}

.product-detail-row.has-list {
  align-items: start;
}

.product-detail-row dt {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-detail-row dd {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.product-detail-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.28rem;
  list-style: none;
}

.product-detail-list li {
  position: relative;
  padding-left: 0.95rem;
}

.product-detail-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.85em;
  line-height: inherit;
  color: var(--muted);
  opacity: 0.85;
}

.product-hook {
  margin: 0 0 0.75rem;
  font-family: var(--font-body);
  font-size: 1.12rem;
  font-weight: 600;
  font-style: normal;
  line-height: 1.5;
  color: var(--ink);
}

.product-audience {
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.product-specs {
  margin: 0 0 1.35rem;
  display: grid;
  gap: 0.45rem;
}

.product-spec {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.75rem;
  align-items: baseline;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.4;
}

.product-spec dt {
  margin: 0;
  font-weight: 600;
  color: var(--ink);
}

.product-spec dd {
  margin: 0;
}

.product-subhead {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0.35rem 0 0.55rem;
}

.product-features {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.product-features li {
  margin-bottom: 0.45rem;
  line-height: 1.45;
}

.product-colours {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1rem;
}

.product-colour {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.product-colour-swatch {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.product-steps {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.product-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  color: var(--ink-soft);
  line-height: 1.45;
}

.product-step-num {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: 0.72rem;
  font-weight: 700;
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: 0.04em;
  color: var(--accent);
  line-height: 1.6;
}

.product-actions {
  display: flex;
  gap: 0.65rem;
  align-items: stretch;
  margin: 0 0 0.85rem;
}

.product-actions .btn-add {
  flex: 1;
}

.product-note {
  margin: 0 0 1.35rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.product-hire-details {
  margin: 0 0 1.35rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-hire-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.product-hire-details summary::-webkit-details-marker {
  display: none;
}

.product-hire-details summary::after {
  content: "+";
  color: var(--accent);
  font-weight: 700;
  line-height: 1;
}

.product-hire-details[open] summary::after {
  content: "–";
}

.product-hire-list {
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.product-hire-list > div {
  display: grid;
  gap: 0.15rem;
}

.product-hire-list dt {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-hire-list dd {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.product-back {
  margin-top: 1rem;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

@media (max-width: 800px) {
  .product-layout {
    grid-template-columns: 1fr;
  }
}

.item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.85rem;
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.item-body > p {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--ink-soft);
}

.selection-bar {
  position: sticky;
  bottom: 0.6rem;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding: 0.55rem 0.7rem 0.55rem 1rem;
  background: color-mix(in srgb, var(--night) 94%, transparent);
  color: var(--on-accent);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  animation: rise 0.45s var(--ease);
}

/* Match cameras page bar width when the bar sits outside .hire */
main > .selection-bar {
  width: min(calc(var(--max) - 2 * var(--space)), calc(100% - 2 * var(--space)));
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(4.5rem, 10vw, 8rem);
}

.selection-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.6rem;
  font-size: 0.9rem;
  min-width: 0;
}

.selection-divider,
#selection-names {
  display: none;
}

.selection-actions {
  display: flex;
  flex-shrink: 0;
  gap: 0.45rem;
}

.selection-bar .btn {
  min-height: 2.45rem;
  padding: 0.5rem 0.95rem;
}

.selection-bar .btn-primary {
  flex-shrink: 0;
}

/* Cart drawer */
body.cart-open {
  overflow: hidden;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  justify-items: end;
}

.cart-drawer[hidden] {
  display: none;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: color-mix(in srgb, var(--night) 45%, transparent);
  cursor: pointer;
}

.cart-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(100%, 420px);
  height: 100%;
  background: var(--surface-solid);
  color: var(--ink);
  box-shadow: -12px 0 40px color-mix(in srgb, var(--night) 18%, transparent);
  animation: cart-in 0.35s var(--ease);
}

@keyframes cart-in {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border-bottom: 1px solid var(--line);
}

.cart-header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cart-close {
  border: 0;
  background: transparent;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--muted);
}

.cart-close:hover {
  color: var(--ink);
}

.cart-body {
  flex: 1;
  overflow: auto;
  padding: 0.5rem 1.35rem 1.35rem;
}

.cart-empty {
  margin: 1.5rem 0;
  color: var(--muted);
}

.cart-footer {
  padding: 1rem 1.35rem 1.35rem;
  border-top: 1px solid var(--line);
}

.cart-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
}

.cart-total span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.cart-total strong {
  font-weight: 600;
  letter-spacing: -0.02em;
}

.enquire-selection .cart-total {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(247, 243, 236, 0.22);
  color: var(--on-accent);
}

.enquire-selection .cart-total span {
  color: rgba(247, 243, 236, 0.62);
}

.enquire .selected-chips .cart-line {
  border-bottom-color: rgba(247, 243, 236, 0.18);
}

.enquire .cart-line-info strong {
  color: var(--on-accent);
}

.enquire .cart-line-info span {
  color: rgba(247, 243, 236, 0.65);
}

.enquire .cart-remove {
  color: rgba(247, 243, 236, 0.55);
}

.enquire .cart-remove:hover {
  color: var(--on-accent);
}

.enquire-selection .qty {
  border-color: rgba(247, 243, 236, 0.45);
  background: #f7f3ec;
}

.enquire-selection .qty-btn {
  color: var(--ink);
}

.enquire-selection .qty-btn:hover {
  background: color-mix(in srgb, var(--ink) 8%, transparent);
}

.enquire-selection .qty-value {
  color: var(--ink);
  font-weight: 700;
  font-size: 1.15rem;
  min-width: 1.85rem;
}

.enquire-selection .selected-chips .cart-line .qty {
  background: #f7f3ec;
}

.enquire-intro {
  text-align: center;
}

.enquire-intro h2 {
  margin-left: auto;
  margin-right: auto;
}

.enquire-selection {
  margin-top: 1.75rem;
  padding: 1.15rem 0 0;
  border-top: 1px solid rgba(247, 243, 236, 0.22);
}

.enquire-empty {
  margin: 0;
  font-size: 1rem;
  color: rgba(247, 243, 236, 0.72);
}

.enquire-empty a {
  color: var(--on-accent);
}

.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.55rem 0.85rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-thumb {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: start;
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 0;
  background: var(--product-plate);
  display: block;
}

.cart-thumb--empty {
  display: block;
}

.cart-line-info {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.cart-line-info strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
}

.cart-line-info span {
  font-size: 0.88rem;
  color: var(--muted);
}

.cart-line .qty {
  grid-column: 3;
  grid-row: 1;
}

.cart-remove {
  grid-column: 2;
  justify-self: start;
  border: 0;
  background: transparent;
  padding: 0;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
}

.cart-remove:hover {
  color: var(--ink);
}

.selected-chips .cart-line {
  border-bottom-color: var(--line);
}

.selected-chips .cart-line .qty {
  background: var(--surface-solid);
}

/* Keepsakes */
.keepsakes {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: min(70vh, 640px);
  margin: 0 0 clamp(4.5rem, 10vw, 8rem);
}

.keepsakes-media {
  min-height: 360px;
}

.keepsakes-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--space);
  background: var(--surface);
}

.keepsake-list {
  list-style: none;
  margin: 1.5rem 0 1.75rem;
  padding: 0;
  border-top: 1px solid var(--line);
}

.keepsake-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.text-link {
  display: inline;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
  width: fit-content;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.text-link:hover {
  color: var(--ink);
}

/* From the day */
.proof {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.75rem, 6vw, 5rem) var(--space) clamp(4.5rem, 10vw, 8rem);
}

body[data-catalogue="home"] #from-the-day.proof {
  padding-top: clamp(1.75rem, 3.5vw, 2.75rem);
  padding-bottom: clamp(2.75rem, 6vw, 4.5rem);
}

@media (max-width: 720px) {
  body[data-catalogue="home"] #from-the-day .proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.proof.page-hire {
  padding-top: clamp(6rem, 12vh, 8rem);
}

.proof.page-hire .section-head {
  max-width: min(52rem, 100%);
  margin: 0 0 2.5rem;
  text-align: left;
}

.proof.page-hire .section-head h1 {
  font-size: clamp(1.9rem, 4.1vw, 2.95rem);
}

.proof.page-hire .proof-grid {
  margin: 0;
  max-width: none;
}

.proof .section-head p {
  color: var(--ink-soft);
}

.proof-more {
  margin: 1.75rem auto 0;
  max-width: 52rem;
  text-align: center;
}

.proof-more .text-link {
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 0.28em;
  text-decoration-thickness: 1.5px;
}

.proof-more .text-link:hover {
  color: var(--ink);
  text-decoration-thickness: 2px;
}

.story--page {
  padding-top: clamp(6rem, 12vh, 8rem);
}

.story--page .story-copy h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.75rem, 3.8vw, 2.6rem);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 1.25rem;
}

.story-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1.5rem !important;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.15rem, 0.4vw, 0.3rem);
  width: 100%;
  max-width: 52rem;
  margin: 0 auto;
}

.proof-item {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
  overflow: hidden;
  background: var(--bg-deep);
  cursor: pointer;
  display: block;
  width: 100%;
  color: inherit;
  text-align: left;
}

.proof-item img {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

.proof-hover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0.75rem;
  background: rgba(28, 25, 21, 0.42);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}

.proof-item:hover img,
.proof-item:focus-visible img {
  transform: scale(1.04);
}

.proof-item:hover .proof-hover,
.proof-item:focus-visible .proof-hover {
  opacity: 1;
}

.proof-item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* From the day modal */
body.day-open {
  overflow: hidden;
}

.day-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 1rem;
}

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

.day-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(20, 18, 16, 0.5);
  cursor: pointer;
}

.day-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
  max-height: min(92vh, 860px);
  overflow: auto;
  background: var(--surface-solid);
  border: 1px solid var(--line);
  animation: rise 0.35s var(--ease);
}

.day-close {
  position: sticky;
  top: 0;
  z-index: 2;
  float: right;
  margin: 0.85rem 0.85rem 0 0;
  border: 0;
  background: var(--surface-solid);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  padding: 0.4rem 0.55rem;
}

.day-close:hover {
  color: var(--ink);
}

.day-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  padding: 1.25rem clamp(1.25rem, 3vw, 2rem) 2rem;
  clear: both;
  align-items: start;
}

.day-shot {
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-deep);
}

.day-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.day-camera .aside-label {
  margin: 0 0 0.75rem;
}

.day-camera-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.day-camera-media {
  aspect-ratio: 1;
  width: min(100%, 9rem);
  background: var(--product-plate);
  overflow: hidden;
}

.day-camera-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.7s var(--ease);
}

.day-camera-card:hover .day-camera-media img,
.day-camera-card:focus-visible .day-camera-media img {
  transform: scale(1.03);
}

.day-camera-copy h3 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: clamp(0.98rem, 1.8vw, 1.12rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.day-camera-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.day-camera-price {
  margin-top: 0.25rem !important;
  color: var(--ink) !important;
  font-size: 0.92rem !important;
}

.day-camera-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: auto;
  margin-top: 0.9rem;
  min-height: 2.25rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: transparent;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.day-camera-cta::after {
  content: "→";
  font-size: 0.95em;
  letter-spacing: 0;
  transition: transform 0.3s var(--ease);
}

.day-camera-card:hover .day-camera-cta,
.day-camera-card:focus-visible .day-camera-cta {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
}

.day-camera-card:hover .day-camera-cta::after,
.day-camera-card:focus-visible .day-camera-cta::after {
  transform: translateX(0.28rem);
}

.day-camera-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (max-width: 720px) {
  .hero-media img {
    object-position: 50% 46%;
  }

  #explore-categories .discover-head {
    flex-basis: 6.75rem;
  }

  #explore-categories .discover-head h2 {
    font-size: 1.15rem;
  }

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

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

/* Trust strip */
.trust {
  max-width: none;
  margin: 0;
  padding: clamp(1.25rem, 3vw, 1.75rem) var(--gutter);
  background: var(--mist);
}

.trust-list {
  list-style: none;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
}

.trust-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  text-align: left;
}

.trust-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
  text-align: left;
}

.trust-list strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.trust-list .trust-copy span {
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.4;
}

/* How */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}

.steps-four {
  grid-template-columns: repeat(4, 1fr);
}

.steps li {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  text-align: center;
}

#how .steps li {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-top: 0;
  text-align: left;
  background: var(--bg);
  border: 1px solid var(--line);
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: 0.72rem;
  font-weight: 700;
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: 0.12em;
  color: var(--blush);
  margin-bottom: 1rem;
}

#how .step-num {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--blush);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.steps h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.hire-links {
  display: block;
  margin: 1rem auto 0;
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 42rem;
  text-align: center;
}

.hire-links + .hire-links {
  margin-top: 0.15rem;
}

#how .hire-links {
  max-width: 42rem;
  margin-top: 1.25rem;
  margin-bottom: 0;
  margin-inline: auto;
  text-align: center;
}

#how .hire-links + .hire-links {
  margin-top: 0.15rem;
}

.hire-links a {
  color: var(--accent);
  font-weight: 500;
}

/* FAQ */
.faq {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space) clamp(4.5rem, 10vw, 8rem);
}

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

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

.faq-list summary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 700;
}

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

.faq-list p {
  margin: 0.75rem auto 0;
  color: var(--ink-soft);
  max-width: 58ch;
  text-align: left;
}

/* Legal pages */
.legal {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(6rem, 12vh, 8rem) var(--space) 4rem;
}

.legal-doc {
  max-width: 42rem;
  margin: 0 auto;
}

.legal-doc h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0.5rem 0 0.75rem;
}

.legal-updated {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-doc h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin: 2rem 0 0.65rem;
}

.legal-doc p,
.legal-doc li {
  color: var(--ink-soft);
}

.legal-doc p {
  margin: 0 0 0.9rem;
}

.legal-doc ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.legal-doc li {
  margin: 0 0 0.4rem;
}

.legal-doc a {
  color: var(--accent);
}

/* Landing pages */
.landing {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(6rem, 12vh, 8rem) var(--space) 4rem;
}

.landing-hero {
  max-width: 40rem;
  margin: 0 auto clamp(2.5rem, 6vw, 4rem);
  text-align: center;
}

.landing-hero .lede {
  margin: 0 auto 1.75rem;
  color: var(--ink-soft);
  font-size: 1.15rem;
}

.landing-hero .hero-actions {
  justify-content: center;
}

.landing-media {
  max-width: 40rem;
  margin: 0 auto clamp(2.5rem, 6vw, 3.5rem);
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--bg-deep);
  border-radius: var(--radius-card);
}

.landing-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.landing-ghost {
  border-color: var(--ink);
  color: var(--ink);
}

.landing-ghost:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--on-accent);
}

.landing-block {
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  text-align: center;
}

.landing-block h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
}

.landing-block p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.landing-list {
  margin: 0 auto;
  padding-left: 1.15rem;
  color: var(--ink-soft);
  display: inline-block;
  text-align: left;
}

.landing-list li {
  margin-bottom: 0.65rem;
}

.landing-list strong {
  color: var(--ink);
}

.landing-list a,
.landing-list a.landing-pick,
.landing-list button.landing-pick {
  color: inherit;
  font: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2em;
  transition: text-decoration-color 0.2s var(--ease), color 0.2s var(--ease);
}

.landing-list a:hover,
.landing-list a:focus-visible,
.landing-list a.landing-pick:hover,
.landing-list a.landing-pick:focus-visible,
.landing-list button.landing-pick:hover,
.landing-list button.landing-pick:focus-visible {
  color: var(--accent-soft);
  text-decoration-color: var(--accent-soft);
}

.landing-faq {
  text-align: left;
  max-width: 36rem;
  margin: 0 auto;
}

/* ARETAE-style alternating story splits */
.landing--story {
  max-width: none;
  padding: clamp(6rem, 12vh, 8rem) 0 0;
}

.landing-hero--story {
  max-width: var(--max);
  margin: 0 auto clamp(1.75rem, 4vw, 2.75rem);
  padding: 0 var(--space);
  text-align: left;
}

.landing-hero--story:has(+ .story-split--copy-only) {
  margin-bottom: clamp(0.35rem, 1.2vw, 0.75rem);
}

.landing-hero--story h1 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.9rem, 4.1vw, 2.95rem);
}

.story-split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  background: var(--bg);
}

.story-split--compact {
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 1.52fr);
  align-items: stretch;
  max-width: none;
  margin: 0;
  padding-inline: 0;
  gap: 0;
}

.story-split--compact .story-split-media {
  min-height: min(34vh, 300px);
  border-radius: 0;
}

.story-split--compact .story-split-copy {
  padding-inline: clamp(1.75rem, 6vw, 5.5rem);
}

.story-split--compact .story-split-copy h2 {
  font-size: clamp(1.2rem, 2.15vw, 1.85rem);
  white-space: nowrap;
}

.story-split--reverse {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
}

.story-split--reverse .story-split-media {
  order: 2;
}

.story-split-media {
  position: relative;
  margin: 0;
  min-height: min(48vh, 440px);
  overflow: hidden;
  background: var(--bg-deep);
}

.story-split-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
}

.story-split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.25rem, 6vw, 5rem) clamp(1.75rem, 6vw, 5.5rem);
}

.story-split-copy > * {
  max-width: 32rem;
}

.story-split-copy h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.85rem, 3.2vw, 2.7rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 1.15rem;
}

.story-split-copy p {
  margin: 0 0 1rem;
  font-size: 1.06rem;
  color: var(--ink-soft);
}

.story-split-copy p:last-child {
  margin-bottom: 0;
}

.story-split-copy .hero-actions {
  justify-content: flex-start;
  margin-top: 0.75rem;
}

.story-split--copy-only {
  grid-template-columns: 1fr;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--space);
}

.story-split--copy-only .story-split-copy {
  align-items: flex-start;
  text-align: left;
  padding-block: clamp(0.2rem, 0.8vw, 0.45rem) clamp(0.75rem, 2vw, 1.25rem);
  padding-inline: 0;
}

.story-split--copy-only .story-split-copy h2 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.06rem;
  letter-spacing: 0;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.story-split--copy-only .story-split-copy > * {
  margin-inline: 0;
}

.story-split--copy-only .story-split-copy .hero-actions {
  justify-content: flex-start;
}

.story-split-copy .landing-list {
  display: block;
  margin: 0.25rem 0 0;
  padding-left: 1.15rem;
  text-align: left;
}

.pick-list {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.pick-item {
  margin: 0;
  padding: 0 0 0.95rem;
  border-bottom: 1px solid var(--line);
}

.pick-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.pick-name {
  display: inline;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2em;
  transition: color 0.2s var(--ease), text-decoration-color 0.2s var(--ease);
}

.pick-name:hover,
.pick-name:focus-visible {
  color: var(--accent-soft);
  text-decoration-color: var(--accent-soft);
}

.pick-desc {
  margin: 0.28rem 0 0 !important;
  font-size: 0.95rem !important;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 36ch;
}

.landing--story .how {
  padding-top: clamp(1.75rem, 3.5vw, 2.75rem);
  padding-bottom: clamp(1.25rem, 3vw, 2rem);
}

#how.landing-how--wedding {
  margin-top: clamp(1.25rem, 3vw, 2rem);
  padding-top: clamp(1.75rem, 3.5vw, 2.75rem);
  padding-bottom: clamp(1.25rem, 3vw, 2rem);
}

#how.landing-how--wedding::before {
  background: url("images/22834b92cffb4f9c0d86af55c2f0230b.jpg") center / cover no-repeat;
  filter: none;
}

#how.landing-how--wedding::after {
  background: rgba(255, 252, 247, 0.55);
}

#how.landing-how--wedding .hire-links,
.landing--story #how .hire-links {
  margin-top: 1.25rem;
  margin-bottom: 0;
  margin-inline: auto;
  max-width: 42rem;
  text-align: center;
}

#how.landing-how--wedding .hire-links + .hire-links,
.landing--story #how .hire-links + .hire-links {
  margin-top: 0.15rem;
}

.landing-picks {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--space) clamp(3rem, 7vw, 5rem);
}

.landing--story .landing-picks {
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
}

.landing-picks .section-head {
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.pick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
}

.pick-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.pick-card:hover .pick-card-name,
.pick-card:focus-visible .pick-card-name {
  color: var(--accent-soft);
}

.pick-card-media {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--product-plate);
  border-radius: var(--radius-card);
}

.pick-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.7s var(--ease);
}

.pick-card:hover .pick-card-media img,
.pick-card:focus-visible .pick-card-media img {
  transform: scale(1.03);
}

.pick-card-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: color 0.2s var(--ease);
}

.pick-card-desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 28ch;
}

@media (min-width: 720px) {
  .pick-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .pick-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.landing--story .hire-links {
  margin-top: 1.25rem;
  margin-inline: auto;
  max-width: 42rem;
  text-align: center;
}

.film-guide-band {
  background: var(--sand);
  padding: clamp(2.25rem, 5vw, 3.25rem) var(--space);
}

.film-guide-band .film-guide {
  max-width: 40rem;
  margin: 0 auto;
  padding-top: 0;
  border-top: 0;
}

.film-guide-band h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
}

.landing-after {
  max-width: 40rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) var(--space) 4.5rem;
}

.landing-after h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
}

.landing-after .landing-faq {
  margin: 0;
  max-width: none;
}

@media (max-width: 900px) {
  .story-split,
  .story-split--reverse {
    grid-template-columns: 1fr;
  }

  .story-split--reverse .story-split-media {
    order: -1;
  }

  .story-split-media {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .story-split--compact .story-split-media {
    aspect-ratio: 4 / 3;
    max-height: 14rem;
  }

  .story-split--compact .story-split-copy {
    padding: 1.5rem var(--space) 2rem;
  }

  .story-split--compact .story-split-copy h2 {
    font-size: clamp(1.05rem, 4.4vw, 1.4rem);
  }

  .story-split-copy {
    padding: 2rem var(--space) 2.75rem;
  }
}

.nap {
  font-style: normal;
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.6;
}

.nap-name {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.15rem;
}

.nap-address {
  color: var(--muted);
}

.nap-email,
.nap a {
  color: var(--ink-soft);
  text-decoration: none;
}

.nap-email:hover,
.nap a:hover {
  color: var(--accent);
}

.footer-aka,
.footer-tagline {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.footer-aka {
  margin-bottom: 0.2rem;
}

.footer-tagline {
  margin-top: 0.35rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
  margin-bottom: 0.85rem;
}

.footer-nav a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--ink-soft);
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem 1rem;
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
}

.footer-legal a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
}

.footer-legal a:hover {
  color: var(--accent);
}

.enquire-form .btn-primary,
.btn-add {
  background: var(--ink);
  border-color: var(--ink);
  color: #f7f3eb;
}

.enquire-form .btn-primary:hover,
.btn-add:hover,
.btn-add.just-added {
  background: var(--accent-soft);
  color: var(--on-accent);
  border-color: var(--accent-soft);
}

.enquire {
  position: relative;
  max-width: none;
  margin: 0;
  padding: clamp(4.5rem, 10vw, 7rem) var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  background: #3a2f28;
  color: var(--on-accent);
}

.enquire .enquire-intro > p {
  color: rgba(247, 243, 236, 0.82);
}

.selected-chips {
  display: flex;
  flex-direction: column;
}

.enquire-form {
  background: var(--surface-solid);
  color: var(--ink);
  padding: clamp(1.25rem, 2.5vw, 1.85rem);
  border: 0;
  box-shadow: 0 18px 48px rgba(44, 40, 36, 0.08);
}

.enquire-form .field span {
  color: var(--ink-soft);
}

.enquire-form .field input,
.enquire-form .field textarea,
.enquire-form .field select {
  color: var(--ink);
}

.enquire-form .field input::placeholder,
.enquire-form .field textarea::placeholder {
  color: var(--muted);
  opacity: 1;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.field span {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.field span em {
  font-style: normal;
  font-weight: 500;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 0.7rem 0;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
  font: inherit;
  color: inherit;
  border-radius: 0;
  appearance: none;
}

.field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.15rem center;
  padding-right: 1.4rem;
}

.field input[type="date"] {
  min-height: 2.6rem;
  color-scheme: light;
}

.field input[type="date"]:invalid,
.field select:invalid {
  color: var(--muted);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-bottom-color: var(--ink);
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.form-note {
  margin: 0.25rem 0 1.25rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.form-status {
  min-height: 1.4em;
  margin: 0.85rem 0 0;
  font-size: 0.98rem;
  color: var(--accent);
}

.form-status.is-error {
  color: #8a3b2e;
}

.enquire-form .btn-primary {
  background: var(--ink);
  color: var(--bg);
}

.enquire-form .btn-primary:hover {
  background: var(--accent);
}

.enquire-form .btn-primary:disabled {
  opacity: 0.55;
  cursor: wait;
  transform: none;
}

/* Footer */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  max-width: none;
  margin: 0;
  padding: 2.5rem var(--gutter) 3rem;
  background: var(--sand);
  border-top: 0;
}

.footer-brand .logo {
  margin: 0 0 0.35rem;
}

.footer-meta {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  text-align: right;
}

.footer-meta a {
  color: var(--ink-soft);
  text-decoration: none;
}

.footer-meta a:hover {
  color: var(--accent);
}

/* Motion */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--lift {
  transform: translateY(48px);
}

.reveal--lift.is-visible {
  transform: translateY(0);
}

.reveal--media {
  overflow: hidden;
  transform: translateY(28px);
}

.reveal--media.is-visible {
  transform: translateY(0);
}

.reveal--media img {
  transform: scale(1.08);
  transition: transform 1.15s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal--media.is-visible img {
  transform: scale(1);
}

/* Responsive */
@media (max-width: 900px) {
  .catalogue,
  .steps,
  .steps-four {
    grid-template-columns: 1fr 1fr;
  }

  .discover-grid--four,
  .trust-list {
    grid-template-columns: 1fr 1fr;
  }

  .story,
  .enquire,
  .featured-card {
    grid-template-columns: 1fr;
  }

  .story-media-group {
    max-width: min(100%, 28rem);
    margin-inline: auto;
  }

  .story-media--small {
    flex-basis: 40%;
  }

  .story-media--large {
    margin-top: 1.25rem;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 0 0 auto;
    top: 0;
    max-width: none;
    padding: 5rem var(--gutter) 1.5rem;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.15rem;
    background: rgba(247, 243, 236, 0.98);
    transform: translateY(-110%);
    transition: transform 0.4s var(--ease);
  }

  .nav a {
    font-size: 0.82rem;
  }

  .nav.is-open {
    transform: translateY(0);
  }

  .catalogue,
  .steps,
  .steps-four,
  .discover-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .trust-list {
    grid-template-columns: 1fr 1fr;
  }

  #explore-categories .discover-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .selection-bar,
  main > .selection-bar {
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: max(0.6rem, env(safe-area-inset-bottom));
    width: auto;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0;
    padding: 0.55rem 0.7rem 0.55rem 1rem;
  }

  .selection-summary {
    flex: 1;
    min-width: 0;
  }

  .selection-divider,
  #selection-names,
  .selection-bar .btn-primary {
    display: none;
  }

  .selection-actions {
    flex-direction: row;
    flex-shrink: 0;
  }

  .selection-bar .btn-ghost-dark {
    min-height: 2.45rem;
    padding: 0.5rem 0.95rem;
    background: var(--surface-solid);
    border-color: transparent;
    color: var(--ink);
  }

  .selection-bar .btn-ghost-dark:hover {
    background: #fff;
    border-color: transparent;
    color: var(--ink);
  }

  body:has(#selection-bar:not([hidden])) {
    padding-bottom: 5.25rem;
  }

  .item-actions {
    flex-wrap: wrap;
  }

  .item-actions .btn-add {
    flex: 1 1 100%;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    text-align: left;
  }

  .footer-legal {
    justify-content: flex-start;
  }

  .hero-content {
    max-width: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .item {
    opacity: 1;
    transform: none;
  }

  .reveal--media img,
  .hero-media img {
    transform: none;
  }

  @media (max-width: 720px) {
    .hero-media img {
      object-position: 50% 46%;
    }
  }
}
