/*
Theme Name: ShellyFit-Theme
Template: twentytwentyfive
Author: Claudio
Version: 1.0.0
*/

/* Global ShellyFit tokens */
:root{
  --sf-gap-1: 12px;
  --sf-gap-2: 16px;
  --sf-radius-1: 16px;
  --sf-radius-2: 22px;
  --sf-ivory: var(--wp--preset--color--gray-100);
  --sf-ink: var(--wp--preset--color--gray-900);
  --sf-purple: var(--wp--preset--color--purple);
  --sf-purple-deep: var(--wp--preset--color--purple-deep);
  --sf-gold: var(--wp--preset--color--gold);
  --sf-gold-light: var(--wp--preset--color--gold-light);
  --sf-cta: var(--wp--preset--color--action);
  --sf-cta-hover: #b07a22;
  --sf-cta-ink: #ffffff;
  --sf-shadow-strong: 0 28px 80px rgba(0,0,0,0.30);
}

body{
  background:
    radial-gradient(1400px 720px at 85% -12%, rgba(128, 0, 200, 0.72), transparent 60%),
    radial-gradient(1100px 680px at 10% -8%, rgba(170, 0, 255, 0.60), transparent 58%),
    linear-gradient(180deg, rgba(38, 0, 70, 0.92) 0%, rgba(63, 0, 110, 0.45) 28%, rgba(110, 0, 150, 0.18) 56%, rgba(43,11,63,0.00) 78%),
    var(--sf-ivory);
}

.sf-siteMain{
  padding-block: 40px;
}

@media (min-width: 900px){
  .sf-siteMain{
    padding-block: 64px;
  }
}

/* to remove the default margin block at the beginning */
.wp-site-blocks > * {
  margin-block-start: 0;
}

/* Keep the final content section separated from the footer.
 * Site Editor template overrides can render post content without sf-siteMain. */
.wp-block-post-content {
  padding-bottom: 19.2px;
}

.wp-block-post-content > p:empty:last-child {
  display: none;
}


/* =========================
   ShellyFit Pro Hero
   ========================= */

.entry-content .has-purple-color{
  color: var(--sf-purple) !important;
}

.entry-content :where(ul.wp-block-list, ol.wp-block-list){
  max-width: 62ch;
  padding-left: 1.35rem;
  font-size: var(--wp--preset--font-size--md);
  line-height: 1.65;
}

.entry-content :where(ul.wp-block-list, ol.wp-block-list) li{
  margin-bottom: 0.65rem;
  padding-left: 0.15rem;
}

.entry-content :where(ul.wp-block-list, ol.wp-block-list) li:last-child{
  margin-bottom: 0;
}

.entry-content :where(ul.wp-block-list, ol.wp-block-list) ::marker{
  color: var(--sf-purple);
  font-size: 0.72em;
}

.sf-heroPro {
  position: relative;
  overflow: hidden;
}

/* Reduce that "big gap on top" and keep it responsive */
.sf-heroPro__inner {
  padding-block: clamp(0px, 4.5vw, 0px);
}

/* Background “wow” without being cheesy */
.sf-heroPro__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  color: var(--sf-purple-deep);
}

/* Soft shape layers using gradients; no loud colors required */
.sf-heroPro__bg::before,
.sf-heroPro__bg::after {
  content: "";
  position: absolute;
  width: min(680px, 60vw);
  height: min(680px, 60vw);
  filter: blur(40px);
  opacity: 0.35;
  transform: translateZ(0);
}

.sf-heroPro__bg::before {
  top: -22%;
  right: -18%;
  background: radial-gradient(circle at 30% 30%, currentColor 0%, transparent 60%);
}

.sf-heroPro__bg::after {
  bottom: -30%;
  left: -20%;
  background: radial-gradient(circle at 70% 70%, currentColor 0%, transparent 60%);
  opacity: 0.20;
}

/* Layout */
.sf-heroPro__cols {
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
}

/* Eyebrow */
.sf-heroPro__eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--sf-ink);
  opacity: 0.7;
  margin-bottom: 10px;
}

/* Fix “characters too big”: controlled, premium scale */
.sf-heroPro__title {
  font-size: clamp(2.05rem, 3.6vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-top: 0;
  margin-bottom: 12px;
}

.sf-heroPro__sub {
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.55;
  max-width: 52ch;
  color: color-mix(in srgb, var(--sf-ink) 85%, transparent);
  margin-bottom: 18px;
}

/* CTA row */
.sf-heroPro__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

/* Professional buttons */
.sf-btn .wp-block-button__link {
  border-radius: 999px;
  padding: 0.85rem 1.15rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
  will-change: transform;
}

/* Primary: clean, confident */
.sf-btn--primary .wp-block-button__link {
  background: var(--sf-cta);
  color: var(--sf-cta-ink);
  box-shadow: 0 12px 28px rgba(155,107,31,0.35);
  border: 1px solid rgba(0,0,0,0.08);
}

/* Ghost: premium outline */
.sf-btn--ghost .wp-block-button__link{
  background: transparent;
  border: 1.5px solid var(--sf-gold);
  color: var(--sf-gold);
}

.sf-btn--ghost .wp-block-button__link:hover {
  border-color: var(--sf-gold);
  background-color: rgba(0,0,0,0.06);
}

/* Primary button – hover */
.sf-btn--primary .wp-block-button__link:hover{
  transform: translateY(-1px);
  background: var(--sf-cta-hover);
  box-shadow: 0 16px 34px rgba(155,107,31,0.40);
}

/* Primary button – active (click) */
.sf-btn--primary .wp-block-button__link:active{
  transform: translateY(0);
  box-shadow: 0 10px 24px rgba(155,107,31,0.32);
}

/* Force header CTA off purple */
.site-header .wp-block-button__link{
  background: var(--sf-cta) !important;
  color: var(--sf-cta-ink) !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  box-shadow: 0 10px 24px rgba(155,107,31,0.30);
}

.site-header .wp-block-button__link:hover{
  background: var(--sf-cta-hover) !important;
}

/* Accent gold for outline buttons (dividers/proof/secondary) */
.wp-block-button.is-style-outline .wp-block-button__link,
.wp-block-button.is-style-outline--5 .wp-block-button__link,
.wp-block-button.is-style-outline--6 .wp-block-button__link{
  border-color: var(--sf-gold) !important;
  color: var(--sf-gold) !important;
  background: transparent !important;
}

/* Chips (micro-proof) */
.sf-heroPro__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.sf-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(8px);
  font-size: 0.9rem;
  line-height: 1;
  opacity: 0.95;
}

