/*
Theme Name: Colemans Butchers Demo
Theme URI: https://pwjcolemanbutchers.co.uk/
Author: Simon Roberts Solutions
Description: Demo WordPress rebuild for Colemans Butchers.
Version: 0.5.2
Text Domain: colemans-butchers
*/

:root {
  --cb-ink: #080807;
  --cb-charcoal: #171512;
  --cb-muted: #70685e;
  --cb-paper: #f7f2e9;
  --cb-cream: #eadfce;
  --cb-stone: #d7c7b3;
  --cb-red: #a92d28;
  --cb-red-dark: #681815;
  --cb-green: #203b2c;
  --cb-gold: #cda760;
  --cb-gold-soft: #f3d58d;
  --cb-copper: #8b3e2f;
  --cb-white: #ffffff;
  --cb-line: rgba(255, 255, 255, 0.16);
  --cb-radius: 0;
  --cb-shadow-soft: 0 12px 32px rgba(8, 8, 7, 0.08);
  --cb-shadow: 0 22px 64px rgba(8, 8, 7, 0.16);
  --cb-shadow-lift: 0 28px 82px rgba(8, 8, 7, 0.22);
  --cb-shadow-deep: 0 34px 120px rgba(0, 0, 0, 0.38);
  --cb-texture-light:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 1px 1px, rgba(8, 8, 7, 0.035) 1px, transparent 0);
  --cb-texture-dark:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0) 48%),
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.042) 1px, transparent 0);
  font-family: "Georgia", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0) 420px),
    radial-gradient(circle at 1px 1px, rgba(8, 8, 7, 0.035) 1px, transparent 0) 0 0 / 18px 18px,
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.28) 0 1px, transparent 1px 44px),
    var(--cb-paper);
  color: var(--cb-ink);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.58;
}

::selection {
  background: var(--cb-gold);
  color: var(--cb-ink);
}

