:root {
	--kcs-bg: #eef5ea;
	--kcs-surface: #ffffff;
	--kcs-surface-alt: #23513a;
	--kcs-surface-strong: #1a1f1c;
	--kcs-line: rgba(32, 64, 64, 0.14);
	--kcs-text: #1f2c22;
	--kcs-text-soft: #5a695d;
	--kcs-accent: #4d9b43;
	--kcs-accent-strong: #2f6c44;
	--kcs-accent-2: #8bbc2b;
	--kcs-white: #ffffff;
	--kcs-shadow: 0 24px 60px rgba(26, 31, 28, 0.12);
	--kcs-radius-lg: 32px;
	--kcs-radius-md: 20px;
	--kcs-radius-sm: 14px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Outfit", sans-serif;
	background:
		radial-gradient(circle at top left, rgba(141, 188, 43, 0.18), transparent 30%),
		radial-gradient(circle at top right, rgba(77, 155, 67, 0.14), transparent 24%),
		var(--kcs-bg);
	color: var(--kcs-text);
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
}

.kcs-container {
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
}

.kcs-site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(32, 64, 64, 0.08);
	transition: transform 0.24s ease;
	will-change: transform;
}

.kcs-site-header.is-hidden {
	transform: translateY(-100%);
}

.kcs-header-inner {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 18px 0;
}

.kcs-brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	margin-right: auto;
}

.kcs-brand-mark {
	display: grid;
	place-items: center;
	width: 70px;
	height: 70px;
	border-radius: 0;
	background: var(--kcs-white);
	overflow: hidden;
}

.kcs-brand-mark img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.kcs-brand-copy {
	display: grid;
	gap: 4px;
}

.kcs-brand-copy strong,
.kcs-brand-copy small {
	display: block;
}

.kcs-brand-copy strong {
	font-size: 1rem;
}

.kcs-brand-copy small {
	color: var(--kcs-text-soft);
}

.kcs-nav-list,
.kcs-mobile-list,
.kcs-footer-menu {
	display: flex;
	gap: 18px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.kcs-nav-list {
	gap: 30px;
}

.kcs-nav-list > li {
	position: relative;
}

.kcs-nav-list .sub-menu {
	position: absolute;
	top: calc(100% + 12px);
	left: 0;
	display: grid;
	gap: 8px;
	min-width: 220px;
	padding: 14px;
	margin: 0;
	list-style: none;
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid rgba(32, 64, 64, 0.08);
	border-radius: 18px;
	box-shadow: 0 20px 36px rgba(26, 31, 28, 0.12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
	z-index: 20;
}

.kcs-nav-list li:hover > .sub-menu,
.kcs-nav-list li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.kcs-nav-list .sub-menu a {
	display: block;
	padding: 10px 12px;
	border-radius: 12px;
	background: transparent;
}

.kcs-nav-list .sub-menu a:hover,
.kcs-nav-list .sub-menu a:focus-visible {
	background: rgba(141, 188, 43, 0.12);
	color: var(--kcs-text);
}

.kcs-nav-list a,
.kcs-mobile-list a,
.kcs-footer-menu a {
	font-size: 0.96rem;
	color: var(--kcs-text-soft);
}

.kcs-nav-list a:hover,
.kcs-mobile-list a:hover,
.kcs-footer-menu a:hover {
	color: var(--kcs-text);
}

.kcs-header-actions,
.kcs-mobile-actions,
.kcs-hero-actions,
.kcs-cta-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.kcs-cta-actions .kcs-button {
	flex: 1 1 220px;
}

.kcs-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 20px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--kcs-accent), var(--kcs-accent-strong));
	color: var(--kcs-white);
	font-weight: 600;
	box-shadow: 0 14px 28px rgba(47, 108, 68, 0.22);
}

.kcs-button.is-ghost {
	background: transparent;
	color: var(--kcs-text);
	border: 1px solid var(--kcs-line);
	box-shadow: none;
}

.kcs-button.is-light {
	background: linear-gradient(135deg, var(--kcs-accent), var(--kcs-accent-strong));
	color: var(--kcs-white);
	border-color: transparent;
	box-shadow: 0 14px 28px rgba(47, 108, 68, 0.18);
}

.kcs-button:hover {
	transform: translateY(-1px);
}

.kcs-feature-card .kcs-button.is-ghost:hover {
	background: linear-gradient(135deg, var(--kcs-accent), var(--kcs-accent-strong));
	color: var(--kcs-white);
	border-color: transparent;
	box-shadow: 0 14px 28px rgba(47, 108, 68, 0.22);
}

