/*
Theme Name: Kanvartfuly
Description: Custom theme for Kanvartfuly Art Space — ports the original static site design (header, homepage, footer, styling). Pairs with the Kanvartfuly Core plugin for dynamic content. Does not require Elementor.
Version: 1.0.0
Author: Kanvartfuly
Requires at least: 6.8
Tested up to: 7.0
Requires PHP: 8.2
Text Domain: kanvartfuly
*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --teal: #01726f;
  --teal-deep: #024c4a;
  --teal-darkest: #012e2d;
  --mint: #3cd3c4;
  --mint-light: #ade5a3;
  --coral: #e02045;
  --coral-soft: #ff7d96;
  --yellow: #fcc12b;
  --cream: #fdf8ef;
  --ink: #01726f;
  --body-text: #3a4a4a;
  --white: #ffffff;
  --shadow-lg: 0 30px 60px -20px rgba(1, 72, 72, 0.25);
  --shadow-md: 0 12px 30px -10px rgba(1, 72, 72, 0.18);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat", sans-serif;
  color: var(--body-text);
  background: var(--cream);
  line-height: 1.55;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--teal);
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 248, 239, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(1, 114, 111, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  position: relative;
  transition: color 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 90px;
  width: 0;
  height: 2px;

  transition: width 0.3s ease;
}
.nav-links a:hover {
  color: var(--coral);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  background: var(--coral);
  color: white;
  padding: 11px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(224, 32, 69, 0.4);
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--teal);
}

/* HERO (landing only) */
.hero {
  background: var(--teal);
  color: white;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(48px, 7vw, 88px);
  margin-bottom: 16px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: white;
}
.hero h1 .accent {
  color: white;
  display: block;
}
.hero-tagline {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 24px;
  max-width: 520px;
  line-height: 1.35;
}
.hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.6;
}
.hero-visual {
  position: relative;
  height: 540px;
}
.hero-img {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-img-1 {
  top: 0;
  right: 0;
  width: 78%;
  height: 80%;
}
.hero-img-2 {
  bottom: 0;
  left: 0;
  width: 48%;
  height: 42%;
  border: 6px solid var(--teal);
}
.hero-badge {
  position: absolute;
  top: 30px;
  left: 20px;
  background: white;
  color: var(--teal);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: var(--shadow-md);
  z-index: 3;
}

/* PAGE HEADER (sub-pages) */
.page-header {
  background: var(--teal);
  color: white;
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(252, 193, 43, 0.12);
}
.page-header::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 125, 150, 0.15);
}
.page-header > * {
  position: relative;
  z-index: 2;
}
.page-header h1 {
  font-size: clamp(40px, 6vw, 72px);
  color: white;
  margin-bottom: 16px;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.page-header p {
  font-size: 18px;
  opacity: 0.92;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.6;
}
.page-eyebrow {
  display: inline-block;
  font-size: 13px;
  color: var(--yellow);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumb a:hover {
  color: var(--yellow);
}
.breadcrumb span {
  opacity: 0.5;
}

/* BTN */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-primary {
  background: white;
  color: var(--teal);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.btn-coral {
  background: var(--coral);
  color: white;
}
.btn-coral:hover {
  transform: translateY(-3px);
  background: #c41a3a;
  box-shadow: 0 12px 28px rgba(224, 32, 69, 0.4);
}
.btn-yellow {
  background: var(--yellow);
  color: var(--teal-deep);
}
.btn-yellow:hover {
  transform: translateY(-3px);
  background: #eab418;
}
.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.btn-outline-white:hover {
  background: white;
  color: var(--teal);
  transform: translateY(-3px);
}

/* SECTION BASE */
section {
  padding: 100px 0;
  position: relative;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  color: var(--coral);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
}
.section-title {
  font-size: clamp(34px, 4.5vw, 52px);
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 17px;
  max-width: 600px;
  color: #445;
  font-weight: 400;
  line-height: 1.7;
}

/* ACTIVITIES INTRO */
.activities {
  background: var(--coral);
  color: white;
  position: relative;
  overflow: hidden;
}
.activities::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.activities::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(1, 114, 111, 0.1);
}
.activities-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.activities h2 {
  color: white;
}
.activities .section-eyebrow {
  color: white;
  opacity: 0.9;
}
.activities .section-sub {
  color: white;
  opacity: 0.92;
}
.activities-image {
  border-radius: 24px;
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-lg);
}
.activities-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.activities .btn-coral {
  background: white;
  color: var(--coral);
}
.activities .btn-coral:hover {
  background: var(--teal);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(1, 114, 111, 0.4);
}

/* WORKSHOPS INTRO */
.workshops-intro {
  background: var(--yellow);
  position: relative;
  overflow: hidden;
}
.workshops-intro::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(1, 114, 111, 0.08);
}
.workshops-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.workshops-intro h2 {
  color: var(--teal-deep);
}
.workshops-intro p {
  color: var(--teal-deep);
  font-size: 16px;
  margin: 20px 0 32px;
  max-width: 480px;
  line-height: 1.7;
}
.workshops-image {
  height: 520px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.workshops-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* WORKSHOP CARDS GRID */
.workshops-cards {
  background: white;
  padding-top: 80px;
}
.workshops-cards-header {
  text-align: center;
  margin-bottom: 60px;
}
.workshops-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.workshop-card {
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--card-bg, var(--mint-light));
  color: white;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: var(--shadow-md);
}
.workshop-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.workshop-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.workshop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.workshop-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  color: white;
}
.workshop-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 800;
  line-height: 1.1;
  color: white;
  min-height: 50px;
}
.workshop-card .meta {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
  color: white;
  opacity: 0.95;
  letter-spacing: 0.3px;
}
.workshop-card .desc {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 18px;
  color: white;
  opacity: 0.95;
  flex: 1;
}
.workshop-card .fees {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
  color: white;
  margin-top: auto;
}
.workshop-card .btn-card {
  background: var(--teal);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  align-self: flex-start;
  transition: transform 0.2s ease;
}
.workshop-card .btn-card:hover {
  transform: translateX(4px);
}
.card-mint {
  background: var(--mint-light);
}
.card-yellow {
  background: var(--yellow);
}
.card-coral {
  background: var(--coral-soft);
}
.card-teal {
  background: var(--mint);
}
.seasonal-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  color: white;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* FEE INCLUDES */
.fee-includes {
  background: var(--cream);
}
.fee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.fee-card {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  border-top: 6px solid var(--coral);
}
.fee-card:nth-child(2) {
  border-top-color: var(--teal);
}
.fee-card h3 {
  font-size: 32px;
  color: var(--teal-deep);
  margin-bottom: 24px;
}
.fee-card ul {
  list-style: none;
  padding: 0;
}
.fee-card li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}
.fee-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--coral);
}
.fee-card:nth-child(2) li::before {
  background: var(--teal);
}
.fee-note {
  margin-top: 20px;
  padding: 12px 16px;
  background: var(--yellow);
  color: var(--teal-deep);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
}
.fee-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 14px;
}
.fee-card strong {
  color: var(--teal-deep);
  font-weight: 700;
}