a {
  color: var(--cb-red-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

a:hover {
  color: var(--cb-red);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.96), rgba(24, 17, 14, 0.94)),
    rgba(8, 8, 7, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-brand {
  align-items: center;
  color: var(--cb-white);
  display: inline-flex;
  gap: 14px;
  text-decoration: none;
}

.site-brand__mark {
  align-items: center;
  background: var(--cb-ink);
  border: 1px solid rgba(243, 213, 141, 0.28);
  border-radius: var(--cb-radius);
  display: inline-flex;
  flex: 0 0 auto;
  height: 54px;
  justify-content: center;
  padding: 6px;
  width: 58px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.site-brand__mark img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.site-brand__text {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.site-brand strong {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.08rem, 1.7vw, 1.38rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
}

.site-brand__text > span {
  color: var(--cb-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.primary-nav ul,
.primary-nav .menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav li {
  margin: 0;
}

.primary-nav a {
  border: 1px solid transparent;
  border-radius: var(--cb-radius);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  font-weight: 760;
  padding: 8px 13px;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.primary-nav a:hover,
.primary-nav .current-menu-item a {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--cb-white);
  transform: translateY(-1px);
}

.primary-nav li:last-child a,
.primary-nav > a:last-child {
  background: var(--cb-gold);
  border-color: var(--cb-gold);
  color: var(--cb-ink);
}

.primary-nav li:last-child a:hover,
.primary-nav > a:last-child:hover {
  background: var(--cb-gold-soft);
  border-color: var(--cb-gold-soft);
}

a:focus-visible,
button:focus-visible,
.wp-block-button__link:focus-visible {
  outline: 3px solid rgba(205, 167, 96, 0.6);
  outline-offset: 3px;
}

.site-main {
  min-height: 72vh;
}

.colemans-single-post {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0) 360px),
    var(--cb-paper);
}

.colemans-single-post__header {
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.96), rgba(27, 19, 15, 0.94)),
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 0) 0 0 / 20px 20px,
    var(--cb-ink);
  border-bottom: 4px solid var(--cb-gold);
  color: var(--cb-white);
  padding: clamp(42px, 6vw, 88px) 22px clamp(30px, 4.5vw, 58px);
}

.colemans-single-post__header-inner {
  margin: 0 auto;
  max-width: 960px;
}

.colemans-single-post__eyebrow {
  color: var(--cb-gold-soft);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.colemans-single-post h1 {
  color: var(--cb-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 5.4vw, 5rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
  max-width: 11em;
  text-wrap: balance;
}

.colemans-single-post__meta {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 760;
  margin-top: 16px;
}

.colemans-single-post__body {
  margin: 0 auto;
  max-width: 960px;
  padding: clamp(24px, 4.5vw, 54px) 22px clamp(44px, 6vw, 84px);
}

.colemans-single-post__featured {
  background: var(--cb-charcoal);
  border: 1px solid rgba(8, 8, 7, 0.16);
  box-shadow: var(--cb-shadow);
  margin: 0 0 clamp(24px, 4vw, 42px);
  overflow: hidden;
}

.colemans-single-post__image {
  display: block;
  height: auto;
  max-height: min(68vh, 640px);
  object-fit: contain;
  width: 100%;
}

.colemans-single-post__content {
  background: rgba(255, 253, 248, 0.72);
  border-left: 4px solid var(--cb-gold);
  color: var(--cb-ink);
  font-size: clamp(1.04rem, 1.35vw, 1.2rem);
  line-height: 1.72;
  max-width: 760px;
  padding: clamp(18px, 3vw, 34px);
}

.colemans-single-post__content > *:first-child {
  margin-top: 0;
}

.colemans-single-post__content > *:last-child {
  margin-bottom: 0;
}

.colemans-single-post__content p,
.colemans-single-post__content li {
  max-width: 68ch;
}

.colemans-single-post__content img {
  height: auto;
  max-width: 100%;
}

.colemans-single-post__footer {
  display: flex;
  margin-top: 28px;
}

.colemans-single-post__back {
  background: var(--cb-green);
  border: 1px solid var(--cb-green);
  color: var(--cb-paper);
  display: inline-flex;
  font-weight: 850;
  min-height: 46px;
  padding: 10px 14px;
  text-decoration: none;
}

.colemans-single-post__back:visited {
  color: var(--cb-paper);
}

.colemans-single-post__back:hover,
.colemans-single-post__back:focus-visible {
  background: var(--cb-charcoal);
  border-color: var(--cb-charcoal);
  color: var(--cb-white);
}

.poster-hero {
  background:
    linear-gradient(110deg, rgba(9, 8, 7, 0.98) 0%, rgba(20, 14, 11, 0.98) 46%, rgba(82, 22, 18, 0.52) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 82px),
    var(--cb-ink);
  color: var(--cb-white);
  min-height: min(610px, calc(100vh - 122px));
  overflow: hidden;
  padding: clamp(34px, 5vw, 72px) 22px clamp(28px, 4.5vw, 56px);
  position: relative;
  isolation: isolate;
}

.poster-hero::before {
  background:
    linear-gradient(180deg, rgba(205, 167, 96, 0.18), transparent 34%),
    linear-gradient(125deg, transparent 0 58%, rgba(205, 167, 96, 0.16) 58% 58.4%, transparent 58.4%),
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.045) 1px, transparent 0);
  background-size: auto, auto, 20px 20px;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.poster-hero::after {
  background: linear-gradient(90deg, var(--cb-gold), var(--cb-red), var(--cb-green));
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  width: 100%;
}

.wp-block-group.poster-hero {
  margin-top: 0;
  margin-bottom: 0;
}

.poster-hero__inner {
  align-items: center;
  display: grid;
  gap: clamp(30px, 5vw, 64px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  margin: 0 auto;
  max-width: 1180px;
  width: min(1180px, calc(100vw - 44px));
}

.poster-hero__copy {
  min-width: 0;
  padding: 0;
  width: 100%;
}

.poster-logo {
  align-items: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0)),
    rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(243, 213, 141, 0.25);
  border-radius: var(--cb-radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  display: inline-flex;
  justify-content: center;
  margin: 0 0 16px;
  opacity: 0.94;
  padding: 8px;
  width: clamp(76px, 7vw, 104px);
}

.poster-logo img {
  display: block;
  height: auto;
  width: 100%;
}

.poster-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.9rem, 4.35vw, 4.75rem);
  line-height: 0.94;
  margin: 0;
  max-width: 10.8em;
  text-transform: none;
  text-wrap: balance;
}

.poster-hero p {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
  max-width: 580px;
}

.poster-hero__details {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--cb-white);
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
  padding-top: 15px;
}

.poster-hero__details p {
  font-size: 0.96rem;
  margin: 0;
}

