:root {
  --pink: #ffb6c1;
  --mint: #7ed7c1;
  --gold: #d4af37;
  --black: #2b2b2b;
  --white: #fafafa;
  --muted: rgba(43, 43, 43, 0.78);
  --shadow-soft: 0 20px 60px rgba(43, 43, 43, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  background: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--black);
}

h1 {
  font-size: 20px;
  font-weight: 700;
}

h2,
h3 {
  font-size: 18px;
  font-weight: 700;
}

.layout-shell {
  min-height: 100vh;
}

.site-main {
  min-height: calc(100vh - 120px);
}

.page-shell,
.page-shell--editorial,
.header-inner,
.nav-sheet,
.footer-stack {
  width: min(760px, calc(100vw - 36px));
}

.page-shell {
  margin: 0 auto;
  padding: 0 0 48px;
}

.page-shell--editorial {
  margin: 0 auto;
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 24px 18px 12px;
  background: transparent;
}

.header-inner {
  position: relative;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 999px;
  box-shadow: 0 8px 30px rgba(43, 43, 43, 0.08);
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: var(--gold);
  white-space: nowrap;
  min-width: 0;
}

.brand-pill span {
  white-space: nowrap;
}

.brand-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex: 0 0 auto;
}

.header-spacer {
  width: 42px;
  height: 42px;
  justify-self: end;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 0 0 0 6px;
  border: 0;
  background: transparent;
  appearance: none;
}

.menu-toggle span {
  display: block;
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: var(--black);
}

.nav-sheet {
  position: absolute;
  left: 50%;
  top: calc(100% + 12px);
  transform: translateX(-50%);
  margin: 0;
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
  z-index: 70;
}

.nav-sheet a,
.nav-sheet__parent {
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 700;
}

.nav-sheet a:hover,
.nav-sheet__parent:hover {
  background: rgba(255, 182, 193, 0.14);
}

.nav-sheet__group,
.nav-sheet__children {
  display: grid;
  gap: 8px;
}

.nav-sheet__parent {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: transparent;
  color: inherit;
  text-align: left;
}

.nav-sheet__parent .bi {
  font-size: 14px;
  transition: transform 160ms ease;
}

.nav-sheet__parent[aria-expanded="true"] .bi {
  transform: rotate(180deg);
}

.nav-sheet__child {
  margin-left: 18px;
  padding-left: 18px !important;
  color: var(--muted);
  font-size: 14px;
  position: relative;
}

.nav-sheet__child::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--mint);
  transform: translateY(-50%);
}

.home-top-image,
.blog-article-layout__media {
  padding: 0 18px;
}

.home-top-image__media,
.blog-article-layout__image,
.recent-post-card__image,
.blog-card-image {
  width: 100%;
  object-fit: cover;
}

.home-top-image__media {
  min-height: 220px;
  max-height: 280px;
}

.home-welcome,
.recent-posts-section,
.announcement-block,
.article-shell,
.legal-shell {
  padding: 24px 18px;
}

.home-welcome,
.recent-posts-section,
.announcement-block {
  display: grid;
  gap: 18px;
}

.home-welcome {
  gap: 10px;
}

.home-welcome p {
  margin: 0;
  line-height: 1.45;
}

.home-partner-banner {
  padding: 0 18px;
}

.home-partner-banner a {
  display: block;
}

.home-partner-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.announcement-block {
  margin: 0 18px;
  border-radius: 24px;
  background: #fbe4e7;
}

.announcement-block p {
  margin: 0;
  line-height: 1.45;
}

.blog-hero,
.content-stack,
.blog-grid,
.blog-card-body,
.blog-card-meta {
  display: grid;
  gap: 16px;
}

.blog-hero {
  padding: 18px;
}

.content-stack--blog-index {
  padding: 0 18px;
}