/* WALK-IN */
.walkin-page {
  background: var(--cream);
}
.walkin-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 0 auto 60px;
  max-width: 1000px;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}
.walkin-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  min-width: 240px;
}
.walkin-info-item svg {
  flex-shrink: 0;
  color: var(--coral);
  margin-top: 2px;
}
.walkin-info-item p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  margin: 0;
}
.walkin-info-item strong {
  color: var(--teal-deep);
  font-weight: 700;
}
.activity-grid {
  display: flex;
  gap: 24px;
  transition: transform 0.45s ease;
  will-change: transform;
}
.activity-tile {
  flex: 0 0 calc((100% - 24px * 4) / 5);
  min-width: 0;
  border-radius: 18px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}
.activity-tile:hover {
  transform: translateY(-5px);
}
.activity-tile-img {
  height: 260px;
  overflow: hidden;
  background: #f0e8d8;
  position: relative;
}
.activity-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.activity-tile-label {
  background: var(--coral-soft);
  color: white;
  padding: 14px 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: white-space 0.2s ease;
}
.activity-tile:hover .activity-tile-label {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}
/* Walk-in slider */
.walkin-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.walkin-slider-viewport {
  overflow: hidden;
  flex: 1 1 auto;
}
.walkin-slider-arrow {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
  z-index: 2;
}
.walkin-slider-arrow:hover {
  transform: scale(1.08);
}
.walkin-slider-arrow:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}
.walkin-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.walkin-slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #d8cfc0;
  cursor: pointer;
  transition:
    background 0.2s ease,
    width 0.2s ease;
}
.walkin-slider-dots button[aria-current="true"] {
  background: var(--coral);
  width: 24px;
  border-radius: 5px;
}