.poster-hero__details strong {
  color: var(--cb-gold);
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.poster-strap {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(243, 213, 141, 0.26);
  color: rgba(255, 255, 255, 0.82);
  display: inline-flex;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 760;
  letter-spacing: 0.02em;
  margin-top: 18px;
  padding: 9px 13px;
}

.proof-band {
  background:
    linear-gradient(90deg, #0c0b0a, #17100d),
    var(--cb-ink);
  border-bottom: 1px solid rgba(8, 8, 7, 0.16);
  color: var(--cb-white);
  padding: 14px 22px;
}

.wp-block-group.proof-band {
  margin-top: 0;
  margin-bottom: 0;
}

.sve-page .sve-section--label-harbour-strip.sve-section--has-bg::before,
.sve-page .sve-section--label-harbour-strip-lower.sve-section--has-bg::before {
  background:
    linear-gradient(180deg, rgba(8, 8, 7, 0.06), rgba(8, 8, 7, 0.2)),
    linear-gradient(90deg, rgba(8, 8, 7, 0.08), rgba(8, 8, 7, 0.16));
}

.sve-page .sve-section--label-harbour-strip.sve-section--has-bg::after,
.sve-page .sve-section--label-harbour-strip-lower.sve-section--has-bg::after {
  opacity: 0.16;
}

.sve-page .sve-section--label-hero.sve-section--has-bg::before {
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.18) 0%, rgba(8, 8, 7, 0.18) 38%, rgba(8, 8, 7, 0.36) 70%, rgba(8, 8, 7, 0.56) 100%),
    linear-gradient(180deg, rgba(8, 8, 7, 0.04), rgba(8, 8, 7, 0.26));
}

.sve-page .sve-section--label-hero.sve-section--has-bg::after {
  opacity: 0.32;
}

.hero-proof {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
}

.hero-proof p {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(243, 213, 141, 0.16);
  border-radius: var(--cb-radius);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.35;
  margin: 0;
  padding: 12px;
}

.hero-proof strong {
  color: var(--cb-gold-soft);
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.poster-mosaic {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, transparent 0) 0 0 / 18px 18px,
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(243, 213, 141, 0.24);
  border-radius: var(--cb-radius);
  box-shadow: var(--cb-shadow-deep);
  display: grid;
  gap: 10px;
  grid-auto-rows: clamp(46px, 4.6vw, 60px);
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 0;
  min-width: 0;
  overflow: hidden;
  padding: 10px;
  width: 100%;
  position: relative;
  transform: rotate(1.2deg);
}

.poster-mosaic__tile {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0;
  display: block;
  margin: 0;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.poster-mosaic__tile img {
  display: block;
  height: 100%;
  object-fit: contain;
  transition: transform 500ms ease, filter 500ms ease;
  width: 100%;
}

.poster-mosaic__tile::after {
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.32));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.poster-mosaic:hover .poster-mosaic__tile img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.018);
}

.poster-mosaic__tile--wide {
  grid-column: 1 / -1;
  grid-row: span 3;
}

.poster-mosaic__tile--half {
  grid-column: span 3;
  grid-row: span 2;
}

.poster-mosaic__tile--third {
  grid-column: span 2;
  grid-row: span 2;
}

.hero {
  min-height: min(760px, calc(100vh - 74px));
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(37, 26, 21, 0.86) 0%, rgba(37, 26, 21, 0.62) 42%, rgba(37, 26, 21, 0.14) 78%),
    var(--hero-image, none) center/cover no-repeat;
  color: var(--cb-white);
}

.wp-block-cover.hero {
  align-items: end;
  overflow: hidden;
  padding: 0;
}

.wp-block-cover.hero .wp-block-cover__background {
  background:
    linear-gradient(90deg, rgba(37, 26, 21, 0.9) 0%, rgba(37, 26, 21, 0.68) 42%, rgba(37, 26, 21, 0.16) 78%) !important;
  opacity: 1 !important;
}

.wp-block-cover.hero .wp-block-cover__inner-container {
  color: inherit;
  width: min(1180px, calc(100vw - 44px));
}

.wp-block-cover.hero .wp-block-cover__image-background {
  object-position: center 45%;
}

.hero__inner {
  width: min(1180px, calc(100vw - 44px));
  margin: 0 auto;
  padding: clamp(76px, 11vw, 150px) 22px clamp(54px, 8vw, 86px);
}

.hero__content {
  max-width: 680px;
  padding: clamp(58px, 8vw, 112px) 22px clamp(38px, 6vw, 62px);
}

.hero-logo {
  align-items: center;
  background: #070504;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--cb-radius);
  display: inline-flex;
  justify-content: center;
  margin: 0 0 16px;
  padding: 8px;
  width: clamp(96px, 11vw, 132px);
}

.hero-logo img {
  display: block;
  height: auto;
  width: 100%;
}

.eyebrow {
  color: var(--cb-red);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: currentColor;
  content: "";
  display: inline-block;
  height: 1px;
  margin-right: 10px;
  transform: translateY(-0.24em);
  width: 28px;
}

.hero .eyebrow,
.poster-hero .eyebrow,
.page-intro .eyebrow,
.section--black .eyebrow,
.section--green .eyebrow {
  color: var(--cb-gold);
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 7vw, 5.55rem);
  line-height: 0.94;
  margin: 0;
  max-width: 12ch;
  text-wrap: balance;
}

.page-intro h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 8vw, 6.2rem);
  line-height: 0.94;
  margin: 0;
  max-width: 12ch;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 610px;
}