.kcs-menu-toggle,
.kcs-mobile-panel {
	display: none;
}

.kcs-hero,
.kcs-section,
.kcs-page-shell,
.kcs-page-hero {
	padding: 72px 0;
}

.kcs-hero-grid,
.kcs-split-grid,
.kcs-footer-grid {
	display: grid;
	gap: 28px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kcs-footer-grid {
	align-items: start;
	grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.8fr) minmax(180px, 0.8fr);
}

.kcs-footer-grid > div:nth-child(2) {
	transform: translateX(24px);
}

.kcs-hero-copy h1,
.kcs-section-heading h2,
.kcs-page-hero h1,
.kcs-footer-grid h2,
.kcs-cta-band h2,
.kcs-split-grid h2 {
	margin: 0;
	font-family: "Space Grotesk", sans-serif;
	line-height: 0.96;
	letter-spacing: -0.04em;
}

.kcs-hero-copy h1 {
	font-size: clamp(2.025rem, 4.65vw, 4.05rem);
	max-width: none;
}

.kcs-page-hero h1,
.kcs-section-heading h2,
.kcs-split-grid h2,
.kcs-cta-band h2,
.kcs-footer-grid h2 {
	font-size: clamp(2rem, 4vw, 3.5rem);
}

.kcs-section-heading h2 {
	padding-bottom: 28px;
}

.kcs-eyebrow,
.kcs-card-kicker,
.kcs-footer-kicker {
	margin: 0 0 14px;
	color: var(--kcs-accent-strong);
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-weight: 700;
	font-size: 0.82rem;
}

.kcs-lead,
.kcs-entry-content,
.kcs-feature-card p,
.kcs-checklist p,
.kcs-hero-card p,
.kcs-footer-grid p,
.kcs-page-hero p {
	color: var(--kcs-text-soft);
	font-size: 1.05rem;
	line-height: 1.75;
}

.kcs-hero-panel {
	display: grid;
	gap: 20px;
	align-content: end;
}

.kcs-hero-visual {
	position: relative;
	aspect-ratio: 6 / 4;
	border-radius: var(--kcs-radius-lg);
	overflow: hidden;
	box-shadow: var(--kcs-shadow);
	border: 1px solid rgba(32, 64, 64, 0.08);
	background: var(--kcs-surface);
}

.kcs-hero-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 32%;
	display: block;
}

.kcs-hero-overlay {
	position: absolute;
	inset: 0;
	display: grid;
	align-content: end;
	gap: 10px;
	padding: 22px;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.56) 34%, rgba(0, 0, 0, 0.18) 62%, rgba(0, 0, 0, 0.04) 100%),
		linear-gradient(180deg, rgba(26, 31, 28, 0.08) 0%, rgba(26, 31, 28, 0.18) 45%, rgba(26, 31, 28, 0.48) 100%);
	color: var(--kcs-white);
}

.kcs-hero-overlay .kcs-card-kicker {
	color: #c5ef79;
}

.kcs-hero-overlay h2 {
	margin: 0;
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(1.6rem, 2.5vw, 2.3rem);
	line-height: 1;
	max-width: 10ch;
}

.kcs-hero-overlay p {
	margin: 0;
	max-width: 34ch;
	color: rgba(255, 255, 255, 0.86);
}

.kcs-hero-card,
.kcs-feature-card,
.kcs-cta-band,
.kcs-entry,
.kcs-checklist > div {
	background: var(--kcs-surface);
	border: 1px solid rgba(19, 38, 31, 0.08);
	border-radius: var(--kcs-radius-lg);
	box-shadow: var(--kcs-shadow);
}

.kcs-hero-card {
	padding: 28px;
	min-height: 320px;
	background:
		linear-gradient(145deg, rgba(141, 188, 43, 0.18), rgba(255, 255, 255, 0.94)),
		var(--kcs-surface);
}

.kcs-hero-card h2 {
	margin: 0 0 18px;
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(1.9rem, 3vw, 2.8rem);
	line-height: 1;
}

.kcs-week-list {
	display: grid;
	gap: 14px;
}

.kcs-week-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 18px;
	border: 1px solid rgba(32, 64, 64, 0.08);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.78);
}

.kcs-week-item__type {
	margin: 0 0 6px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--kcs-accent-strong);
}

.kcs-week-item h3 {
	margin: 0 0 4px;
	font-size: 1.1rem;
}

.kcs-week-item p {
	margin: 0;
	color: var(--kcs-text-soft);
}