/* CORPORATE */
.corporate-intro-section {
  background: var(--cream);
}
.corporate-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.corporate-image {
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.corporate-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.events-page {
  background: var(--cream);
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* PRIVATE EVENTS GRID */
.private-events {
  background: white;
}
.private-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.private-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(1, 114, 111, 0.08);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.private-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.private-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: white;
}
.private-card:hover::before {
  transform: scaleX(1);
}
.private-card:nth-child(2)::before {
  background: var(--teal);
}
.private-card:nth-child(3)::before {
  background: var(--yellow);
}
.private-card:nth-child(4)::before {
  background: var(--coral-soft);
}
.private-card:nth-child(5)::before {
  background: var(--mint);
}
.private-card:nth-child(6)::before {
  background: var(--teal-deep);
}
.private-icon {
  font-size: 48px;
  margin-bottom: 16px;
  line-height: 1;
}
.private-card h3 {
  font-size: 20px;
  color: var(--teal-deep);
  margin-bottom: 12px;
  font-weight: 700;
}
.private-card p {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .private-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .private-grid {
    grid-template-columns: 1fr;
  }
}
.event-tile {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  height: 240px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}
.event-tile:hover {
  transform: translateY(-5px);
}
.event-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.event-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 12px;
  color: white;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: white-space 0.2s ease;
}
.event-tile:hover .event-label {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}
.event-label.coral {
  background: var(--coral);
}
.event-label.teal {
  background: var(--teal);
}
.event-label.yellow {
  background: var(--yellow);
  color: var(--teal-deep);
}
.event-label.mint {
  background: var(--mint);
  color: var(--teal-deep);
}

/* FEATURED WORKSHOP OF THE WEEK */
.featured-workshop {
  background: var(--cream);
  color: var(--teal-deep);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.featured-workshop::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(1, 114, 111, 0.06);
}
.featured-workshop::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(224, 32, 69, 0.05);
}
.featured-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.featured-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 520px;
  box-shadow: var(--shadow-lg);
}
.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.featured-flag {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--coral);
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: var(--shadow-md);
}
.featured-content h2 {
  color: var(--teal);
  margin-bottom: 20px;
}
.featured-desc {
  font-size: 17px;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
  font-weight: 400;
}
.featured-meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
  padding: 24px;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(1, 114, 111, 0.08);
}
.featured-meta-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--teal-deep);
}
.featured-meta-item svg {
  flex-shrink: 0;
  color: var(--coral);
}
.featured-meta-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--teal-deep);
}
.featured-meta-sub {
  font-size: 13px;
  color: var(--body-text);
  margin-top: 2px;
  font-weight: 400;
}
.featured-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.featured-price {
  display: flex;
  flex-direction: column;
}
.featured-price-label {
  font-size: 11px;
  color: var(--body-text);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}
.featured-price-value {
  font-size: 36px;
  font-weight: 900;
  color: var(--coral);
  letter-spacing: -0.02em;
  line-height: 1;
}
.featured-workshop .btn-feature {
  background: var(--teal);
  color: white;
}
.featured-workshop .btn-feature:hover {
  background: var(--teal-deep);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(1, 114, 111, 0.4);
}

@media (max-width: 900px) {
  .featured-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .featured-image {
    height: 360px;
  }
  .featured-workshop {
    padding: 70px 0;
  }
}

/* RESERVE BANNER */
.reserve {
  background: var(--teal);
  color: white;
  text-align: center;
  padding: 80px 0;
}
.reserve h2 {
  color: white;
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 20px;
}
.reserve p {
  font-size: 18px;
  opacity: 0.92;
  max-width: 560px;
  margin: 0 auto 36px;
  font-weight: 300;
  line-height: 1.6;
}