.hero__actions,
.action-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  align-items: center;
  background: var(--cb-white);
  border: 1px solid var(--cb-white);
  border-radius: var(--cb-radius);
  color: var(--cb-ink);
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
}

.wp-block-button .wp-block-button__link {
  align-items: center;
  background: var(--cb-white);
  border: 1px solid var(--cb-white);
  border-radius: var(--cb-radius);
  color: var(--cb-ink);
  display: inline-flex;
  font-weight: 820;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  text-decoration: none;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
}

.wp-block-button .wp-block-button__link:hover {
  background: var(--cb-gold);
  border-color: var(--cb-gold);
  color: var(--cb-ink);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}

.section:not(.section--black):not(.section--green) .wp-block-button .wp-block-button__link {
  background: var(--cb-ink);
  border-color: var(--cb-ink);
  color: var(--cb-white);
}

.section:not(.section--black):not(.section--green) .wp-block-button .wp-block-button__link:hover {
  background: var(--cb-red);
  border-color: var(--cb-red);
  color: var(--cb-white);
}

.button:hover {
  background: var(--cb-gold);
  border-color: var(--cb-gold);
  color: var(--cb-ink);
}

.button--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.72);
}

.wp-block-button.button--ghost .wp-block-button__link {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--cb-white);
}

.wp-block-button.button--ghost .wp-block-button__link:hover {
  background: var(--cb-white);
  border-color: var(--cb-white);
  color: var(--cb-ink);
}

.button[style*="#203b2c"],
.button[style*="#203B2C"],
.button[style*="rgb(32, 59, 44)"],
.button[style*="rgba(32, 59, 44"],
.wp-block-button .wp-block-button__link[style*="#203b2c"],
.wp-block-button .wp-block-button__link[style*="#203B2C"],
.wp-block-button .wp-block-button__link[style*="rgb(32, 59, 44)"],
.wp-block-button .wp-block-button__link[style*="rgba(32, 59, 44"],
.sve-page .sve-button[style*="#203b2c"],
.sve-page .sve-button[style*="#203B2C"],
.sve-page .sve-button[style*="rgb(32, 59, 44)"],
.sve-page .sve-button[style*="rgba(32, 59, 44"] {
  color: var(--cb-cream) !important;
}

.button[style*="#203b2c"] *,
.button[style*="#203B2C"] *,
.button[style*="rgb(32, 59, 44)"] *,
.button[style*="rgba(32, 59, 44"] *,
.wp-block-button .wp-block-button__link[style*="#203b2c"] *,
.wp-block-button .wp-block-button__link[style*="#203B2C"] *,
.wp-block-button .wp-block-button__link[style*="rgb(32, 59, 44)"] *,
.wp-block-button .wp-block-button__link[style*="rgba(32, 59, 44"] *,
.sve-page .sve-button[style*="#203b2c"] *,
.sve-page .sve-button[style*="#203B2C"] *,
.sve-page .sve-button[style*="rgb(32, 59, 44)"] *,
.sve-page .sve-button[style*="rgba(32, 59, 44"] * {
  color: inherit !important;
}

.button[style*="#203b2c"]:hover,
.button[style*="#203B2C"]:hover,
.button[style*="rgb(32, 59, 44)"]:hover,
.button[style*="rgba(32, 59, 44"]:hover,
.button[style*="#203b2c"]:focus-visible,
.button[style*="#203B2C"]:focus-visible,
.button[style*="rgb(32, 59, 44)"]:focus-visible,
.button[style*="rgba(32, 59, 44"]:focus-visible,
.wp-block-button .wp-block-button__link[style*="#203b2c"]:hover,
.wp-block-button .wp-block-button__link[style*="#203B2C"]:hover,
.wp-block-button .wp-block-button__link[style*="rgb(32, 59, 44)"]:hover,
.wp-block-button .wp-block-button__link[style*="rgba(32, 59, 44"]:hover,
.wp-block-button .wp-block-button__link[style*="#203b2c"]:focus-visible,
.wp-block-button .wp-block-button__link[style*="#203B2C"]:focus-visible,
.wp-block-button .wp-block-button__link[style*="rgb(32, 59, 44)"]:focus-visible,
.wp-block-button .wp-block-button__link[style*="rgba(32, 59, 44"]:focus-visible,
.sve-page .sve-button[style*="#203b2c"]:hover,
.sve-page .sve-button[style*="#203B2C"]:hover,
.sve-page .sve-button[style*="rgb(32, 59, 44)"]:hover,
.sve-page .sve-button[style*="rgba(32, 59, 44"]:hover,
.sve-page .sve-button[style*="#203b2c"]:focus-visible,
.sve-page .sve-button[style*="#203B2C"]:focus-visible,
.sve-page .sve-button[style*="rgb(32, 59, 44)"]:focus-visible,
.sve-page .sve-button[style*="rgba(32, 59, 44"]:focus-visible {
  color: var(--cb-white) !important;
}