.kcs-week-item__spaces {
	margin-top: 8px;
	font-weight: 700;
	color: var(--kcs-accent-strong);
}

.kcs-week-item__action {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
}

.kcs-hero-aside {
	display: grid;
	gap: 12px;
	padding: 22px 24px;
	border-radius: var(--kcs-radius-md);
	background: linear-gradient(160deg, #234632, #1a1f1c);
	color: var(--kcs-white);
}

.kcs-hero-aside p {
	margin: 0;
}

.kcs-pill-row,
.kcs-metric-list {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	gap: 12px;
	padding: 24px;
	margin: 28px 0 0;
	list-style: none;
	aspect-ratio: 1 / 1;
	border-radius: var(--kcs-radius-lg);
	overflow: hidden;
	background: var(--kcs-surface-strong);
	box-shadow: var(--kcs-shadow);
}

.kcs-metric-list {
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
}

.kcs-metric-list::before {
	position: absolute;
	inset: 0;
	content: "";
	background:
		linear-gradient(180deg, rgba(26, 31, 28, 0.08) 0%, rgba(26, 31, 28, 0.2) 42%, rgba(26, 31, 28, 0.72) 100%),
		url("../images/home-metrics-padel-racket-ball-net.jpeg");
	background-position: center;
	background-size: cover;
}

.kcs-pill-row span,
.kcs-metric-list li {
	background: var(--kcs-white);
	border: 1px solid rgba(32, 64, 64, 0.08);
	border-radius: 18px;
	padding: 12px 14px;
}

.kcs-metric-list li {
	position: relative;
	z-index: 1;
	flex: 0 1 calc(50% - 6px);
	min-width: 0;
	align-self: flex-start;
	padding: 10px 12px;
}

.kcs-metric-list strong,
.kcs-metric-list span {
	display: block;
}

.kcs-metric-list strong {
	color: var(--kcs-text);
	font-size: 0.96rem;
	line-height: 1.2;
}

.kcs-metric-list span {
	color: var(--kcs-text-soft);
	font-size: 0.88rem;
	line-height: 1.35;
}

.kcs-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.kcs-feature-card,
.kcs-checklist > div {
	padding: 26px;
}

.kcs-feature-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.kcs-feature-card h3,
.kcs-checklist h3 {
	margin: 0 0 12px;
	font-size: 1.45rem;
}

.kcs-feature-card .kcs-button {
	margin-top: auto;
}

.kcs-section.is-contrast {
	background: linear-gradient(180deg, rgba(31, 44, 34, 0.98), rgba(35, 81, 58, 0.96));
	color: var(--kcs-white);
}

.kcs-section.is-contrast .kcs-eyebrow,
.kcs-section.is-contrast .kcs-card-kicker {
	color: #a5d85b;
}

.kcs-section.is-contrast p {
	color: rgba(255, 255, 255, 0.78);
}

.kcs-checklist {
	display: grid;
	gap: 18px;
}

.kcs-checklist > div {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.08);
	box-shadow: none;
}

.kcs-cta-band {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 28px 32px;
}

.kcs-page-hero {
	padding-bottom: 24px;
}

.kcs-page-hero.is-padel-hero,
.kcs-page-hero.is-table-tennis-hero,
.kcs-page-hero.is-sponsorship-hero,
.kcs-page-hero.is-classes-hero,
.kcs-page-hero.is-membership-hero,
.kcs-page-hero.is-contact-hero {
	position: relative;
	display: flex;
	align-items: flex-start;
	min-height: min(45vh, 455px);
	padding: 88px 0 44px;
	overflow: hidden;
	background: var(--kcs-surface-strong);
}

.kcs-page-hero.is-padel-hero::before {
	position: absolute;
	inset: -6%;
	content: "";
	background-image: url("../images/padel-ball-in-net-2.png");
	background-position: center 56%;
	background-size: cover;
	transform: scaleX(-1) scale(0.92);
	transform-origin: center;
}

.kcs-page-hero.is-table-tennis-hero::before {
	position: absolute;
	inset: -6%;
	content: "";
	background-image: url("../images/table-tennis-hero.jpeg");
	background-position: center 38%;
	background-size: cover;
	transform: scale(0.92);
	transform-origin: center;
}
.kcs-page-hero.is-sponsorship-hero::before {
	position: absolute;
	inset: -6%;
	content: "";
	background-image: url("../images/sponsorship-hero.jpeg");
	background-position: center 82%;
	background-size: cover;
	transform: scaleX(-1) scale(0.92);
	transform-origin: center;
}