/* TEAM */
.team {
  background: white;
}
.team-header {
  text-align: center;
  margin-bottom: 60px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.team-member {
  text-align: center;
}
.team-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-md);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-member:hover .team-photo {
  transform: translateY(-6px);
}
.team-member h4 {
  font-size: 17px;
  margin-bottom: 4px;
  font-weight: 700;
}
.team-role {
  color: #778;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 50px 40px;
  border-radius: 28px;
  background: var(--cream);
  border: 1px dashed rgba(1, 114, 111, 0.2);
}
.stat {
  text-align: center;
}
.stat-num {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}
.stat:nth-child(1) .stat-num {
  color: var(--coral);
}
.stat:nth-child(2) .stat-num {
  color: var(--teal);
}
.stat:nth-child(3) .stat-num {
  color: var(--yellow);
}
.stat:nth-child(4) .stat-num {
  color: var(--mint);
}
.stat-label {
  color: #556;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* LOCATION */
.location {
  background: var(--cream);
}
.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.location-photos {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 520px;
}
.location-photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.location-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.location-map {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location-map-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: block;
  cursor: pointer;
}

.location-map {
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #e0e9e8;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.location h2 {
  color: var(--coral);
}
.location-info {
  font-size: 17px;
  color: #445;
  margin: 20px 0 28px;
  line-height: 1.7;
}
.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.location-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}
.location-detail h5 {
  font-size: 13px;
  margin-bottom: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink);
}
.location-detail p {
  font-size: 14px;
  color: #667;
  margin: 0;
}

/* SPACE */
.space {
  background: white;
}
.space-header {
  text-align: center;
  margin-bottom: 60px;
}
.space-header h2 {
  color: var(--coral);
}
.space-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.space-photo {
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.space-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.space-photo-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: white;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  color: var(--teal-deep);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-md);
}
.capacity {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding: 32px;
  background: var(--cream);
  border-radius: 24px;
}
.capacity-item {
  text-align: center;
}
.capacity-num {
  font-size: 42px;
  font-weight: 900;
  color: var(--coral);
  line-height: 1;
  letter-spacing: -0.03em;
}
.capacity-label {
  color: #556;
  font-size: 13px;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* TESTIMONIALS */
.testimonials {
  background: var(--mint);
  color: var(--teal-darkest);
}
.testimonials .section-eyebrow {
  color: var(--coral);
}
.testimonials h2 {
  color: white;
  text-align: center;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: white;
  color: var(--ink);
  padding: 32px 28px;
  border-radius: 20px;
  position: relative;
  transition: transform 0.3s ease;
}
.testimonial:hover {
  transform: translateY(-6px);
}
.stars {
  color: var(--yellow);
  font-size: 20px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-text {
  color: var(--coral);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.7;
}
.testimonial-author {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #eef;
  color: #778;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.testimonials-cta {
  text-align: center;
  margin-top: 48px;
}
.testimonials-cta-text {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}
.btn-review {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--coral);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.btn-review:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.btn-review-stars {
  color: var(--yellow);
  font-size: 18px;
  line-height: 1;
}
.link-read-reviews {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  opacity: 0.9;
  letter-spacing: 0.3px;
}
.link-read-reviews:hover {
  opacity: 1;
  text-decoration: underline;
}

/* CONTACT */
.contact {
  background: var(--teal);
  color: white;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(252, 193, 43, 0.08);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.contact h2 {
  color: white;
  font-size: clamp(40px, 5vw, 64px);
}
.contact-intro {
  font-size: 16px;
  opacity: 0.9;
  margin: 24px 0;
  max-width: 440px;
  font-weight: 300;
  line-height: 1.7;
}
.contact-tag {
  display: inline-block;
  font-size: 13px;
  color: var(--yellow);
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 8px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: none;
  font-family: inherit;
  font-size: 14px;
  background: white;
  color: var(--ink);
  transition: box-shadow 0.2s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px var(--yellow);
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
}
.form-message {
  padding: 14px;
  border-radius: 10px;
  background: rgba(252, 193, 43, 0.2);
  color: var(--yellow);
  font-size: 14px;
  display: none;
}
.form-message.show {
  display: block;
}

/* FOOTER */
.footer {
  background: var(--mint);
  color: white;
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}
.footer-brand p {
  color: white;
  font-size: 14px;
  max-width: 280px;
  line-height: 1.7;
}
.footer-col h5 {
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 18px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.2s ease;
  font-weight: 500;
}
.footer-col a:hover {
  opacity: 0.7;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: white;
  font-size: 14px;
  font-weight: 500;
}
.footer-contact-item svg {
  flex-shrink: 0;
  color: white;
  margin-top: 3px;
}
.socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.2s ease;
}
.socials a:hover {
  background: white;
  color: var(--mint);
  transform: translateY(-3px);
}
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .workshops-grid,
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Walk-in slider: 3 tiles per view on tablet */
  .activity-tile {
    flex-basis: calc((100% - 24px * 2) / 3);
  }
}
@media (max-width: 768px) {
  /* Walk-in slider: 2 tiles per view on phones */
  .activity-tile {
    flex-basis: calc((100% - 14px) / 2);
  }
  .activity-grid {
    gap: 14px;
  }
  .activity-tile-img {
    height: 200px;
  }
  .activity-tile-label {
    font-size: 11px;
    padding: 10px 8px;
  }
  .walkin-slider {
    gap: 6px;
  }
  .walkin-slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }
}
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(1, 114, 111, 0.1);
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .nav-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .hero-grid,
  .workshops-intro-grid,
  .location-grid,
  .contact-grid,
  .activities-intro,
  .fee-grid,
  .corporate-intro {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .team-grid,
  .testimonials-grid,
  .stats,
  .space-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .hero {
    padding: 120px 0 80px;
  }
  .hero-visual {
    height: 380px;
  }
  .stat-num {
    font-size: 42px;
  }
  section {
    padding: 70px 0;
  }
  .location-photos {
    height: auto;
  }
  .location-photo,
  .location-map {
    height: 300px;
  }
  .logo-img {
    height: 36px;
  }
  .page-header {
    padding: 130px 0 60px;
  }
}
@media (max-width: 560px) {
  .team-grid,
  .testimonials-grid,
  .stats,
  .space-grid,
  .footer-grid,
  .form-row,
  .workshops-grid,
  .events-grid {
    grid-template-columns: 1fr;
  }
  .stats {
    padding: 30px 20px;
  }
  .capacity {
    gap: 30px;
  }
  .hero h1 {
    font-size: 40px;
  }
  .activities-image,
  .workshops-image,
  .corporate-image {
    height: 280px;
  }
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up {
  animation: fadeUp 0.8s ease backwards;
}
.fade-up:nth-child(1) {
  animation-delay: 0.1s;
}
.fade-up:nth-child(2) {
  animation-delay: 0.2s;
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Floating WhatsApp chat button ===== */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.85);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
}
.wa-float.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.wa-float:hover {
  transform: translateY(0) scale(1.08);
}
.wa-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}
.wa-float::after {
  content: "Chat on WhatsApp";
  position: absolute;
  right: 70px;
  background: #1f2c34;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.wa-float.show.label-on::after {
  opacity: 1;
  transform: translateX(0);
}
.wa-float:hover::after {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 560px) {
  .wa-float {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
  }
  .wa-float svg {
    width: 28px;
    height: 28px;
  }
  .wa-float.show.label-on::after {
    opacity: 1;
    transform: translateX(0);
  }
}