.button--ghost:hover {
  background: var(--cb-white);
  color: var(--cb-ink);
}

.section {
  background:
    var(--cb-texture-light),
    var(--cb-paper);
  background-size: auto, 18px 18px, auto;
  color: var(--cb-ink);
  padding: clamp(66px, 9vw, 112px) 22px;
  position: relative;
}

.wp-block-group.section {
  margin-top: 0;
  margin-bottom: 0;
}

.section--cream {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 1px 1px, rgba(8, 8, 7, 0.035) 1px, transparent 0) 0 0 / 18px 18px,
    #efe4d4;
}

.section--black {
  background:
    linear-gradient(135deg, rgba(139, 62, 47, 0.22), transparent 42%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 86px),
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0) 0 0 / 20px 20px,
    #0c0b0a;
  color: var(--cb-white);
}

.section--black .lead {
  color: rgba(255, 255, 255, 0.78);
}

.section--green {
  background:
    linear-gradient(130deg, rgba(205, 167, 96, 0.16), transparent 36%),
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0) 0 0 / 20px 20px,
    #183826;
  color: var(--cb-white);
}

.section--green a {
  color: #f6d391;
}

.wrap {
  width: min(1180px, calc(100vw - 44px));
  margin: 0 auto;
}

.wp-block-group.wrap {
  width: min(1180px, calc(100vw - 44px));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.section h2,
.page-intro h1 {
  font-family: Georgia, "Times New Roman", serif;
}

.section h2 {
  font-size: clamp(2.05rem, 4vw, 4.05rem);
  line-height: 0.98;
  margin: 0 0 20px;
  max-width: 14ch;
  text-transform: none;
  text-wrap: balance;
}

.section h3 {
  font-size: 1.15rem;
  line-height: 1.16;
  margin: 0 0 10px;
}

.lead {
  color: var(--cb-muted);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  max-width: 760px;
}

.section--green .lead {
  color: rgba(255, 255, 255, 0.78);
}

.fact-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 240, 0.96)),
    radial-gradient(circle at 1px 1px, rgba(8, 8, 7, 0.035) 1px, transparent 0) 0 0 / 16px 16px,
    var(--cb-white);
  border: 1px solid rgba(8, 8, 7, 0.12);
  border-radius: var(--cb-radius);
  box-shadow: var(--cb-shadow-soft);
  color: var(--cb-ink);
  padding: 26px;
  position: relative;
}

.fact-panel::before {
  background: linear-gradient(180deg, var(--cb-gold), var(--cb-red));
  content: "";
  height: calc(100% - 22px);
  left: 10px;
  opacity: 0.86;
  pointer-events: none;
  position: absolute;
  top: 11px;
  width: 3px;
}

.fact-panel p {
  margin: 0 0 14px;
}

.fact-panel p:last-child {
  margin-bottom: 0;
}

.fact-panel strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

.feature {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 240, 0.95)),
    radial-gradient(circle at 1px 1px, rgba(8, 8, 7, 0.032) 1px, transparent 0) 0 0 / 16px 16px,
    var(--cb-white);
  border: 1px solid rgba(8, 8, 7, 0.1);
  border-radius: var(--cb-radius);
  box-shadow: var(--cb-shadow-soft);
  color: var(--cb-ink);
  overflow: hidden;
  padding: 24px;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.feature__image,
.fact-panel__image {
  background: var(--cb-stone);
  display: block;
}

.feature__image {
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid rgba(8, 8, 7, 0.12);
  margin: -24px -24px 22px;
  overflow: hidden;
}

.fact-panel--with-image {
  overflow: hidden;
  padding-top: 0;
}

.fact-panel__image {
  aspect-ratio: 16 / 11;
  border-bottom: 1px solid rgba(8, 8, 7, 0.12);
  margin: 0 -26px 24px;
}

.feature__image img,
.fact-panel__image img {
  display: block;
  height: 100%;
  object-fit: contain;
  transition: transform 500ms ease, filter 500ms ease;
  width: 100%;
}

.feature:hover {
  box-shadow: var(--cb-shadow-lift);
  transform: translateY(-4px);
}

.feature:hover .feature__image img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.018);
}

.image-band {
  margin-top: 26px;
}

.image-band__item {
  aspect-ratio: 4 / 3;
  background: var(--cb-stone);
  border: 1px solid rgba(8, 8, 7, 0.1);
  border-radius: var(--cb-radius);
  box-shadow: var(--cb-shadow-soft);
  display: block;
  margin: 0;
  overflow: hidden;
}