.kcs-page-hero.is-classes-hero::before {
	position: absolute;
	inset: -6%;
	content: "";
	background-image: url("../images/classes-hero.jpeg");
	background-position: center 75%;
	background-size: cover;
	transform: scaleX(-1) scale(0.92);
	transform-origin: center;
}

.kcs-page-hero.is-membership-hero::before {
	position: absolute;
	inset: -6%;
	content: "";
	background-image: url("../images/membership-hero.jpeg");
	background-position: center 34%;
	background-size: cover;
	transform: scale(0.92);
	transform-origin: center;
}

.kcs-page-hero.is-contact-hero::before {
	position: absolute;
	inset: -6%;
	content: "";
	background-image: url("../images/contact-hero.jpeg");
	background-position: center 58%;
	background-size: cover;
	transform: scale(0.92);
	transform-origin: center;
}

.kcs-page-hero.is-padel-hero::after,
.kcs-page-hero.is-table-tennis-hero::after,
.kcs-page-hero.is-sponsorship-hero::after,
.kcs-page-hero.is-classes-hero::after,
.kcs-page-hero.is-membership-hero::after,
.kcs-page-hero.is-contact-hero::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(90deg, rgba(26, 31, 28, 0.62), rgba(26, 31, 28, 0.12) 54%, rgba(26, 31, 28, 0.18));
}

.kcs-page-hero.is-padel-hero .kcs-page-hero-inner,
.kcs-page-hero.is-table-tennis-hero .kcs-page-hero-inner,
.kcs-page-hero.is-sponsorship-hero .kcs-page-hero-inner,
.kcs-page-hero.is-classes-hero .kcs-page-hero-inner,
.kcs-page-hero.is-membership-hero .kcs-page-hero-inner,
.kcs-page-hero.is-contact-hero .kcs-page-hero-inner {
	position: relative;
	z-index: 2;
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
	text-align: left;
}

.kcs-page-hero.is-padel-hero .kcs-eyebrow,
.kcs-page-hero.is-table-tennis-hero .kcs-eyebrow,
.kcs-page-hero.is-sponsorship-hero .kcs-eyebrow,
.kcs-page-hero.is-classes-hero .kcs-eyebrow,
.kcs-page-hero.is-membership-hero .kcs-eyebrow,
.kcs-page-hero.is-contact-hero .kcs-eyebrow {
	margin: 0 0 8px;
	color: var(--kcs-accent-2);
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(1.35rem, 3vw, 2.75rem);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 0.95;
	text-align: left;
	text-transform: none;
}

.kcs-page-hero.is-padel-hero h1,
.kcs-page-hero.is-table-tennis-hero h1,
.kcs-page-hero.is-sponsorship-hero h1,
.kcs-page-hero.is-classes-hero h1,
.kcs-page-hero.is-membership-hero h1,
.kcs-page-hero.is-contact-hero h1 {
	color: var(--kcs-white);
	font-size: clamp(2.75rem, 6vw, 5.5rem);
	line-height: 0.88;
	max-width: 640px;
	text-align: left;
}

.kcs-entry {
	padding: 32px;
}

.kcs-entry h2,
.kcs-entry h3 {
	font-family: "Space Grotesk", sans-serif;
}

.kcs-entry-content > :first-child {
	margin-top: 0;
}

.kcs-entry-content iframe,
.kcs-entry-content table {
	max-width: 100%;
}

.kcs-entry-content .wp-block-columns,
.kcs-entry-content .wp-block-group {
	margin-bottom: 24px;
}

.kcs-content-stack {
	display: grid;
	gap: 24px;
}

.kcs-page-addon {
	margin-top: 24px;
}

.kcs-page-hero.is-padel-hero + .kcs-page-shell .kcs-content-stack,
.kcs-page-hero.is-table-tennis-hero + .kcs-page-shell .kcs-content-stack,
.kcs-page-hero.is-sponsorship-hero + .kcs-page-shell .kcs-content-stack,
.kcs-page-hero.is-classes-hero + .kcs-page-shell .kcs-content-stack,
.kcs-page-hero.is-membership-hero + .kcs-page-shell .kcs-content-stack,
.kcs-page-hero.is-contact-hero + .kcs-page-shell .kcs-content-stack {
	gap: 36px;
}