.hero-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.empty-state {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.recent-posts-grid {
  display: grid;
  gap: 30px;
}

.recent-posts-grid--article {
  margin-top: 8px;
}

.recent-posts-section--article {
  padding-left: 0;
  padding-right: 0;
}

.recent-post-card,
.blog-card {
  display: grid;
  gap: 18px;
}

.blog-card--hidden {
  display: none;
}

.card-link {
  display: grid;
  gap: inherit;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.recent-post-card__image {
  height: 240px;
}

.recent-post-card__body {
  display: grid;
  gap: 10px;
  grid-template-rows: auto 1fr auto;
  height: 100%;
}

.blog-card-image {
  height: 280px;
}

.blog-card-body {
  gap: 10px;
  grid-template-rows: auto auto 1fr auto;
  height: 100%;
}

.blog-card-meta span,
.article-meta-row span,
.cookie-status,
.footer-meta p {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
}

.eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
}

.text-link,
.section-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.button,
button {
  border: 0;
  border-radius: 8px;
  padding: 14px 18px;
  background: var(--pink);
  color: var(--white);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.button.secondary,
button.secondary {
  background: var(--mint);
}

.button-gold {
  background: var(--gold);
}

.see-all-button {
  justify-self: stretch;
  text-align: center;
}

.blog-index-actions {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.blog-see-more-button,
.blog-back-to-top-button {
  min-width: 160px;
}

.blog-see-more-button {
  width: min(100%, 420px);
}

.blog-back-to-top-wrap {
  position: fixed;
  right: 18px;
  bottom: 64px;
  z-index: 44;
}

.blog-back-to-top-button {
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
  padding: 0;
  border-radius: 999px;
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(43, 43, 43, 0.18);
}

.blog-back-to-top-button .bi {
  font-size: 18px;
  line-height: 1;
}

.article-meta-row,
.section-row,
.share-actions,
.footer-policy-links,
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.article-meta-row,
.section-row {
  justify-content: space-between;
}

.article-meta-cluster {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.article-title {
  margin-top: 14px;
  font-size: 20px;
  line-height: 1.3;
}

.article-content {
  display: grid;
  gap: 18px;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.article-content h2,
.article-content h3,
.section-row h2 {
  font-size: 18px;
}

.article-content p,
.article-content ul,
.article-content ol,
.article-content blockquote {
  margin: 0;
}

.article-content section p + p {
  margin-top: 16px;
}

.blog-article-layout {
  display: grid;
  gap: 0;
}

.blog-article-layout__image {
  min-height: 240px;
  max-height: 360px;
}

.article-shell--blog {
  padding-top: 18px;
}

.article-excerpt {
  margin: 16px 0 0;
  line-height: 1.6;
  color: var(--muted);
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.keyword-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(126, 215, 193, 0.2);
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
}

.share-menu {
  position: relative;
  display: inline-grid;
  gap: 10px;
}

.share-menu--icon {
  justify-items: end;
}

.share-menu__panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 190px;
  display: grid;
  gap: 8px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
  z-index: 30;
}

.share-menu__panel--right {
  left: auto;
  right: 0;
}

.share-menu__option {
  width: 100%;
  text-align: left;
  background: var(--mint);
}

.share-icon-button {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--pink);
  color: var(--white);
}

.share-icon-button--meta {
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
}

.share-icon-button--meta:hover,
.share-icon-button--meta:focus-visible {
  background: transparent;
  color: var(--black);
  box-shadow: none;
  transform: none;
  outline: none;
}

.share-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(126, 215, 193, 0.24);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
}

.share-count--meta {
  min-width: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-weight: 400;
}

.share-icon-button .bi,
.social-links .bi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
}

.share-icon-button .bi {
  font-size: 14px;
}

.share-icon-button--meta .bi {
  font-size: 20px;
}

.share-icon-button--meta .share-count--meta {
  font-size: 13px;
}

.site-footer {
  margin-top: 8px;
  padding: 24px 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,182,193,0.12) 100%);
}

.footer-stack {
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 8px 18px 18px;
}

.social-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.social-links a {
  display: inline-flex;
  color: var(--black);
}

.social-link-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link-row a,
.social-link-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(126, 215, 193, 0.2);
  font-weight: 700;
}