.image-band__item img {
  display: block;
  height: 100%;
  object-fit: contain;
  transition: transform 500ms ease, filter 500ms ease;
  width: 100%;
}

.image-band__item:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.018);
}

.sve-page .sve-section--label-proof-points {
  background: #171512 !important;
  overflow: hidden;
  padding: clamp(32px, 5.5vw, 76px) 0 !important;
}

.sve-page .sve-section--label-proof-points .sve-section-inner {
  margin: 0 auto;
  width: min(1120px, calc(100vw - 32px));
}

.colemans-proof-collage {
  background: transparent;
  box-shadow: none;
  display: grid;
  gap: clamp(8px, 1vw, 12px);
  justify-items: center;
  margin: 0 auto;
  min-width: 0;
  padding: 0;
  width: 100%;
}

.colemans-proof-collage__row {
  display: flex;
  gap: clamp(8px, 1vw, 12px);
  height: clamp(136px, 14vw, 210px);
  justify-content: center;
  margin: 0 auto;
  max-width: 100%;
  min-width: 0;
  width: max-content;
}

.colemans-proof-collage__row--top {
  width: min(100%, 1040px);
}

.colemans-proof-collage__row--middle {
  width: min(100%, 880px);
}

.colemans-proof-collage__row--bottom {
  width: min(100%, 1000px);
}

.colemans-proof-collage__tile {
  flex: 0 1 var(--proof-tile-width, 230px);
  height: 100%;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.colemans-proof-collage__tile--narrow {
  --proof-tile-width: 170px;
}

.colemans-proof-collage__tile--medium {
  --proof-tile-width: 220px;
}

.colemans-proof-collage__tile--wide {
  --proof-tile-width: 290px;
}

.colemans-proof-collage__tile--image {
  background: #171512;
  border: 1px solid rgba(255, 255, 255, 0.92);
}

.colemans-proof-collage__tile--text {
  align-content: center;
  --proof-tile-width: 260px;
  background:
    linear-gradient(135deg, rgba(205, 167, 96, 0.96), rgba(139, 62, 47, 0.9)),
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.12) 1px, transparent 0) 0 0 / 18px 18px,
    var(--cb-gold);
  color: var(--cb-white);
  display: grid;
  gap: 10px;
  padding: clamp(18px, 2.4vw, 34px);
}

.colemans-proof-collage__tile--green {
  background:
    linear-gradient(135deg, rgba(32, 59, 44, 0.96), rgba(23, 21, 18, 0.94)),
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 0) 0 0 / 18px 18px,
    var(--cb-green);
}

.colemans-proof-collage__tile--red {
  background:
    linear-gradient(135deg, rgba(23, 21, 18, 0.96), rgba(104, 24, 21, 0.92)),
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.055) 1px, transparent 0) 0 0 / 18px 18px,
    var(--cb-charcoal);
}

.colemans-proof-collage__tile--text h3 {
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.25vw, 2.25rem);
  line-height: 1;
  margin: 0;
}

.colemans-proof-collage__tile--text p {
  color: inherit;
  font-size: clamp(0.92rem, 1.25vw, 1.08rem);
  line-height: 1.46;
  margin: 0;
}

.colemans-proof-collage__image {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  transition: opacity 1200ms ease;
  width: 100%;
}

.colemans-proof-collage__image--base {
  opacity: 1;
}

.feature strong {
  color: var(--cb-red);
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.feature p {
  margin: 0;
}

.colemans-blog-list {
  display: grid;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.colemans-blog-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 240, 0.95)),
    radial-gradient(circle at 1px 1px, rgba(8, 8, 7, 0.032) 1px, transparent 0) 0 0 / 16px 16px,
    var(--cb-white);
  border: 1px solid rgba(8, 8, 7, 0.1);
  border-radius: var(--cb-radius);
  box-shadow: var(--cb-shadow-soft);
  color: var(--cb-ink);
  padding: clamp(22px, 4vw, 34px);
}

.colemans-blog-card__image {
  aspect-ratio: 4 / 3;
  border-radius: var(--cb-radius);
  display: block;
  margin: 0 0 22px;
  overflow: hidden;
}

.colemans-blog-card__image img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.colemans-blog-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.03;
  margin: 0 0 14px;
  max-width: 18ch;
}

.colemans-blog-card h2 a {
  color: var(--cb-ink);
  text-decoration: none;
}

.colemans-blog-card h2 a:hover,
.colemans-latest-posts a:hover {
  color: var(--cb-red);
}

.colemans-blog-card .wp-block-post-excerpt {
  color: var(--cb-muted);
  margin: 0;
  max-width: 72ch;
}