.kcs-page-hero.is-padel-hero + .kcs-page-shell .kcs-page-addon,
.kcs-page-hero.is-table-tennis-hero + .kcs-page-shell .kcs-page-addon,
.kcs-page-hero.is-sponsorship-hero + .kcs-page-shell .kcs-page-addon,
.kcs-page-hero.is-classes-hero + .kcs-page-shell .kcs-page-addon,
.kcs-page-hero.is-membership-hero + .kcs-page-shell .kcs-page-addon,
.kcs-page-hero.is-contact-hero + .kcs-page-shell .kcs-page-addon {
	margin-top: 36px;
}

.kcs-page-addon--full-bleed {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.kcs-page-hero.is-table-tennis-hero + .kcs-page-shell {
	background: linear-gradient(180deg, rgba(238, 245, 234, 0) 0%, rgba(230, 239, 226, 0.65) 24%, rgba(219, 233, 214, 0.95) 100%);
}

.kcs-page-hero.is-table-tennis-hero + .kcs-page-shell .kcs-entry {
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.kcs-page-hero.is-table-tennis-hero + .kcs-page-shell .kcs-entry-content {
	display: grid;
	gap: 32px;
}

.kcs-intro-card,
.kcs-embed-card,
.kcs-info-grid > div {
	padding: 28px;
	background: var(--kcs-surface);
	border: 1px solid rgba(32, 64, 64, 0.08);
	border-radius: var(--kcs-radius-md);
	box-shadow: var(--kcs-shadow);
}

.kcs-intro-card h2,
.kcs-info-grid h3 {
	margin-top: 0;
	font-family: "Space Grotesk", sans-serif;
}

.kcs-intro-card h2 {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.kcs-intro-card p,
.kcs-info-grid p {
	margin-bottom: 0;
	color: var(--kcs-text-soft);
}

.kcs-info-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.kcs-contact-map {
	margin-top: 24px;
}

.kcs-contact-map iframe {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	border: 0;
	border-radius: 18px;
	box-shadow: 0 16px 34px rgba(26, 31, 28, 0.12);
}

.kcs-contact-map__link {
	margin-top: 12px;
}

.kcs-contact-map__link a {
	color: var(--kcs-accent-strong);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 0.16em;
}

.kcs-padel-highlights {
	padding: 30px 32px 32px;
	background:
		linear-gradient(145deg, rgba(141, 188, 43, 0.14), rgba(255, 255, 255, 0.98) 38%),
		var(--kcs-surface);
	border: 1px solid rgba(32, 64, 64, 0.08);
	border-radius: var(--kcs-radius-md);
	box-shadow: var(--kcs-shadow);
}

.kcs-padel-highlights-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	padding: 0;
	margin: 18px 0 0;
	list-style: none;
}

.kcs-padel-highlights-list li {
	position: relative;
	padding: 18px 18px 18px 58px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(32, 64, 64, 0.08);
	border-radius: 20px;
}

.kcs-padel-highlights-list li::before {
	position: absolute;
	top: 20px;
	left: 18px;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	content: "";
	background:
		radial-gradient(circle at center, var(--kcs-accent-2) 0 32%, transparent 36%),
		linear-gradient(145deg, var(--kcs-accent), var(--kcs-accent-strong));
	box-shadow: 0 10px 18px rgba(47, 108, 68, 0.22);
}

.kcs-padel-highlights-list strong,
.kcs-padel-highlights-list span {
	display: block;
}

.kcs-padel-highlights-list strong {
	margin-bottom: 6px;
	font-family: "Space Grotesk", sans-serif;
	font-size: 1.05rem;
	line-height: 1.2;
	color: var(--kcs-text);
}

.kcs-padel-highlights-list span {
	color: var(--kcs-text-soft);
	line-height: 1.65;
}

.kcs-padel-club-nights {
	padding: 47px 0;
	background:
		linear-gradient(160deg, rgba(26, 31, 28, 0.96), rgba(35, 70, 50, 0.92)),
		var(--kcs-surface-strong);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--kcs-radius-md);
	box-shadow: var(--kcs-shadow);
	color: var(--kcs-white);
}

.kcs-padel-club-nights__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
	gap: 24px;
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
}

.kcs-padel-club-nights .kcs-card-kicker {
	color: #c5ef79;
}

.kcs-padel-club-nights__intro h2,
.kcs-padel-club-nights__row h3 {
	margin-top: 0;
	font-family: "Space Grotesk", sans-serif;
}

.kcs-padel-club-nights__intro h2 {
	margin-bottom: 14px;
	font-size: clamp(1.9rem, 3vw, 2.8rem);
	line-height: 0.98;
}

.kcs-padel-club-nights__intro p {
	margin: 0 0 14px;
	color: rgba(255, 255, 255, 0.84);
}