.footer-policy-links {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.footer-meta {
  display: grid;
  gap: 2px;
  justify-items: center;
}

.footer-meta p {
  margin: 0;
  line-height: 1.25;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: grid;
  gap: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.feedback-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(43, 43, 43, 0.35);
}

.feedback-modal__panel {
  width: min(560px, 100%);
  display: grid;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
}

.consent-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  line-height: 1.5;
}

.consent-row input {
  margin-top: 4px;
}

.rating-field {
  margin: 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.rating-field > span {
  font-weight: 700;
}

.rating-field > span + .rating-options {
  margin-left: auto;
}

.rating-options {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 4px;
}

.rating-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rating-options label {
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  color: #c7b9a4;
}

.rating-options label:hover,
.rating-options label:hover ~ label,
.rating-options input:checked ~ label {
  color: #c78628;
}

.rating-options input:focus-visible + label {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.legal-shell {
  margin-top: 18px;
}

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

.listing-card {
  display: grid;
  gap: 16px;
}

.listing-card__image {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.listing-card__body {
  display: grid;
  gap: 10px;
  grid-template-rows: auto auto auto 1fr auto;
}

.listing-card__title {
  display: grid;
  gap: 7px;
}

.listing-card__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.listing-card__socials {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.listing-card__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.listing-card__social .bi {
  font-size: 17px;
  line-height: 1;
}

.open-status {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.open-status--open {
  color: #168050;
}

.open-status--closed {
  color: #c04444;
}

.open-status--temporary {
  color: #c04444;
}

.search-form {
  display: grid;
  gap: 12px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-weight: 700;
}

.required-mark {
  color: #c04444;
  font-weight: 700;
}

.textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(43, 43, 43, 0.12);
  font: inherit;
  background: #fff;
}

.hours-grid {
  display: grid;
  gap: 12px;
}

.hours-row {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
}

.onboarding-page .content-stack {
  gap: 34px;
}

.onboarding-page form.stack {
  gap: 34px;
  padding: 34px clamp(18px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.onboarding-page .form-grid,
.onboarding-page .hours-grid {
  gap: 24px;
}

.onboarding-page .field {
  gap: 10px;
}

.onboarding-page .field small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  line-height: 1.4;
}

.field small {
  color: var(--muted);
  line-height: 1.4;
}

.onboarding-page .textarea {
  margin-top: 4px;
}

.onboarding-page .onboarding-section {
  gap: 14px;
  padding-top: 18px;
}

.onboarding-page .onboarding-section h2 {
  margin: 0;
}

.onboarding-page .keyword-list {
  gap: 12px;
  margin-top: 18px;
}

.onboarding-page .keyword-pill {
  padding: 10px 14px;
}

.image-preview {
  width: min(420px, 100%);
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.image-preview img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
}

.onboarding-submit {
  display: inline-flex;
  justify-self: center;
  margin-inline: auto;
  margin-top: 10px;
}

.onboarding-submit:disabled,
button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  filter: grayscale(0.25);
}

.onboarding-submit:disabled {
  background: #d9d9d9;
  color: #777;
  box-shadow: none;
}

.hours-toggle {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.search-input,
.select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(43, 43, 43, 0.12);
  font: inherit;
  background: #fff;
}

.search-input:disabled,
.select:disabled {
  opacity: 0.55;
  background: #f2f2f2;
}

.feedback-form .form-grid {
  margin-top: 24px;
  row-gap: 24px;
}

.feedback-form .rating-field {
  display: flex;
  grid-template-columns: none;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}

.feedback-form .rating-field > span {
  min-width: max-content;
}

.feedback-form .rating-field .rating-options {
  margin-left: auto;
}

.feedback-form .onboarding-section {
  margin-top: 24px;
}

.feedback-form .consent-row {
  margin-top: 14px;
}

.feedback-form .onboarding-submit {
  display: flex;
  width: fit-content;
}

.feedback-form .field > span,
.feedback-form .rating-field > span {
  margin-bottom: 4px;
}

@media (max-width: 520px) {
  .onboarding-page .blog-hero {
    justify-items: center;
    text-align: center;
  }

  .onboarding-page .hero-copy {
    max-width: 32rem;
  }

  .onboarding-page form.feedback-form {
    justify-items: center;
    padding-inline: 16px;
    text-align: center;
  }

  .feedback-form .field,
  .feedback-form .form-grid,
  .feedback-form .onboarding-section,
  .feedback-form .search-input,
  .feedback-form .textarea {
    width: 100%;
  }

  .feedback-form .field > span,
  .feedback-form .rating-field > span {
    justify-self: center;
  }

  .feedback-form .rating-field {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
  }

  .feedback-form .rating-options label {
    font-size: 1.75rem;
  }

  .feedback-form .rating-options {
    margin-left: 0 !important;
    gap: 2px;
  }

  .feedback-form .consent-row {
    grid-template-columns: 1fr;
    justify-items: center;
    max-width: 32rem;
  }
}

.consent-row a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.feedback-complete-page {
  padding-top: 18px;
}

.complete-hero {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 26px 18px 18px;
  text-align: center;
}

.complete-hero .hero-copy {
  max-width: 560px;
}

.complete-icon-wrap {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 182, 193, 0.3);
  box-shadow: var(--shadow-soft);
}

.complete-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.complete-support-panel {
  background: rgba(255, 255, 255, 0.96);
}

.support-action-grid {
  display: grid;
  gap: 12px;
}

.support-action-grid .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
}

.profile-hero,
.profile-grid,
.profile-stack,
.list-panel,
.panel-header {
  display: grid;
  gap: 18px;
}

.profile-hero {
  padding: 24px 18px;
}

.profile-hero__image {
  width: 100%;
  min-height: 280px;
  max-height: 420px;
  object-fit: cover;
}

.profile-title {
  font-size: 28px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.info-panel,
.list-panel {
  padding: 24px 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
}

.meta-list,
.opening-times-list {
  display: grid;
  gap: 10px;
}

.meta-list p {
  margin: 0;
}

.opening-times-list__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.image-grid {
  display: grid;
  gap: 16px;
}

.image-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
}

.partner-page {
  width: min(1120px, calc(100vw - 36px));
  margin: 0 auto;
  display: grid;
  gap: 44px;
  padding: 42px 0 52px;
}

.partner-page p,
.partner-page li {
  color: var(--muted);
  line-height: 1.55;
}

.partner-page p {
  margin: 0;
}

.partner-hero {
  display: grid;
  gap: 28px;
  align-items: center;
}

.partner-hero__copy,
.partner-admin-copy,
.partner-cta,
.not-found-page {
  display: grid;
  gap: 18px;
}

.partner-hero h1 {
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.16;
}

.partner-hero h1 span {
  color: var(--mint);
}

.partner-hero h2,
.partner-admin-section h2,
.partner-testimonials h2,
.partner-cta h2 {
  font-size: 20px;
  line-height: 1.3;
}

.partner-hero__media {
  display: none;
}

.partner-hero__mobile-media {
  margin-inline: calc((100vw - min(100vw, 100%)) / -2);
}

.partner-hero__media img,
.partner-hero__mobile-media img {
  width: 100%;
  object-fit: cover;
  object-position: left top;
}

.partner-hero__mobile-media img {
  max-height: 190px;
}

.partner-panel {
  padding: 24px;
  border: 1px solid rgba(255, 132, 151, 0.62);
  border-radius: 14px;
  background: rgba(255, 182, 193, 0.1);
}

.partner-feature-panel {
  display: grid;
  gap: 22px;
}

.partner-feature-grid,
.partner-benefit-list,
.partner-testimonials,
.partner-cta {
  display: grid;
  gap: 18px;
}

.partner-feature-grid article,
.partner-benefit-list article,
.partner-testimonial {
  display: grid;
  gap: 9px;
}

.partner-feature-grid h3 {
  font-size: 17px;
}

.partner-feature-grid h3 {
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.partner-feature-grid h3 span {
  flex: 0 0 auto;
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 0.95em;
  line-height: 1;
}

.partner-admin-section {
  display: grid;
  gap: 24px;
}

.partner-admin-copy ul {
  margin: 0;
  padding-left: 22px;
}

.partner-benefit-list article {
  padding: 18px;
  border: 1px solid rgba(43, 43, 43, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.76);
}

.partner-benefit-list span {
  justify-self: start;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(126, 215, 193, 0.42);
  font-size: 12px;
  font-weight: 700;
}

.partner-video-section {
  width: min(760px, 100%);
  justify-self: center;
  aspect-ratio: 16 / 9;
  background: rgba(43, 43, 43, 0.1);
  border: 6px solid rgba(43, 43, 43, 0.78);
}

.partner-video-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.partner-testimonials {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  justify-items: center;
}

.partner-testimonial-track {
  width: 100%;
  max-width: 100%;
  display: flex;
  transition: transform 220ms ease;
  touch-action: pan-y;
  cursor: grab;
}

.partner-testimonial {
  flex: 0 0 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 196px;
  padding: 22px;
  border: 1px solid rgba(255, 132, 151, 0.62);
  border-radius: 24px;
  background: rgba(255, 182, 193, 0.1);
  overflow-wrap: anywhere;
}

.partner-testimonial p {
  font-size: 15px;
}

.partner-carousel-dots {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.partner-carousel-dots button {
  width: 15px;
  height: 15px;
  min-width: 15px;
  padding: 0;
  border-radius: 999px;
  background: rgba(43, 43, 43, 0.16);
}

.partner-carousel-dots button.is-active {
  background: rgba(43, 43, 43, 0.3);
}

.partner-cta .button {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 12px;
}

.partner-cta > div {
  display: grid;
  gap: 14px;
}

.cocoaking-page {
  width: min(1120px, calc(100vw - 30px));
  margin: 0 auto;
  display: grid;
  gap: 42px;
  padding: 24px 0 48px;
}

.cocoaking-page p,
.cocoaking-page li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.cocoaking-page p {
  margin: 0;
}

/* Cocoa King page header */
.cocoaking-hero {
  width: 100%;
}

.cocoaking-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 1920 / 1280;
  object-fit: cover;
  object-position: center top;
}

.cocoaking-hero__fallback {
  display: none;
}

.cocoaking-hero--fallback {
  display: grid;
  min-height: 340px;
  padding: 34px 24px;
  place-items: center;
  text-align: center;
  background: #291238;
  color: #fff;
}

.cocoaking-hero--fallback .cocoaking-hero__fallback {
  display: grid;
  gap: 12px;
}

.cocoaking-hero__fallback span {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cocoaking-hero__fallback h1 {
  font-size: clamp(36px, 11vw, 86px);
  line-height: 0.95;
}

.cocoaking-hero__fallback p {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 3vw, 28px);
}

.cocoaking-intro,
.cocoaking-offer {
  display: grid;
  gap: 34px;
}

.cocoaking-copy-stack {
  display: grid;
  gap: 22px;
}

/* Cocoa King baker benefits card: background #F2E8FA; border #291238 2px wide */
.cocoaking-love-card {
  display: grid;
  gap: 22px;
  padding: 24px 22px;
  border: 2px solid #291238;
  border-radius: 20px;
  background: #f2e8fa;
}

.cocoaking-love-card h2,
.cocoaking-offer h2 {
  color: #333;
  font-size: 20px;
  line-height: 1.32;
}

.cocoaking-love-card ul {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cocoaking-love-card li {
  position: relative;
  padding-left: 32px;
}

.cocoaking-love-card li::before {
  content: "\1F36A";
  position: absolute;
  top: 0.24em;
  left: 0;
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  line-height: 1;
}

/* Cocoa King offer section: bold colour #291238 */
.cocoaking-offer strong,
.cocoaking-action-stack a:not(.button) {
  color: #291238;
  font-weight: 700;
}

.cocoaking-action-stack a:not(.button) {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Cocoa King affiliate button: background colour #291238 */
.cocoaking-button {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 8px;
  background: #291238;
}

.not-found-page {
  width: min(640px, calc(100vw - 36px));
  margin: 0 auto;
  min-height: 54vh;
  align-content: center;
  justify-items: center;
  padding: 60px 0;
  text-align: center;
}

.not-found-page h1 {
  font-size: clamp(30px, 6vw, 48px);
}

.not-found-page p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

[hidden] {
  display: none !important;
}

@media (max-width: 420px) {
  .header-inner {
    gap: 10px;
    padding: 14px 18px;
  }

  .brand-pill {
    gap: 8px;
    font-size: 18px;
  }
}

@media (max-width: 899px) {
  #bmc-wbtn {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
  }

  #bmc-wbtn img,
  #bmc-wbtn svg,
  #bmc-wbtn i {
    width: 18px !important;
    height: 18px !important;
    font-size: 18px !important;
    line-height: 1 !important;
  }

  #bmc-wmsg {
    max-width: 220px !important;
    padding: 10px 12px !important;
    font-size: 16px !important;
    line-height: 1.28 !important;
  }

  body[data-route-name="blog.index"] #bmc-wmsg,
  body[data-route-name="blog.show"] #bmc-wmsg {
    display: none !important;
  }

  body[data-route-name="blog.index"] #bmc-wbtn {
    bottom: 18px !important;
  }

  .share-menu__panel {
    top: auto;
    bottom: calc(100% + 8px);
    left: auto;
    right: 0;
    z-index: 80;
  }

  .blog-back-to-top-wrap {
    bottom: 58px;
  }
}