.colemans-blog-card .wp-block-post-excerpt__more-link,
.wp-block-query-pagination a {
  color: var(--cb-red);
  font-weight: 800;
  text-decoration: none;
}

.wp-block-query-pagination {
  margin-top: 28px;
}

.colemans-latest-posts {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.colemans-latest-posts li {
  border-bottom: 1px solid rgba(37, 26, 21, 0.1);
  min-height: 74px;
  margin: 0 0 16px;
  padding: 0 0 16px;
}

.colemans-latest-posts li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.colemans-latest-posts a {
  color: var(--cb-ink);
  display: inline-block;
  font-size: 1.04rem;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
}

.colemans-latest-posts .wp-block-latest-posts__post-date {
  color: var(--cb-red);
  display: block;
  font-size: 0.78rem;
  font-weight: 850;
  margin-top: 5px;
  text-transform: uppercase;
}

.colemans-latest-posts .wp-block-latest-posts__post-excerpt {
  color: var(--cb-muted);
  font-size: 0.95rem;
  margin: 8px 0 0;
}

.colemans-latest-posts .wp-block-latest-posts__featured-image {
  border-radius: 0;
  height: 64px;
  margin: 0 12px 8px 0;
  overflow: hidden;
  width: 82px;
}

.colemans-latest-posts .wp-block-latest-posts__featured-image img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.sve-page .sve-section--label-gallery .sve-section-inner {
  width: min(1220px, calc(100vw - 44px));
}

.sve-page .sve-section--label-gallery .sve-gallery {
  background: transparent;
  box-shadow: none;
  gap: 8px;
  padding: 0;
}

.sve-page .sve-section--label-gallery .sve-gallery figure {
  background: #ffffff;
  border: 1px solid #ffffff;
  box-shadow: none;
}

.sve-page .sve-section--label-gallery .sve-gallery figure:hover {
  box-shadow: none;
  transform: none;
}

.sve-page .sve-section--label-gallery .sve-gallery img {
  height: var(--sve-gallery-image-height, 285px);
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.sve-page .sve-section--label-gallery .sve-gallery figure:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.012);
}

.sve-page .sve-section--label-instagram {
  display: none;
}

.sve-page .sve-section--label-instagram .sve-section-inner {
  width: min(1220px, calc(100vw - 44px));
}

.colemans-instagram-feed {
  background: #ffffff;
  box-shadow: 0 24px 72px rgba(37, 26, 21, 0.13);
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 26px 0 0;
  padding: 8px;
}

.colemans-instagram-feed__item {
  background: var(--cb-charcoal);
  color: var(--cb-ink);
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  text-decoration: none;
  transition: filter 180ms ease, transform 180ms ease;
}

.colemans-instagram-feed__item:hover {
  filter: saturate(1.06) contrast(1.02);
  transform: translateY(-2px);
}

.colemans-instagram-feed__media {
  aspect-ratio: 1;
  background: #ffffff;
  display: block;
  overflow: hidden;
}

.colemans-instagram-feed__media img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms ease;
  width: 100%;
}

.colemans-instagram-feed__item:hover img {
  transform: scale(1.018);
}

.colemans-instagram-feed__caption {
  background: #ffffff;
  color: #4f463d;
  display: block;
  font-size: 0.82rem;
  font-weight: 720;
  line-height: 1.35;
  min-height: 4.4em;
  padding: 10px;
}

@media (max-width: 800px) {
  .sve-page .sve-section--parallax {
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
  }

  .sve-page .sve-section--parallax::before {
    background:
      linear-gradient(180deg, rgba(8, 8, 7, 0.1), rgba(8, 8, 7, 0.24)),
      linear-gradient(90deg, rgba(8, 8, 7, 0.08), rgba(8, 8, 7, 0.16));
  }

  .sve-page .sve-section--label-gallery .sve-section-inner {
    width: min(100%, calc(100vw - 20px));
  }

  .sve-page .sve-section--label-gallery .sve-gallery {
    gap: 6px;
    padding: 0;
  }

  .sve-page .sve-section--label-gallery .sve-gallery img {
    height: clamp(290px, 82vw, 430px);
  }

  .sve-page .sve-section--label-harbour-strip,
  .sve-page .sve-section--label-harbour-strip-lower,
  .sve-page .sve-section--label-tools-strip,
  .sve-page .sve-section--label-tools-strip-lower {
    min-height: clamp(170px, 46vw, 260px) !important;
  }

  .sve-page .sve-section--label-tools-strip,
  .sve-page .sve-section--label-tools-strip-lower {
    background-repeat: no-repeat !important;
    background-size: cover !important;
  }

  .sve-page .sve-section--label-harbour-strip,
  .sve-page .sve-section--label-harbour-strip-lower {
    background-repeat: no-repeat !important;
    background-size: cover !important;
  }
}