.kcs-padel-club-nights__intro p:last-child {
	margin-bottom: 0;
}

.kcs-padel-club-nights__intro a {
	color: var(--kcs-white);
	text-decoration: underline;
	text-underline-offset: 0.16em;
}

.kcs-padel-club-nights__table {
	display: grid;
	gap: 14px;
	align-content: start;
}

.kcs-padel-club-nights__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 20px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 20px;
	backdrop-filter: blur(8px);
}

.kcs-padel-club-nights__day {
	margin: 0 0 4px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #c5ef79;
}

.kcs-padel-club-nights__row h3,
.kcs-padel-club-nights__time {
	margin: 0;
}

.kcs-padel-club-nights__row h3 {
	font-size: 1.2rem;
}

.kcs-padel-club-nights__time {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(141, 188, 43, 0.18);
	color: var(--kcs-white);
	font-family: "Space Grotesk", sans-serif;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-decoration: none;
}

.kcs-contact-panel__inner {
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
	align-items: start;
}

.kcs-contact-panel__header {
	grid-column: 1 / -1;
}

.kcs-contact-panel__header .kcs-card-kicker {
	margin-bottom: 10px;
}

.kcs-contact-panel__header h2 {
	margin: 0;
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(1.9rem, 3vw, 2.8rem);
	line-height: 0.98;
}

.kcs-contact-panel__intro p {
	margin: 0 0 14px;
}

.kcs-contact-panel__intro {
	padding-right: 25px;
}

.kcs-contact-panel__table {
	align-self: stretch;
}

.kcs-padel-faq {
	padding: 30px 32px 32px;
	background: var(--kcs-surface);
	border: 1px solid rgba(32, 64, 64, 0.08);
	border-radius: var(--kcs-radius-md);
	box-shadow: var(--kcs-shadow);
}

.kcs-padel-faq h2,
.kcs-padel-faq h3 {
	margin-top: 0;
	font-family: "Space Grotesk", sans-serif;
}

.kcs-padel-faq h2 {
	margin-bottom: 18px;
	font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.kcs-padel-faq-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.kcs-padel-faq-item {
	padding: 22px 22px 20px;
	background: rgba(238, 245, 234, 0.62);
	border: 1px solid rgba(32, 64, 64, 0.08);
	border-radius: 20px;
}

.kcs-padel-faq-item h3 {
	margin-bottom: 10px;
	font-size: 1.12rem;
	line-height: 1.22;
	color: var(--kcs-text);
}

.kcs-padel-faq-item p {
	margin: 0;
	color: var(--kcs-text-soft);
	line-height: 1.7;
}

.kcs-padel-faq-item a {
	color: var(--kcs-accent-strong);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 0.16em;
}

.kcs-tt-page {
	display: grid;
	gap: 32px;
}

.kcs-tt-hero,
.kcs-tt-grid,
.kcs-tt-split {
	display: grid;
	gap: 24px;
}

.kcs-tt-wide {
	display: block;
}

.kcs-tt-hero {
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
	align-items: stretch;
}

.kcs-tt-grid,
.kcs-tt-split {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kcs-tt-hero-copy,
.kcs-tt-card,
.kcs-tt-note {
	padding: 30px 32px;
	background: var(--kcs-surface);
	border: 1px solid rgba(32, 64, 64, 0.08);
	border-radius: var(--kcs-radius-md);
	box-shadow: var(--kcs-shadow);
}

.kcs-tt-hero-copy {
	background:
		radial-gradient(circle at top right, rgba(141, 188, 43, 0.16), transparent 34%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 245, 234, 0.92)),
		var(--kcs-surface);
}

.kcs-tt-hero-copy h2,
.kcs-tt-card h3,
.kcs-tt-note h3 {
	margin-top: 0;
	font-family: "Space Grotesk", sans-serif;
}

.kcs-tt-hero-copy h2 {
	margin-bottom: 14px;
	font-size: clamp(2rem, 4vw, 3.2rem);
	line-height: 0.95;
	max-width: 10ch;
}

.kcs-tt-hero-copy p,
.kcs-tt-card p,
.kcs-tt-note p {
	color: var(--kcs-text-soft);
}

.kcs-tt-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding: 0;
	margin: 26px 0 0;
	list-style: none;
}

.kcs-tt-pills li {
	padding: 11px 14px;
	border-radius: 999px;
	background: rgba(35, 81, 58, 0.08);
	color: var(--kcs-text);
	font-size: 0.92rem;
	font-weight: 600;
}