/* Each card */
.sf-stat {
  display: flex;
  min-height: 66px;
  flex-direction: column;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}

/* Tighten default WP margins inside cards */
.sf-stat > * {
  margin: 0;
}

.sf-stat__label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 6px;
}

.sf-stat__value {
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 600;
}

/* Make the chips layout use gap instead of WP's auto margins */
.sf-heroPro__stats{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
  margin-top: 18px;
  max-width: 640px;
}

/* Remove the global-styles margin that differs on first/next children */
.sf-heroPro__stats > .wp-block-group{
  display: flex;
  min-width: 0;
  min-height: 66px;
  flex-direction: column;
  justify-content: center;
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

/* Your existing chip styling (keep it) */
.sf-heroPro__stats .wp-block-group {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
}

.sf-heroPro__stats .wp-block-heading,
.sf-heroPro__stats p {
  margin: 0;
}

/* Media: make it look “designed,” not dropped in */
.sf-heroPro__media img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.35);
  border: 1px solid rgba(0,0,0,0.18);
}

.sf-heroPro__media{
  position: relative;
  background: transparent !important;
}

.sf-heroPro__media::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 6px;
  background:
    radial-gradient(80% 90% at 50% 40%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.42) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.10));
  box-shadow: inset 0 0 40px rgba(0,0,0,0.35);
  z-index: 1;
}

.sf-heroPro__media img{
  position: relative;
  z-index: 0;
}

.sf-heroPro__media figcaption{
  position: relative;
  z-index: 2;
  background-color: transparent !important;
  padding: 0 !important;
  margin: 0.5rem 0 0;
}

.sf-heroPro__media .wp-element-caption{
  background-color: transparent !important;
}

.sf-heroPro__inner > :first-child {
  margin-top: 0;
}