.page-intro {
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.96), rgba(45, 15, 12, 0.84)),
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.044) 1px, transparent 0) 0 0 / 20px 20px,
    var(--cb-ink);
  color: var(--cb-white);
  padding: clamp(70px, 10vw, 124px) 22px clamp(52px, 7vw, 84px);
  position: relative;
  overflow: hidden;
}

.page-intro::after {
  background: linear-gradient(90deg, var(--cb-gold), var(--cb-red), var(--cb-green));
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  width: 100%;
}

.wp-block-group.page-intro {
  margin-top: 0;
  margin-bottom: 0;
}

.page-intro__content {
  width: min(1180px, calc(100vw - 44px));
  margin: 0 auto;
}

.page-intro h1 {
  max-width: 13ch;
  text-transform: none;
}

.page-intro p {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  max-width: 760px;
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours-list li {
  border-bottom: 1px solid rgba(37, 26, 21, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
}

.hours-list li:last-child {
  border-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.55fr);
  gap: clamp(24px, 5vw, 64px);
}

.contact-map {
  background: var(--cb-stone);
  border: 1px solid rgba(8, 8, 7, 0.12);
  border-radius: var(--cb-radius);
  box-shadow: var(--cb-shadow-soft);
  margin-top: 24px;
  overflow: hidden;
}

.contact-map iframe {
  aspect-ratio: 16 / 11;
  border: 0;
  display: block;
  min-height: 320px;
  width: 100%;
}

.site-footer {
  background:
    linear-gradient(90deg, #080807, #17100d),
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0) 0 0 / 20px 20px,
    var(--cb-ink);
  border-top: 4px solid var(--cb-gold);
  color: rgba(255, 255, 255, 0.76);
  padding: 34px 22px;
}

.site-footer__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  width: 100%;
}

.site-footer strong {
  color: var(--cb-white);
}

.site-footer a {
  color: var(--cb-white);
}

.legal-page {
  max-width: 860px;
}

.legal-page h2 {
  margin-top: clamp(26px, 4vw, 42px);
}

.legal-page p,
.legal-page li {
  max-width: 72ch;
}

@media (max-width: 760px) {
  .site-header__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .site-brand__mark {
    height: 56px;
    width: 60px;
  }

  .primary-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
    width: 100%;
  }

  .primary-nav ul,
  .primary-nav .menu {
    justify-content: flex-start;
  }

  .primary-nav a {
    padding: 7px 9px;
    white-space: nowrap;
  }

  .poster-hero {
    min-height: 0;
    padding-top: 28px;
  }

  .poster-hero__inner {
    gap: 22px;
    grid-template-columns: 1fr;
  }

  .poster-hero__copy {
    padding-top: 20px;
    padding-bottom: 0;
  }

  .poster-logo {
    display: none;
  }

  .poster-hero__details {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .poster-hero h1 {
    font-size: clamp(2.35rem, 11vw, 2.95rem);
    max-width: 100%;
  }

  .poster-mosaic {
    grid-auto-rows: minmax(132px, 34vw);
    grid-template-columns: 1fr;
    transform: none;
  }

  .poster-mosaic__tile--wide {
    grid-column: 1 / -1;
    grid-row: span 1;
  }

  .poster-mosaic__tile--half,
  .poster-mosaic__tile--third {
    display: none;
  }

  .colemans-proof-collage {
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: stretch;
    padding: 0;
  }

  .colemans-proof-collage__row {
    display: contents;
  }

  .colemans-proof-collage__tile {
    flex-basis: auto;
    grid-column: span 1;
    height: clamp(142px, 42vw, 200px);
    width: 100%;
  }

  .colemans-proof-collage__tile--text {
    grid-column: 1 / -1;
    height: auto;
    min-height: clamp(150px, 44vw, 210px);
    padding: 18px;
  }

  .colemans-proof-collage__tile--mobile-full {
    grid-column: 1 / -1;
    height: clamp(190px, 56vw, 280px);
  }

  .colemans-instagram-feed {
    gap: 6px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 6px;
  }

  .colemans-instagram-feed__caption {
    font-size: 0.78rem;
    min-height: 4.2em;
    padding: 9px;
  }

  .hero {
    min-height: 680px;
    background-position: 60% center;
  }

  .hero-logo {
    margin-bottom: 12px;
    width: 86px;
  }

  .split,
  .contact-grid,
  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }

  .hours-list li {
    align-items: baseline;
    flex-direction: row;
    gap: 12px;
  }

  .hours-list li > span:first-child {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .hours-list li > span:last-child {
    margin-left: auto;
    text-align: right;
    white-space: nowrap;
  }

  .colemans-opening-times__special-list li > span:last-child {
    white-space: normal;
  }
}