.voucher-hero-title span {
  display: block;
  font-size: 22px;
  letter-spacing: 10px;
  font-weight: 500;
  margin: 10px 0 0;
}

.voucher-hero-title em {
  display: block;
  color: #ffc12b;
  font-style: italic;
  font-weight: 400;
}

/* ===== WordPress adjustments ===== */
/* WordPress admin bar adjustment */
body.admin-bar .nav {
  top: 32px;
}

.nav-links a.anchor-active {
  color: var(--coral);
}

.nav-links .current-menu-item:not(.menu-item-type-custom) > a,
.nav-links .current_page_item:not(.menu-item-type-custom) > a {
  color: var(--coral);
}
/* On mobile, the admin bar is not permanently fixed */
@media screen and (max-width: 782px) {
  body.admin-bar .nav {
    top: 0 !important;
  }
}
.nav-links li {
  list-style: none;
}
.nav-links .current-menu-item:not(.menu-item-type-custom) > a,
.nav-links .current_page_item:not(.menu-item-type-custom) > a {
  color: var(--coral);
}
.page-content {
  padding: 60px 0 90px;
}
.page-content .container > h2 {
  color: var(--teal);
  margin: 48px 0 18px;
}

/* v1.2.3 fixes: menu anchors + static-preview page spacing */
/* DROPDOWN SUBMENU */
.nav-links li {
  position: relative;
}

.nav-links .sub-menu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--cream);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 50;
}