/* COUNTER BLOCK STYLES */
/* Wrapper: match hero width + add a subtle section background */
.sf-blockWrap {
  /* match the hero inner width */
  max-width: var(--wp--style--global--content-size);
  margin-inline: auto;

  /* spacing consistent with the theme */
  padding: clamp(14px, 2vw, 24px);
  padding-inline: var(--wp--style--root--padding-left);

  border-radius: 24px;
  border: 1px solid rgba(220 190 249);

  background:
    radial-gradient(1200px 300px at 20% 0%, rgba(255,255,255,0.85), rgba(255,255,255,0) 60%),
    linear-gradient(180deg, #ffffff, var(--sf-ivory));
  backdrop-filter: blur(10px);
}

/* Grid-like, professional spacing */
.sf-counters{
  margin-top: 24px;
  gap: 16px;
}

/* Each counter card */
.sf-counters .sf-counter{
  text-align: center;
  padding: 20px 18px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #ffffff;
  border-color: rgba(0,0,0,0.10);
  backdrop-filter: blur(10px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

/* Bigger number + tighter label */
.sf-counters .sf-counter .wp-block-heading{
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
}

.sf-counters .sf-counter p{
  margin-top: 6px;
  font-size: 14px;
  opacity: 0.7;
}

/* Optional: add a little emphasis color to the number without hard-coding a color */
.sf-counters .sf-count{
  color: var(--wp--preset--color--gray-900);
}

.sf-counters .sf-counter:hover{
  border-color: rgba(0,0,0,0.18);
  box-shadow: 0 10px 26px rgba(0,0,0,0.12);
}

/* Counter section header */
.sf-countersHeader {
  text-align: center;
  /* max-width: 640px; (disabled for now) */
  /*margin: 0 auto 20px;  */
}

/* Title */
.sf-countersHeader .wp-block-heading{
  margin: 0 0 8px;
  font-size: clamp(24px, 5vw, 30px);
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block; /* keeps underline sized to text */
}

.sf-countersHeader .wp-block-heading::after{
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: var(--sf-gold);
}

/* Title */
.sf-block-header {
  font-size: clamp(24px, 5vw, 30px);
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block; /* keeps underline sized to text */
  display: block;
  width: 48px;
  height: 3px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: var(--sf-gold);
}

/* Supporting text */
.sf-countersHeader p{
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.75;
}

/* ========== ShellyFit Achievements (Luxury) — Consolidated ========== */

.sf-achLux { position: relative; overflow: hidden; }
.sf-achLux > *{ position: relative; }

.sf-achLux::before{
	content:"";
	position:absolute;
	inset:-1px;
	pointer-events:none;
	
  background-color: #fbf9f4; /* safety base */
  background-image:
    linear-gradient(
      160deg,
      #f2eefd 0%,    /* very light lavender */
      #efe6fb 25%,
      #f3ecd9 60%,   /* warm transition */
      #ead9ae 100%   /* soft gold */
    );

}

/* Header */
.sf-achLux__title{
	letter-spacing: -0.03em;
	line-height: 1.12;
}
.sf-achLux__lead{ max-width: 62ch; opacity: .88; }

.sf-blockWrap .sf-achLux__titleWrap,
.sf-blockWrap .sf-achLux__lead{
  max-width: none;
  width: 100%;
}

.sf-blockWrap .sf-achLux__titleWrap{
  flex-basis: 100%;
}

.sf-achLux.sf-blockWrap.sf-generalText,
.sf-achLux.sf-blockWrap:has(> .sf-achLux__inner){
  padding-block: clamp(14px, 2vw, 24px) !important;
}

.sf-blockWrap .sf-achLux__cta{
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.sf-blockWrap .sf-achLux__cta:empty,
.sf-blockWrap .sf-achLux__cta:has(.wp-block-button__link:empty){
  display: none;
}

.sf-achLux__eyebrow{
  color: var(--sf-ink) !important;
}

.sf-servicesHero,
.sf-pageTitle{
  position: relative;
  overflow: hidden;
}

.sf-servicesHero::before,
.sf-pageTitle::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 260px at 14% 0%, color-mix(in srgb, var(--wp--preset--color--gold) 18%, transparent), transparent 62%),
    linear-gradient(180deg, color-mix(in srgb, var(--wp--preset--color--purple-deep) 94%, #ffffff 6%), var(--wp--preset--color--purple-deep));
}

.sf-servicesHero > *,
.sf-pageTitle > *{
  position: relative;
}

.sf-servicesHero__inner,
.sf-pageTitle__inner{
  max-width: var(--wp--style--global--content-size) !important;
  padding-inline: clamp(14px, 2vw, 24px);
}

.sf-servicesHero__inner > *,
.sf-pageTitle__inner > *{
  margin-left: 0 !important;
  margin-right: auto !important;
}

.sf-servicesHero__eyebrow,
.sf-pageTitle__eyebrow{
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.sf-servicesHero__title,
.sf-pageTitle__title{
  color: var(--wp--preset--color--white);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: 1.1rem;
}

.sf-servicesHero__subtitle,
.sf-pageTitle__subtitle{
  max-width: 68ch;
  color: color-mix(in srgb, var(--wp--preset--color--white) 84%, transparent);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.65;
  margin: 0;
}

/* Divider */
.sf-achLux__divider{ height: 2px; border: 0; opacity: 1; }

/* Strip (single source of truth) */
.sf-achLux__strip{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	border-radius: 16px;
	padding: 12px;
	border: 1px solid color-mix(in srgb, var(--wp--preset--color--gold) 55%, transparent);
	box-shadow: 0 18px 60px rgba(0,0,0,.18);
}
.sf-achLux__chip{
	border-radius: 999px;
	padding: 9px 12px;
	border: 1px solid color-mix(in srgb, var(--wp--preset--color--gold) 55%, transparent);
	background: color-mix(in srgb, var(--wp--preset--color--purple-deep) 85%, transparent);
}
.sf-achLux__chipText{ margin: 0; font-size: .92rem; line-height: 1.1; white-space: nowrap; }

/* Grid + equal-height columns */
.sf-achLux__grid{ gap: 22px; }
.sf-achLux__grid .wp-block-column{ display: flex; }
.sf-achLux__grid .wp-block-column > .sf-achLux__card{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
}

/* Cards */
.sf-achLux__card{
  font-size: 0.96rem;
	line-height: 1.55;
	border-radius: 22px;
	padding: 22px;
	border: 1px solid color-mix(in srgb, var(--wp--preset--color--black) 10%, transparent);
	box-shadow: 0 18px 60px rgba(0,0,0,.10);
	transition: transform .18s ease, box-shadow .18s ease;
}
.sf-achLux__card:hover{
	transform: translateY(-2px);
	box-shadow: 0 24px 70px rgba(0,0,0,.14);
}

/* Accent card */
.sf-achLux__card--accent{
	position: relative;
	overflow: hidden;
	border: 1px solid color-mix(in srgb, var(--wp--preset--color--gold) 55%, transparent);
}
.sf-achLux__card--accent::after{
	content:"";
	position:absolute;
	inset: 0;
	pointer-events:none;
	background: radial-gradient(600px 320px at 20% 10%,
		color-mix(in srgb, var(--wp--preset--color--gold) 14%, transparent),
		transparent 60%);
	opacity: .9;
}

/* Card header */
.sf-achLux__cardHead{
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid color-mix(in srgb, var(--wp--preset--color--gold) 30%, transparent);
}
.sf-achLux__cardTitle{
	margin: 0;
	font-size: 1.18rem;
	line-height: 1.15;
	letter-spacing: -0.01em;
}

/* Tags */
.sf-achLux__tag{
	margin: 0;
	font-size: .78rem;
	padding: 5px 9px;
	border-radius: 999px;
	border: 1px solid rgba(0,0,0,0.12);
	background: #ffffff;
  color: var(--sf-ink) !important;
}
.sf-achLux__tag--gold{
	border-color: var(--sf-gold);
	background: var(--sf-purple-deep);
  color: var(--sf-gold) !important;
}

/* Lists (single source of truth) */
.sf-achLux__list{
  font-size: 0.96rem;
	margin: 0;
	margin-top: 8px;
	list-style: disc;
	padding-left: 1.35rem;
}

.sf-achLux__list li::marker{
  color: var(--sf-purple);
  font-size: 0.72em;
}

.sf-achLux__card--accent .sf-achLux__list li::marker{
  color: var(--wp--preset--color--gold);
}

.sf-achLux__list li{
  line-height: 1.45;
  margin: .45em 0;
  padding-left: .15rem;
}

.sf-achLux__muted{
  font-size: .92em;
  opacity: .72;
}
.sf-achLux__card--accent .sf-achLux__muted{
  opacity: .82;
}

.sf-achLux__grid:has(> .wp-block-column:only-child){
  justify-content: center;
}

.sf-achLux__grid:has(> .wp-block-column:only-child) > .wp-block-column{
  flex-basis: min(100%, 980px) !important;
  max-width: 980px;
}

.sf-achLux__grid:has(> .wp-block-column:only-child) .sf-achLux__card--accent{
  padding: clamp(28px, 4vw, 48px);
  border-radius: 24px;
  box-shadow: 0 28px 90px rgba(43, 11, 63, 0.34);
  background:
    radial-gradient(780px 360px at 18% 4%, color-mix(in srgb, var(--wp--preset--color--gold) 16%, transparent), transparent 62%),
    linear-gradient(145deg, #34104a 0%, var(--wp--preset--color--purple-deep) 58%, #220632 100%) !important;
}

.sf-achLux__grid:has(> .wp-block-column:only-child) .sf-achLux__card--accent::after{
  background:
    linear-gradient(90deg, transparent, color-mix(in srgb, var(--wp--preset--color--gold) 16%, transparent), transparent);
  inset: auto 36px 0;
  height: 1px;
  opacity: 0.8;
}

.sf-achLux__grid:has(> .wp-block-column:only-child) .sf-achLux__card--accent .sf-achLux__cardHead{
  justify-content: center;
  text-align: center;
  width: min(100%, 620px);
  margin-inline: auto;
  margin-bottom: clamp(22px, 3vw, 34px);
  padding-bottom: 18px;
}

.sf-achLux__grid:has(> .wp-block-column:only-child) .sf-achLux__card--accent .sf-achLux__cardTitle{
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}

.sf-achLux__grid:has(> .wp-block-column:only-child) .sf-achLux__card--accent .sf-achLux__list{
  column-count: 2;
  column-gap: clamp(32px, 5vw, 72px);
  max-width: 820px;
  margin-inline: auto;
}

.sf-achLux__grid:has(> .wp-block-column:only-child) .sf-achLux__card--accent .sf-achLux__list li{
  break-inside: avoid;
  margin: 0 0 1rem;
  padding-left: .15rem;
  line-height: 1.42;
}

.sf-achLux__grid:has(> .wp-block-column:only-child) .sf-achLux__card--accent .sf-achLux__muted{
  display: inline-block;
  margin-right: 0.35em;
  margin-top: 2px;
  color: color-mix(in srgb, var(--wp--preset--color--white) 76%, transparent);
}


/* PAGE.HTML STYLES */

.sf-page{
  padding-block: 40px;
}

.sf-page__inner{
  padding-inline: 24px;
}

/* Contact page introduction banner */
.sf-contact-heroPP {
  padding: clamp(22px, 3vw, 38px) !important;
}

.sf-contact-heroPP > .wp-block-columns {
  align-items: center !important;
  gap: clamp(28px, 4vw, 56px);
}

.sf-contact-heroPP > .wp-block-columns > .wp-block-column:first-child {
  flex-basis: 54% !important;
}

.sf-contact-heroPP > .wp-block-columns > .wp-block-column:last-child {
  flex-basis: 46% !important;
}

.sf-contact-heroPP h2 {
  position: relative;
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
}

.sf-contact-heroPP h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--sf-gold);
}

.sf-contact-heroPP p {
  max-width: 58ch;
  margin-bottom: 1rem;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.75;
}

.sf-contact-heroPP p:empty {
  display: none;
}

.sf-contact-heroPP .wp-block-image {
  margin: 0;
}

.sf-contact-heroPP .wp-block-image img {
  display: block;
  width: 100%;
  max-height: 430px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(43, 11, 63, 0.2);
}

.sf-contact-hero {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(43,11,63,0.04),
    rgba(43,11,63,0)
  );
  border-radius: 28px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 18px 60px rgba(0,0,0,0.06);
  padding-inline: clamp(16px, 3vw, 24px);
}
.sf-contact-hero h1 {
  position: relative;
  display: inline-block;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.sf-contact-hero h1::after{
  content:"";
  display:block;
  width: 64px;
  height: 3px;
  margin-top: 12px;
  border-radius: 999px;
  background: var(--wp--preset--color--gold);
}

.sf-contact-hero p {
  font-size: 1.05rem;
  max-width: 46ch;
}

.sf-contact-hero .wp-block-image img{
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  max-height: 520px;
  width: 100%;
  object-fit: cover;
}

.sf-contact-filter {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.sf-contact-filter h2 {
  letter-spacing: -0.02em;
}

.sf-contact-filter h3 {
  text-align: left !important;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
  opacity: 0.85;
  color: var(--sf-ink);
}

.sf-contact-form__inner{
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
}

/* Contact filter: replace bullets with icons */
.sf-contact-filter .wp-block-columns {
  gap: 2.5rem;
}

/* Base list reset */
.sf-contact-filter .wp-block-list {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.sf-contact-filter .wp-block-list li {
  position: relative;
  padding-left: 34px;
  font-size: 0.96rem;
  line-height: 1.55;
  margin-bottom: 10px;
  color: var(--wp--preset--color--gray-900);
}

.sf-contact-filter .sf-filter--yes .wp-block-list li::before{
  content:"✔"; position:absolute; left:0; font-size: 0.95rem; top: 0.15em; opacity: 0.85;
  font-weight:700; color:var(--wp--preset--color--gold);
}
.sf-contact-filter .sf-filter--no .wp-block-list li::before{
  content:"✕"; position:absolute; left:0; font-size: 0.95rem; top: 0.15em; opacity: 0.85;
  font-weight:700; color:var(--sf-ink);
}

.sf-contact-filter .wp-block-column{
  display: flex;
  justify-content: center;
}

.sf-contact-filter .wp-block-column > h3,
.sf-contact-filter .wp-block-column > .wp-block-list{
  max-width: 420px;
  width: 100%;
}

.sf-contact-filter h3{
  margin-bottom: 14px;
}

/* =========================
   About Page Sections
   ========================= */

.wp-block-group.is-style-section-2{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 6% 0%, rgba(238, 0, 138, 0.08), transparent 60%),
    radial-gradient(980px 520px at 100% 40%, rgba(214, 176, 60, 0.12), transparent 65%),
    linear-gradient(180deg, #ffffff 0%, #f8f6ef 100%);
  border-block: 1px solid rgba(0,0,0,0.04);
}

.wp-block-group.is-style-section-2 .wp-block-image img{
  border-radius: 24px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.18);
}

.wp-block-group.is-style-section-2 .wp-block-column > p{
  font-size: 1.05rem;
  line-height: 1.75;
}

.is-style-text-annotation{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wp--preset--color--gray-900);
}

.is-style-text-annotation a{
  color: inherit;
  text-decoration: none;
}

.is-style-text-annotation:hover{
  border-color: rgba(214, 176, 60, 0.65);
  box-shadow: 0 8px 20px rgba(214, 176, 60, 0.16);
}

.is-style-text-subtitle{
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--wp--preset--color--gray-900) 70%, transparent);
}

.wp-block-group.is-style-section-5{
  background:
    linear-gradient(0deg, #e39dff 0%, #ffffff 100%);
 /* border-block: 1px solid rgba(0,0,0,0.05); */
}

.wp-block-group.is-style-section-5 .wp-block-image img{
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.16);
}

.wp-block-group.alignwide .wp-block-embed{
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0,0,0,0.18);
  /* border: 1px solid rgba(0,0,0,0.08); */
  background: #fff;
}

.wp-block-group.is-style-section-1{
  background:
    radial-gradient(900px 420px at 50% -10%, rgba(238, 0, 138, 0.12), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f7f4ea 100%);
}

.wp-block-group.is-style-section-1 .wp-block-image{
  padding: 14px;
  border-radius: 18px;
  /* border: 1px solid rgba(0,0,0,0.08); */
  background: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.wp-block-group.is-style-section-1 .wp-element-caption{
  margin-top: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wp--preset--color--gray-900);
}

/* =========================
   Editorial Portfolio Components
   ========================= */

.sf-editorialHero{
  padding-block: clamp(38px, 6vw, 76px);
}

.sf-editorialHero__inner{
  display: grid;
  box-sizing: border-box;
  width: min(100%, var(--wp--style--global--content-size));
  max-width: var(--wp--style--global--content-size) !important;
  margin-inline: auto;
  padding-inline: clamp(14px, 2vw, 24px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.sf-editorialHero__content{
  max-width: 720px;
}

.sf-editorialHero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.sf-editorialHero__media{
  position: relative;
  max-width: 420px;
  justify-self: end;
}

.sf-editorialHero__media::before{
  content: "";
  position: absolute;
  inset: 18px -16px -18px 16px;
  border: 1px solid color-mix(in srgb, var(--sf-gold) 70%, transparent);
  border-radius: 8px;
  opacity: 0.75;
}

.sf-editorialHero__media img{
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border: 1px solid color-mix(in srgb, var(--sf-gold-light) 52%, transparent);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0,0,0,0.36);
}

.sf-socialButton .wp-block-button__link{
  background: linear-gradient(135deg, #833ab4, #e1306c 52%, #f77737);
  color: #ffffff !important;
  box-shadow: 0 14px 32px rgba(225,48,108,0.24);
}

.sf-socialButton .wp-block-button__link:hover{
  color: #ffffff !important;
  filter: brightness(1.04);
}

.sf-featurePanel{
  box-sizing: border-box;
  width: min(100%, var(--wp--style--global--content-size));
  max-width: var(--wp--style--global--content-size) !important;
  margin-inline: auto;
  padding: clamp(24px, 4vw, 52px);
  border: 1px solid rgba(43, 11, 63, 0.10);
  border-radius: 24px;
  background:
    radial-gradient(900px 300px at 12% 0%, rgba(255,255,255,0.85), rgba(255,255,255,0) 64%),
    linear-gradient(180deg, #ffffff, var(--sf-ivory));
  box-shadow: 0 18px 60px rgba(43, 11, 63, 0.08);
}

.sf-featurePanel__grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
}

.sf-featurePanel__copy{
  max-width: 70ch;
}

.sf-featurePanel__copy p{
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.75;
}

.sf-featurePanel__image{
  margin: 0;
}

.sf-featurePanel__image img{
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(43, 11, 63, 0.20);
}

.sf-sectionTitle{
  box-sizing: border-box;
  width: min(100%, var(--wp--style--global--content-size));
  max-width: var(--wp--style--global--content-size) !important;
  margin-inline: auto;
}

.sf-sectionTitle .wp-block-heading{
  margin-bottom: 0;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1.08;
}

.sf-sectionTitle .wp-block-heading::after{
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--sf-gold);
}

.sf-sectionTitle p{
  max-width: 70ch;
  margin-top: 18px;
  color: color-mix(in srgb, var(--sf-ink) 74%, transparent);
  font-size: clamp(1rem, 1.15vw, 1.08rem);
}

.sf-mediaGrid{
  display: grid;
  box-sizing: border-box;
  width: min(100%, var(--wp--style--global--content-size));
  max-width: var(--wp--style--global--content-size) !important;
  margin-inline: auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.sf-mediaCard{
  display: flex;
  box-sizing: border-box;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  padding: 12px;
  border: 1px solid rgba(43, 11, 63, 0.10);
  border-radius: 8px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 16px 38px rgba(43, 11, 63, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.sf-mediaCard:hover{
  transform: translateY(-2px);
  border-color: rgba(198, 161, 58, 0.42);
  box-shadow: 0 22px 52px rgba(43, 11, 63, 0.14);
}

.sf-mediaCard .wp-block-image{
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: 0;
  border-radius: 6px;
}

.sf-mediaCard img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.sf-mediaCard--portrait .wp-block-image{
  aspect-ratio: 3 / 4;
}

.sf-mediaCard__label{
  margin: 12px 0 2px;
  color: var(--sf-ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.sf-mediaGrid > .sf-mediaCard{
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

.sf-luxPanel{
  box-sizing: border-box;
  width: min(100%, var(--wp--style--global--content-size));
  max-width: var(--wp--style--global--content-size) !important;
  margin-inline: auto;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid color-mix(in srgb, var(--sf-gold) 52%, transparent);
  border-radius: 24px;
  background:
    radial-gradient(760px 340px at 18% 0%, color-mix(in srgb, var(--sf-gold) 16%, transparent), transparent 62%),
    linear-gradient(145deg, #34104a 0%, var(--sf-purple-deep) 58%, #220632 100%);
  box-shadow: 0 28px 90px rgba(43, 11, 63, 0.28);
  color: #ffffff;
}

.sf-luxPanel h2,
.sf-luxPanel h3{
  color: #ffffff;
}

.sf-luxPanel p{
  color: color-mix(in srgb, #ffffff 84%, transparent);
}

.sf-luxPanel a{
  color: var(--sf-gold-light);
}

.sf-luxPanel .wp-block-list{
  max-width: none;
}

.sf-luxPanel .wp-block-list li::marker{
  color: var(--sf-gold);
}

.sf-chipGrid{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.sf-chipGrid__item{
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(198, 161, 58, 0.42);
  border-radius: 999px;
  background: #fbf7eb;
  color: #3b3140;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.15;
}

.sf-copyColumns{
  box-sizing: border-box;
  width: min(100%, var(--wp--style--global--content-size));
  max-width: var(--wp--style--global--content-size) !important;
  margin-inline: auto;
  column-count: 2;
  column-gap: clamp(32px, 5vw, 72px);
}

.sf-copyColumns p{
  break-inside: avoid;
  font-size: clamp(1rem, 1.1vw, 1.05rem);
  line-height: 1.78;
}

.sf-calloutBand{
  box-sizing: border-box;
  width: min(100%, var(--wp--style--global--content-size));
  max-width: var(--wp--style--global--content-size) !important;
  margin-inline: auto;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 24px;
  background:
    radial-gradient(520px 240px at 85% 20%, rgba(238, 0, 138, 0.16), transparent 62%),
    linear-gradient(180deg, #ffffff, #f8f3e6);
  border: 1px solid rgba(43, 11, 63, 0.10);
  box-shadow: 0 18px 60px rgba(43, 11, 63, 0.08);
}

.sf-calloutBand__inner{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.sf-calloutBand p{
  max-width: 70ch;
  margin-bottom: 0;
}

@media (max-width: 1180px){
  .sf-mediaGrid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px){
  .sf-editorialHero__inner,
  .sf-featurePanel__grid,
  .sf-calloutBand__inner{
    grid-template-columns: 1fr;
  }

  .sf-editorialHero__media{
    justify-self: start;
    width: min(100%, 420px);
  }

  .sf-copyColumns{
    column-count: 1;
  }

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

@media (max-width: 781px){
  .wp-block-post-content > .sf-editorialHero{
    width: 100vw;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
  }

  .sf-editorialHero{
    padding-block: 34px 44px;
  }

  .sf-editorialHero__inner,
  .sf-featurePanel,
  .sf-sectionTitle,
  .sf-mediaGrid,
  .sf-luxPanel,
  .sf-copyColumns,
  .sf-calloutBand{
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px) !important;
    margin-left: 24px !important;
    margin-right: 24px !important;
  }

  .sf-editorialHero__inner,
  .sf-sectionTitle,
  .sf-mediaGrid,
  .sf-copyColumns{
    padding-left: 0;
    padding-right: 0;
  }

  .sf-editorialHero__content,
  .sf-featurePanel__copy,
  .sf-calloutBand__inner,
  .sf-pageTitle__subtitle{
    min-width: 0;
    max-width: 100%;
  }

  .sf-editorialHero__content,
  .sf-featurePanel__copy,
  .sf-calloutBand{
    overflow-wrap: break-word;
  }

  .sf-featurePanel,
  .sf-luxPanel,
  .sf-calloutBand{
    border-radius: 20px;
  }

  .sf-editorialHero__media::before{
    inset: 12px 0 -12px 10px;
  }

  .sf-editorialHero__actions,
  .sf-calloutBand .wp-block-buttons{
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .sf-editorialHero__actions .wp-block-button,
  .sf-editorialHero__actions .wp-block-button__link,
  .sf-calloutBand .wp-block-button,
  .sf-calloutBand .wp-block-button__link{
    box-sizing: border-box;
    width: 100%;
    text-align: center;
    white-space: normal;
  }

  .sf-chipGrid{
    gap: 8px;
  }

  .sf-chipGrid__item{
    min-height: 34px;
    font-size: 0.78rem;
  }
}

@media (max-width: 560px){
  .sf-mediaGrid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px){
  .sf-editorialHero__inner,
  .sf-featurePanel,
  .sf-sectionTitle,
  .sf-mediaGrid,
  .sf-luxPanel,
  .sf-copyColumns,
  .sf-calloutBand{
    width: min(342px, calc(100vw - 48px));
    max-width: min(342px, calc(100vw - 48px)) !important;
  }

  .sf-editorialHero__content,
  .sf-editorialHero__actions,
  .sf-editorialHero__media,
  .sf-featurePanel__copy,
  .sf-featurePanel__image,
  .sf-calloutBand__inner{
    width: min(294px, calc(100vw - 96px));
    max-width: min(294px, calc(100vw - 96px)) !important;
  }

  .sf-editorialHero__content > *,
  .sf-featurePanel__copy > *,
  .sf-calloutBand__inner > *{
    max-width: 100% !important;
  }
}

/* Sponsor cards */
.sf-sponsors {
  padding-block: clamp(34px, 4vw, 52px);
  background:
    radial-gradient(900px 420px at 50% -10%, rgba(238, 0, 138, 0.10), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f7f4ea 100%);
}

.sf-sponsors__inner {
  width: min(100%, 1280px);
  max-width: 1280px !important;
  margin-inline: auto;
  padding-inline: clamp(14px, 2vw, 24px);
}

.sf-sponsors__title {
  margin: 0;
  text-align: center;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.12;
}

.sf-sponsors__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 13px auto 0;
  border-radius: 999px;
  background: var(--sf-gold);
}

.sf-sponsors__grid {
  display: grid;
  width: 100%;
  max-width: none !important;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  margin-top: 34px;
}

.sf-sponsor-card {
  display: flex;
  width: 100%;
  max-width: none !important;
  min-width: 0;
  min-height: 292px;
  flex-direction: column;
  padding: 14px;
  border: 1px solid rgba(43, 11, 63, 0.10);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(43, 11, 63, 0.10);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.sf-sponsors__grid > .sf-sponsor-card {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.sf-sponsor-card > :where(.wp-block-image, .wp-block-group, .wp-block-buttons) {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

.sf-sponsor-card:hover {
  transform: translateY(-2px);
  border-color: rgba(198, 155, 55, 0.42);
  box-shadow: 0 22px 52px rgba(43, 11, 63, 0.16);
}

.sf-sponsor-card__logo {
  display: grid;
  height: 96px;
  place-items: center;
  overflow: hidden;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(43, 11, 63, 0.07);
  border-radius: 6px;
  background: #ffffff;
  text-decoration: none;
}

.sf-sponsor-card__logo a {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

.sf-sponsor-card__logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 76px;
  object-fit: contain;
}

.sf-sponsor-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  padding: 15px 2px 10px;
  text-align: center;
}

.sf-sponsor-card__body > * {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.sf-sponsor-card__name {
  margin: 0;
  color: var(--sf-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sf-sponsor-card__product {
  min-height: 37px;
  margin: 8px 0 0;
  color: var(--sf-muted, #685f70);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.38;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.sf-sponsor-card__code {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 13px;
  padding: 7px 9px;
  border: 1px solid rgba(198, 155, 55, 0.44);
  border-radius: 999px;
  background: #f8f1df;
  white-space: nowrap;
}

.sf-sponsor-card__code span {
  color: #7c672d;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sf-sponsor-card__code strong {
  color: #221625;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.sf-sponsor-card__no-code {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-top: 13px;
  padding: 7px 9px;
  border: 1px solid rgba(43, 11, 63, 0.10);
  border-radius: 999px;
  background: #fafafa;
  color: #746b78;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sf-sponsor-card > .wp-block-buttons {
  width: 100%;
  margin-top: auto;
}

.sf-sponsor-card__instagram {
  width: 100%;
  margin-top: auto;
}

a.sf-sponsor-card__instagram,
.sf-sponsor-card__instagram .wp-block-button__link {
  display: inline-flex;
  width: 100%;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: auto;
  border-radius: 999px;
  background: linear-gradient(135deg, #833ab4, #e1306c 52%, #f77737);
  box-shadow: 0 10px 22px rgba(225, 48, 108, 0.20);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

a.sf-sponsor-card__instagram:hover,
.sf-sponsor-card__instagram .wp-block-button__link:hover {
  color: #ffffff;
  filter: brightness(1.04);
}

a.sf-sponsor-card__instagram::before,
.sf-sponsor-card__instagram .wp-block-button__link::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  background-color: currentColor;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='18' height='18' rx='5' fill='none' stroke='black' stroke-width='2'/%3E%3Ccircle cx='12' cy='12' r='4' fill='none' stroke='black' stroke-width='2'/%3E%3Ccircle cx='17.3' cy='6.7' r='1.2' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='18' height='18' rx='5' fill='none' stroke='black' stroke-width='2'/%3E%3Ccircle cx='12' cy='12' r='4' fill='none' stroke='black' stroke-width='2'/%3E%3Ccircle cx='17.3' cy='6.7' r='1.2' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
}

@media (max-width: 1180px) {
  .sf-sponsors__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sf-sponsor-card {
    min-height: 280px;
  }

  .sf-sponsor-card__logo {
    height: 104px;
  }

  .sf-sponsor-card__logo img {
    max-height: 82px;
  }
}

.sf-sponsors + .wp-block-group,
.wp-block-group:has(> .sf-sponsors) + .wp-block-group {
  margin-block-start: 0;
}

.wp-block-group.is-style-section-3{
  position: relative;
  overflow: hidden;
  color: var(--wp--preset--color--white);
  background:
    radial-gradient(900px 460px at 10% 0%, rgba(238, 0, 138, 0.28), transparent 60%),
    linear-gradient(180deg, var(--wp--preset--color--purple-deep) 0%, #1a0a2a 100%);
}

.wp-block-group.is-style-section-3 a{
  color: var(--wp--preset--color--gold-light);
}

.wp-block-group.is-style-section-3 .wp-block-button__link{
  background: var(--wp--preset--color--gold);
  color: var(--sf-ink);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.28);
}

.wp-block-group.is-style-section-3 .wp-block-button__link:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.32);
}

.sf-404 {
	padding-block: clamp(4rem, 8vw, 8rem);
	text-align: center;
}

/* Mobile: stack nicely */
@media (max-width: 781px){
  .sf-blockWrap{
    margin-inline: 12px;
  }

  .sf-contact-heroPP {
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
    padding: 20px !important;
    box-sizing: border-box;
  }

  .sf-contact-heroPP > .wp-block-columns {
    width: 100%;
    gap: 22px;
  }

  .sf-contact-heroPP > .wp-block-columns > .wp-block-column {
    min-width: 0;
    flex-basis: 100% !important;
  }

  .sf-contact-heroPP h2 {
    font-size: clamp(1.9rem, 9vw, 2.4rem);
  }

  .sf-contact-heroPP .wp-block-image img {
    max-height: none;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
  }

  .sf-heroPro__inner{
    margin-inline: 12px;
  }

  .wp-block-group.is-style-section-2 .wp-block-image img,
  .wp-block-group.is-style-section-5 .wp-block-image img{
    border-radius: 18px;
  }

  .wp-block-group.is-style-section-1 .wp-block-image{
    padding: 10px;
  }

  .sf-sponsors{
    padding-block: 34px 38px;
  }

  .sf-sponsors__grid{
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 26px;
  }

  .sf-sponsors__title{
    max-width: 12ch;
    margin-inline: auto;
  }

  .sf-sponsor-card{
    display: grid;
    min-height: 0;
    grid-template-columns: 92px minmax(0, 1fr);
    grid-template-areas:
      "logo body"
      "cta cta";
    align-items: center;
    column-gap: 14px;
    padding: 12px;
  }

  .sf-sponsor-card__logo{
    grid-area: logo;
    height: 92px;
  }

  .sf-sponsor-card__logo img{
    max-height: 70px;
  }

  .sf-sponsor-card__body{
    grid-area: body;
    align-items: flex-start;
    padding: 0;
    text-align: left;
  }

  .sf-sponsor-card__name{
    font-size: 13px;
  }

  .sf-sponsor-card__product{
    min-height: 0;
    margin-top: 6px;
    font-size: 11px;
  }

  .sf-sponsor-card__code,
  .sf-sponsor-card__no-code{
    margin-top: 10px;
  }

  .sf-sponsor-card > .wp-block-buttons{
    grid-area: cta;
    margin-top: 12px;
  }

  .sf-sponsor-card__instagram{
    min-height: 40px;
  }

  .wp-block-group.alignwide .wp-block-embed{
    border-radius: 14px;
  }

  .sf-blockWrap{ 
    padding: 16px;
    border-radius: 20px; 
}

  .sf-achLux__chipText{ 
    white-space: normal; 
  }

  .sf-counters .sf-counter{ 
    padding: 16px 14px; 
    border-color: rgba(0,0,0,0.12);
  }

 .sf-countersHeader .wp-block-heading::after{
    width: 56px;
  }

  .sf-contact-hero{
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  .sf-contact-hero h1{
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  line-height: 1.05;
  margin-bottom: 12px;
}

.sf-contact-hero p{
  font-size: 1.08rem;
  line-height: 1.75;
}

/* Spotlight Instagram feed: remove the white wrapper background (inline style override) */
.spotlight-instagram-feed .FeedLayout__wrapper{
  background-color: transparent !important;
  background: transparent !important;
}

.spotlight-instagram-feed .InstagramFeed__feed,
.spotlight-instagram-feed .FeedLayout__root,
.spotlight-instagram-feed .FeedGridLayout__root,
.spotlight-instagram-feed .FeedGridLayout__grid{
  background-color: transparent !important;
  background: transparent !important;
}


/* Mobile: tighter top padding, keep copy first */
  .sf-heroPro__inner { padding-block: 26px; }
  .sf-heroPro__stats{ max-width: 100%; }

/* Achievements Luxury compenent mobile rithm */
	.sf-achLux__card{ 
    padding: 18px;
    font-size: 0.96rem; 
  }
	.sf-achLux__chipText{ white-space: normal; }

  .sf-achLux__grid:has(> .wp-block-column:only-child) .sf-achLux__card--accent{
    padding: 22px;
  }

  .sf-achLux__grid:has(> .wp-block-column:only-child) .sf-achLux__card--accent .sf-achLux__cardHead{
    justify-content: flex-start;
    text-align: left;
  }

  .sf-achLux__grid:has(> .wp-block-column:only-child) .sf-achLux__card--accent .sf-achLux__list{
    column-count: 1;
  }
}

@media (min-width: 900px){
  .sf-page{
    padding-block: 64px;
  }
  .sf-page__inner{
    padding-inline: 0;
  }
}