@media (min-width: 900px) {
  .blog-back-to-top-wrap {
    display: none !important;
  }
}

@media (min-width: 900px) {
  .page-shell,
  .page-shell--editorial,
  .header-inner,
  .nav-sheet,
  .footer-stack {
    width: min(1120px, calc(100vw - 72px));
  }

  .home-top-image__media {
    min-height: 420px;
    max-height: 540px;
  }

  .page-shell--editorial {
    padding-top: 8px;
  }

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

  .recent-post-card__image {
    height: 300px;
  }

  .see-all-button {
    justify-self: center;
    width: min(420px, 100%);
  }

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

  .recent-posts-section--article {
    padding-left: 0;
    padding-right: 0;
  }

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

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

  .blog-card-image {
    height: 340px;
  }

  .blog-article-layout__image {
    min-height: 420px;
    max-height: 560px;
  }

  .footer-stack {
    min-height: 260px;
    align-content: center;
  }

  .profile-hero {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

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

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

  .field-wide {
    grid-column: 1 / -1;
  }

  .hours-row {
    grid-template-columns: 1fr auto 150px 150px;
    align-items: center;
  }

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

  .partner-page {
    width: min(1120px, calc(100vw - 72px));
    gap: 58px;
    padding-top: 62px;
  }

  .partner-hero {
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    gap: 36px;
  }

  .partner-hero__media {
    display: block;
  }

  .partner-hero__mobile-media {
    display: none;
  }

  .partner-hero__media img {
    max-height: 360px;
  }

  .partner-feature-grid,
  .partner-admin-section,
  .partner-cta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-cta {
    column-gap: 82px;
    align-items: start;
  }

  .partner-cta .button {
    margin-top: 16px;
  }

  .partner-feature-grid {
    gap: 26px 56px;
  }

  .partner-panel {
    padding: 34px 42px;
    border-radius: 18px;
  }

  .partner-benefit-list {
    align-content: center;
  }

  .partner-testimonials {
    width: 100%;
    justify-self: center;
    overflow: visible;
  }

  .partner-testimonial-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
    transform: none !important;
  }

  .partner-testimonial {
    min-height: 236px;
    padding: 26px;
  }

  .partner-carousel-dots {
    display: none;
  }

  .cocoaking-page {
    width: min(1120px, calc(100vw - 72px));
    gap: 62px;
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .cocoaking-hero img {
    width: min(940px, 100%);
    margin: 0 auto;
    aspect-ratio: 1920 / 1280;
  }

  .cocoaking-intro,
  .cocoaking-offer {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
    gap: 92px;
    align-items: start;
  }

  .cocoaking-love-card {
    padding: 28px 34px;
    border-radius: 18px;
  }

  .cocoaking-offer {
    gap: 82px;
  }

  .cocoaking-offer .cocoaking-action-stack {
    padding-top: calc(20px * 1.32 + 22px);
  }

  .cocoaking-button {
    margin-top: 10px;
  }
}