.kcs-tt-placeholder {
	display: grid;
	place-items: center;
	min-height: 320px;
	padding: 28px;
	border: 2px dashed rgba(35, 81, 58, 0.24);
	border-radius: var(--kcs-radius-md);
	background:
		linear-gradient(135deg, rgba(35, 81, 58, 0.08), rgba(141, 188, 43, 0.12)),
		repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.62) 0 14px, rgba(238, 245, 234, 0.86) 14px 28px);
	text-align: center;
}

.kcs-tt-placeholder strong,
.kcs-tt-placeholder span {
	display: block;
}

.kcs-tt-placeholder strong {
	margin-bottom: 8px;
	font-family: "Space Grotesk", sans-serif;
	font-size: 1.2rem;
	color: var(--kcs-text);
}

.kcs-tt-placeholder span {
	max-width: 22ch;
	color: var(--kcs-text-soft);
	line-height: 1.6;
}

.kcs-tt-image-card {
	display: grid;
	place-items: center;
	min-height: 320px;
	padding: 0;
	border: 1px solid rgba(32, 64, 64, 0.08);
	border-radius: var(--kcs-radius-md);
	background: var(--kcs-surface);
	overflow: hidden;
}

.kcs-tt-image-card img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
}

.kcs-tt-card h3,
.kcs-tt-note h3 {
	margin-bottom: 16px;
	font-size: 1.45rem;
}

.kcs-tt-card--wide {
	width: 100%;
}

.kcs-tt-schedule {
	display: grid;
	gap: 14px;
}

.kcs-tt-schedule--pricing {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kcs-tt-schedule-item,
.kcs-tt-pricing-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 18px;
	border: 1px solid rgba(32, 64, 64, 0.08);
	border-radius: 18px;
	background: rgba(238, 245, 234, 0.56);
}

.kcs-tt-schedule-item strong,
.kcs-tt-pricing-item strong {
	display: block;
	margin-bottom: 4px;
	color: var(--kcs-text);
}

.kcs-tt-schedule-item span:not(.kcs-tt-time),
.kcs-tt-pricing-item span:not(.kcs-tt-price) {
	color: var(--kcs-text-soft);
	line-height: 1.5;
}

.kcs-tt-time,
.kcs-tt-price {
	flex: 0 0 auto;
	padding: 10px 14px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--kcs-accent), var(--kcs-accent-strong));
	color: var(--kcs-white);
	font-family: "Space Grotesk", sans-serif;
	font-weight: 700;
}

.kcs-tt-feature-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.kcs-tt-feature-list li {
	padding: 16px 16px 16px 46px;
	position: relative;
	border: 1px solid rgba(32, 64, 64, 0.08);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.82);
	color: var(--kcs-text);
	font-weight: 600;
}

.kcs-tt-feature-list li::before {
	position: absolute;
	top: 15px;
	left: 16px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	content: "";
	background: linear-gradient(145deg, var(--kcs-accent), var(--kcs-accent-strong));
	box-shadow: 0 0 0 5px rgba(141, 188, 43, 0.14);
}

.kcs-tt-card a,
.kcs-tt-note a,
.kcs-tt-hero-copy a {
	color: var(--kcs-accent-strong);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 0.16em;
}

.kcs-tt-note {
	background:
		linear-gradient(145deg, rgba(35, 81, 58, 0.98), rgba(26, 31, 28, 0.98)),
		var(--kcs-surface-strong);
	color: var(--kcs-white);
}

.kcs-tt-note p {
	color: rgba(255, 255, 255, 0.82);
}

.kcs-site-footer {
	padding: 72px 0 40px;
	background: var(--kcs-surface-strong);
	color: var(--kcs-white);
}

.kcs-site-footer a {
	color: rgba(255, 255, 255, 0.88);
}

.kcs-footer-sponsors {
	padding-top: 30px;
	margin-top: 34px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	text-align: center;
}

.kcs-sponsor-logos {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	align-items: center;
	justify-content: center;
}

.kcs-sponsor-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 220px;
	height: 82px;
}

.kcs-sponsor-logo img {
	display: block;
	max-width: 100%;
	max-height: 54px;
	object-fit: contain;
}

.kcs-sponsorship-sponsors {
	padding: 28px;
	margin-top: 24px;
	background: var(--kcs-surface);
	border: 1px solid rgba(32, 64, 64, 0.08);
	border-radius: var(--kcs-radius-md);
	box-shadow: var(--kcs-shadow);
}