.nav-links li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-links .sub-menu li {
  width: 100%;
}

.nav-links .sub-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--ink);
  white-space: nowrap;
}

.nav-links .sub-menu a::after {
  display: none;
}

.nav-links .sub-menu a:hover {
  background: rgba(224, 32, 69, 0.08);
  color: var(--coral);
}

/* small caret on parent items that have a dropdown */
.nav-links .menu-item-has-children > a {
  position: relative;
  padding-right: 16px;
}

.nav-links .menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s ease;
}

/* =========================================================
   MOBILE ACTIVITIES SUBMENU — FINAL OVERRIDE
   ========================================================= */

@media (max-width: 900px) {
  #navLinks .menu-item-has-children {
    position: relative;
    width: 100%;
  }

  #navLinks .menu-item-has-children > a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  #navLinks .menu-item-has-children > a::after {
    content: "";
    width: 8px;
    height: 8px;
    margin-left: 0px;
    top: 25%;

    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;

    transform: rotate(45deg);
    transition: transform 0.25s ease;
  }

  #navLinks .menu-item-has-children.submenu-open > a::after {
    transform: rotate(-135deg);
  }

  #navLinks .menu-item-has-children > .sub-menu {
    position: static !important;

    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-height: 0 !important;

    margin: 0 !important;
    padding: 0 0 0 18px !important;

    overflow: hidden !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    background: transparent !important;
    border: 0 !important;
    border-left: 2px solid rgba(1, 114, 111, 0.16) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transform: none !important;

    transition:
      max-height 0.3s ease,
      opacity 0.2s ease,
      margin 0.3s ease !important;
  }

  #navLinks .menu-item-has-children.submenu-open > .sub-menu {
    max-height: 220px !important;
    margin-top: 10px !important;
    padding-top: 6px !important;
    padding-bottom: 6px !important;

    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  #navLinks .sub-menu li {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
  }

  #navLinks .sub-menu a {
    display: block !important;
    width: 100% !important;
    padding: 10px 12px !important;

    color: #01726f !important;
    font-size: 14px !important;
  }
}

/* =========================================================
   CORPORATE / PRIVATE EVENT ENQUIRY
========================================================= */

.kf-event-enquiry {
  width: min(100%, 980px);
  margin: 70px auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.kf-event-enquiry *,
.kf-event-enquiry *::before,
.kf-event-enquiry *::after {
  box-sizing: border-box;
}

/* Intro */
.kf-event-enquiry-intro {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}

.kf-event-enquiry-intro .section-eyebrow {
  display: block;
  margin-bottom: 12px;
  color: #e02045;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
}

.kf-event-enquiry-intro h2 {
  margin: 0 0 14px;
  color: #007d79;
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.05;
}

.kf-event-enquiry-intro p {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  color: #455b5b;
  font-size: 17px;
  line-height: 1.7;
}

/* Form card */
.kf-event-enquiry-form {
  width: 100%;
  background: #fff;
  padding: 42px;
  border-radius: 22px;
  box-shadow: 0 15px 45px rgba(0, 90, 87, 0.08);
}

/* Two-column rows */
.kf-event-enquiry .kf-crow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  width: 100%;
}

/* Fields */
.kf-event-enquiry .kf-cfield {
  min-width: 0;
  margin-bottom: 20px;
}

.kf-event-enquiry label {
  display: block;
  margin-bottom: 8px;
  color: #004f4d;
  font-size: 14px;
  font-weight: 700;
}

/* Inputs */
.kf-event-enquiry input,
.kf-event-enquiry select,
.kf-event-enquiry textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid #d8e5e3;
  border-radius: 10px;
  background: #fff;
  color: #153c3a;
  font: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.kf-event-enquiry textarea {
  resize: vertical;
  min-height: 130px;
}

.kf-event-enquiry input:focus,
.kf-event-enquiry select:focus,
.kf-event-enquiry textarea:focus {
  outline: none;
  border-color: #007d79;
  box-shadow: 0 0 0 3px rgba(0, 125, 121, 0.08);
}

/* Help text */
.kf-event-enquiry .kf-field-help {
  display: block;
  margin-top: 7px;
  color: #6c7f7e;
  font-size: 12px;
  line-height: 1.4;
}