.kcs-sponsorship-sponsors h2 {
	margin-top: 0;
	margin-bottom: 14px;
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.kcs-sponsorship-sponsors p:not(.kcs-card-kicker) {
	color: var(--kcs-text-soft);
}

.kcs-sponsorship-sponsors .kcs-sponsor-logos {
	justify-content: flex-start;
	margin-top: 22px;
}

.kcs-footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	align-items: center;
	padding-top: 28px;
	margin-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.kcs-footer-menu {
	flex-wrap: wrap;
	justify-content: flex-end;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 1024px) {
	.kcs-nav-list,
	.kcs-header-actions {
		display: none;
	}

	.kcs-menu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		padding: 12px 16px;
		border-radius: 999px;
		border: 1px solid var(--kcs-line);
		background: transparent;
	}

	.kcs-mobile-panel.is-open {
		display: block;
		padding: 0 0 18px;
	}

	.kcs-mobile-list {
		flex-direction: column;
		padding: 12px 0;
	}

	.kcs-mobile-list .sub-menu {
		display: grid;
		gap: 10px;
		padding: 10px 0 0 16px;
		margin: 0;
		list-style: none;
	}

	.kcs-hero-grid,
	.kcs-split-grid,
	.kcs-footer-grid,
	.kcs-card-grid,
	.kcs-cta-band,
	.kcs-info-grid {
		grid-template-columns: 1fr;
	}

	.kcs-footer-grid > div:nth-child(2) {
		transform: none;
	}

	.kcs-week-item {
		flex-direction: column;
		align-items: flex-start;
	}

	.kcs-padel-highlights-list {
		grid-template-columns: 1fr;
	}

	.kcs-padel-club-nights__inner {
		grid-template-columns: 1fr;
	}

	.kcs-padel-club-nights__row {
		align-items: flex-start;
		flex-direction: column;
	}

	.kcs-padel-faq-list {
		grid-template-columns: 1fr;
	}

	.kcs-tt-hero,
	.kcs-tt-grid,
	.kcs-tt-split,
	.kcs-tt-feature-list {
		grid-template-columns: 1fr;
	}

}

@media (max-width: 720px) {
	.kcs-hero,
	.kcs-section,
	.kcs-page-shell,
	.kcs-page-hero {
		padding: 56px 0;
	}

	.kcs-page-hero.is-padel-hero,
.kcs-page-hero.is-table-tennis-hero,
.kcs-page-hero.is-sponsorship-hero,
.kcs-page-hero.is-classes-hero,
.kcs-page-hero.is-membership-hero,
.kcs-page-hero.is-contact-hero {
		min-height: 320px;
		padding: 56px 0 32px;
	}

	.kcs-header-inner {
		flex-wrap: wrap;
	}

	.kcs-brand-copy small {
		font-size: 0.82rem;
	}

	.kcs-brand-mark {
		width: 58px;
		height: 58px;
		border-radius: 0;
	}

	.kcs-entry,
	.kcs-feature-card,
	.kcs-hero-card,
	.kcs-cta-band,
	.kcs-checklist > div {
		padding: 22px;
		border-radius: 24px;
	}

	.kcs-footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.kcs-tt-hero-copy,
	.kcs-tt-card,
	.kcs-tt-note,
	.kcs-tt-placeholder {
		padding: 24px 22px;
	}

	.kcs-tt-schedule-item,
	.kcs-tt-pricing-item {
		align-items: flex-start;
		flex-direction: column;
	}

	.kcs-tt-schedule--pricing {
		grid-template-columns: 1fr;
	}
}

.kcs-hero-scroll {
	margin-top: 20px;
}

.kcs-scroll-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	border-radius: 999px;
	border: 1px solid rgba(32, 64, 64, 0.12);
	background: rgba(255, 255, 255, 0.72);
	color: var(--kcs-text);
	font-weight: 600;
	box-shadow: 0 10px 24px rgba(26, 31, 28, 0.08);
}

.kcs-scroll-link:hover {
	transform: translateY(-1px);
	border-color: rgba(77, 155, 67, 0.36);
	color: var(--kcs-accent-strong);
}

.kcs-scroll-link__arrow {
	display: inline-grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--kcs-accent), var(--kcs-accent-strong));
	color: var(--kcs-white);
	font-size: 0.95rem;
	line-height: 1;
}





.kcs-section--core {
	padding-top: 42px;
	background: linear-gradient(180deg, rgba(238, 245, 234, 0) 0%, rgba(230, 239, 226, 0.65) 28%, rgba(219, 233, 214, 0.95) 100%);
}



@media (max-width: 720px) {
	.kcs-section--core {
		padding-top: 24px;
	}
}