/* Submit button */
.kf-event-enquiry .kf-csubmit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 15px 30px;
  border: 0;
  border-radius: 999px;
  background: #e02045;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.kf-event-enquiry .kf-csubmit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(224, 32, 69, 0.22);
}

/* Success box */
.kf-event-enquiry-success {
  margin: 0 0 28px;
  padding: 20px 24px;
  border: 1px solid rgba(0, 125, 121, 0.18);
  border-radius: 14px;
  background: rgba(0, 125, 121, 0.06);
  color: #004f4d;
}

.kf-event-enquiry-success strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.kf-event-enquiry-success p {
  margin: 5px 0;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
  .kf-event-enquiry {
    margin: 55px auto;
    padding: 0 22px;
  }

  .kf-event-enquiry-form {
    padding: 34px 28px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {
  .kf-event-enquiry {
    margin: 42px auto;
    padding: 0 16px;
  }

  .kf-event-enquiry-intro {
    margin-bottom: 28px;
  }

  .kf-event-enquiry-intro .section-eyebrow {
    font-size: 11px;
    letter-spacing: 1.6px;
  }

  .kf-event-enquiry-intro h2 {
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.08;
  }

  .kf-event-enquiry-intro p {
    font-size: 15px;
    line-height: 1.65;
  }

  .kf-event-enquiry-form {
    padding: 26px 20px;
    border-radius: 16px;
  }

  .kf-event-enquiry .kf-crow {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .kf-event-enquiry .kf-cfield {
    margin-bottom: 18px;
  }

  .kf-event-enquiry input,
  .kf-event-enquiry select,
  .kf-event-enquiry textarea {
    padding: 13px 14px;
    font-size: 16px;
  }

  .kf-event-enquiry .kf-csubmit {
    width: 100%;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {
  .kf-event-enquiry {
    padding: 0 12px;
    margin: 36px auto;
  }

  .kf-event-enquiry-form {
    padding: 22px 16px;
    border-radius: 14px;
  }

  .kf-event-enquiry-intro h2 {
    font-size: 29px;
  }

  .kf-event-enquiry-intro p {
    font-size: 14px;
  }

  .kf-event-enquiry input,
  .kf-event-enquiry select,
  .kf-event-enquiry textarea {
    padding: 12px 13px;
  }
}

/* =========================================================
   EVENT ENQUIRY - LOCATION OPTIONS
   ========================================================= */

.kf-event-enquiry .kf-event-location-options {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}

/* Each location option */
.kf-event-enquiry .kf-event-location-options label {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 16px 18px;

  border: 1px solid #dce9e7;
  border-radius: 10px;

  background: #fff;

  font-weight: 600;
  line-height: 1.3;

  cursor: pointer;
  box-sizing: border-box;
}

/* IMPORTANT:
   Stop the normal form input CSS from affecting radio buttons */
.kf-event-enquiry .kf-event-location-options input[type="radio"] {
  appearance: auto;
  -webkit-appearance: radio;

  width: 18px !important;
  height: 18px !important;

  min-width: 18px;
  max-width: 18px;

  padding: 0 !important;
  margin: 0 !important;

  border: initial !important;
  border-radius: 50%;

  box-shadow: none !important;

  flex: 0 0 18px;

  cursor: pointer;

  accent-color: #007b78;
}

/* Selected location option */
.kf-event-enquiry
  .kf-event-location-options
  label:has(input[type="radio"]:checked) {
  border-color: #007b78;
  background: #f2fbfa;
}

/* Indoor capacity warning */
.kf-event-enquiry #kf-indoor-capacity-message {
  display: block;
  margin-top: 9px;

  color: #d63638 !important;

  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

/* Outdoor location field */
.kf-event-enquiry #kf-event-outdoor-location-wrap {
  margin-top: 20px;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .kf-event-enquiry .kf-event-location-options {
    flex-direction: column;
    gap: 10px;
  }

  .kf-event-enquiry .kf-event-location-options label {
    width: 100%;
    padding: 14px 15px;
  }

  .kf-event-enquiry .kf-event-location-options input[type="radio"] {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
  }
}

/* Very small phones */
@media (max-width: 420px) {
  .kf-event-enquiry .kf-event-location-options label {
    padding: 13px;
    font-size: 14px;
  }

  .kf-event-enquiry #kf-indoor-capacity-message {
    font-size: 12px;
  }
}
