/*
Theme Name:  Mistress Mae
Theme URI:   https://mistressmae.co.za
Author:      Your Name
Author URI:  https://mistressmae.co.za
Description: Custom one-page WordPress theme for Mistress Mae — chanteuse, comedienne & MC.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mistress-mae
Tags:        one-page, custom-background, custom-logo, full-width-template
*/

/* ─────────────────────────────────────────
   RESET & ROOT
───────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black:      #0c0c0c;
  --off-black:  #141414;
  --card:       #1e1e1e;
  --pink:       #f2a7bb;
  --pink-light: #fad6e2;
  --pink-muted: rgba(242,167,187,0.15);
  --white:      #fafafa;
  --grey:       rgba(250,250,250,0.5);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ─────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────── */

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem);   }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 0.95rem; letter-spacing: 0.1em; text-transform: uppercase; }

h1 em, h2 em, h3 em { font-style: italic; color: var(--pink); font-weight: 400; }

/* Paragraph */
p {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(250,250,250,0.75);
  margin-bottom: 1.4rem;
}
p:last-child { margin-bottom: 0; }

/* Links */
a {
  color: var(--pink);
  text-decoration: none;
  transition: color 0.3s;
}
a:hover { color: var(--pink-light); }

/* Strong & em */
strong, b { color: var(--pink-light); font-weight: 500; }
em, i     { font-style: italic; }

/* Lists */
ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1.4rem;
  color: rgba(250,250,250,0.75);
}
ul { list-style: none; padding-left: 0; }
ul li {
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--pink);
}
ol li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
ol li::marker { color: var(--pink); }

/* Blockquote */
blockquote {
  border-left: 2px solid var(--pink);
  padding: 0.8rem 0 0.8rem 1.8rem;
  margin: 2rem 0;
  font-style: italic;
  color: rgba(250,250,250,0.5);
  font-size: 1.1rem;
  line-height: 1.75;
}
blockquote cite {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.75rem;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(242,167,187,0.5);
}

/* Horizontal rule */
hr {
  border: none;
  border-top: 1px solid rgba(242,167,187,0.15);
  margin: 2.5rem 0;
}

/* Code */
code {
  font-family: 'Courier New', monospace;
  font-size: 0.88rem;
  background: rgba(242,167,187,0.08);
  color: var(--pink-light);
  padding: 0.15em 0.45em;
  border-radius: 2px;
}
pre {
  background: var(--card);
  border: 1px solid rgba(242,167,187,0.1);
  border-radius: 2px;
  padding: 1.5rem;
  overflow-x: auto;
  margin-bottom: 1.4rem;
}
pre code {
  background: none;
  padding: 0;
  font-size: 0.85rem;
  color: rgba(250,250,250,0.75);
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  font-size: 0.9rem;
}
thead th {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(242,167,187,0.2);
  text-align: left;
  font-weight: 400;
}
tbody td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(250,250,250,0.06);
  color: rgba(250,250,250,0.7);
  vertical-align: top;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: rgba(242,167,187,0.03); }

/* Images */
figure {
  margin: 2rem 0;
}
figure img {
  width: 100%;
  height: auto;
  display: block;
}
figcaption {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: rgba(250,250,250,0.35);
  font-style: italic;
  letter-spacing: 0.05em;
}

/* Small & lead text utilities */
small        { font-size: 0.8rem; color: rgba(250,250,250,0.4); }
.text-lead   { font-size: 1.2rem; line-height: 1.75; color: rgba(250,250,250,0.85); }
.text-muted  { color: rgba(250,250,250,0.4); }
.text-pink   { color: var(--pink); }
.text-center { text-align: center; }

/* ─────────────────────────────────────────
   RESPONSIVE TYPOGRAPHY
───────────────────────────────────────── */
@media (max-width: 700px) {
  h1 { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem);   }
  h3 { font-size: clamp(1.2rem, 5vw, 1.6rem); }
  blockquote { font-size: 1rem; padding-left: 1.2rem; }
  table { font-size: 0.82rem; }
  thead th, tbody td { padding: 0.6rem 0.7rem; }
}

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
nav, .site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(12,12,12,0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(242,167,187,0.12);
}

.nav-logo, .site-title a {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--pink);
  text-decoration: none;
}

.nav-links, .primary-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a, .primary-menu a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,250,250,0.7);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover, .primary-menu a:hover { color: var(--pink); }

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

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 2rem 80px;
  position: relative;
}

.hero-bg {
  position: fixed;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  filter: brightness(0.8);
  z-index: 0;
}

.hero-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12,12,12,0.3) 0%, rgba(12,12,12,0.05) 35%, rgba(12,12,12,0.65) 100%);
  z-index: 1;
}

.hero-content { position: relative; z-index: 2; }

.hero-tag {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: up 0.8s 0.2s forwards;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 14vw, 10rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: up 0.9s 0.4s forwards;
  text-shadow: 0 2px 20px rgba(0,0,0,0.9);
  color: #fff;
}

.hero h1 em {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--pink);
}

.hero-sub {
  margin-top: 2rem;
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
  opacity: 0;
  animation: up 0.8s 0.6s forwards;
  text-shadow: 0 1px 10px rgba(0,0,0,0.9);
}
.hero-sub span { color: var(--pink-light); }

.hero-cta {
  margin-top: 2.5rem;
  opacity: 0;
  animation: up 0.8s 0.8s forwards;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

@keyframes up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s;
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}
.btn-pink  { background: var(--pink); color: var(--black); }
.btn-pink:hover  { background: var(--pink-light); color: var(--black); }
.btn-outline { border: 1px solid rgba(242,167,187,0.6); color: var(--pink); background: rgba(0,0,0,0.3); }
.btn-outline:hover { border-color: var(--pink); background: rgba(242,167,187,0.12); }

/* ─────────────────────────────────────────
   SECTIONS
───────────────────────────────────────── */
section { padding: 6rem 2rem; }
.section-inner { max-width: 960px; margin: 0 auto; }

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 3rem;
  color: var(--white);
}
.section-title em { font-style: italic; color: var(--pink); }

/* ─────────────────────────────────────────
   EVENTS
───────────────────────────────────────── */
#events { background: rgba(20, 20, 20, 0.7); position: relative; z-index: 2; }

.events-list { display: flex; flex-direction: column; gap: 1px; }

.event-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.8rem 2rem;
  background: var(--card);
  border-left: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.event-row:hover { border-left-color: var(--pink); background: rgba(242,167,187,0.05); }

.event-date { text-align: center; }
.event-day {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--pink);
  line-height: 1;
}
.event-month {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 0.2rem;
}

.event-info h3 { font-size: 1rem; font-weight: 500; color: var(--white); margin-bottom: 0.3rem; }
.event-info p  { font-size: 0.82rem; color: var(--grey); }
.event-info p span { color: var(--pink-light); }

.event-ticket {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  border: 1px solid rgba(242,167,187,0.35);
  padding: 0.5rem 1.2rem;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
}
.event-ticket:hover { background: var(--pink); color: var(--black); }
.event-sold {
  color: var(--grey);
  border: 1px solid rgba(250,250,250,0.1);
  padding: 0.5rem 1.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ─────────────────────────────────────────
   BIO
───────────────────────────────────────── */
#bio { background: rgba(12, 12, 12, 0.90); position: relative; z-index: 2; }

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.bio-photo {
  aspect-ratio: 3/4;
  position: relative;
  border: 1px solid rgba(242,167,187,0.2);
  overflow: hidden;
}
.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: grayscale(15%) contrast(1.05);
  transition: filter 0.5s;
  display: block;
}
.bio-photo:hover img { filter: grayscale(0%) contrast(1.05); }
.bio-photo-accent {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), transparent);
}

.bio-text p { font-size: 1rem; line-height: 1.85; color: rgba(250,250,250,0.7); margin-bottom: 1.2rem; }
.bio-text p strong { color: var(--pink-light); font-weight: 400; }

.bio-tags { margin-top: 2rem; display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; }
.bio-tag {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(242,167,187,0.55);
  padding: 0.25rem 0;
}
.bio-tag::after {
  content: '·';
  margin-left: 0.5rem;
  color: rgba(242,167,187,0.25);
}
.bio-tag:last-child::after { content: ''; margin: 0; }

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
#contact { background: rgba(12, 12, 12, 0.90); position: relative; z-index: 2; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-intro p { font-size: 1rem; line-height: 1.8; color: var(--grey); margin-bottom: 2rem; }

.socials { display: flex; flex-direction: column; gap: 1rem; }

.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  padding: 1rem 1.2rem;
  background: var(--card);
  border: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.social-link:hover { border-color: rgba(242,167,187,0.3); background: rgba(242,167,187,0.05); }

.social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--pink-muted);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.social-icon svg { width: 16px; height: 16px; fill: var(--pink); }

.social-info span { display: block; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey); margin-bottom: 0.1rem; }
.social-info strong { font-size: 0.9rem; font-weight: 400; color: var(--white); }

/* ─────────────────────────────────────────
   GRAVITY FORMS
───────────────────────────────────────── */
.gform_wrapper,
.gform_wrapper.gravity-theme {
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 300;
  color: var(--white);
}
.gform_wrapper .gform_heading { display: none; }
.gform_wrapper .gfield { margin-bottom: 0.8rem !important; padding: 0 !important; }
.gform_wrapper .gfield_label {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.7rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: rgba(250,250,250,0.5) !important;
  margin-bottom: 0.4rem !important;
}
.gform_wrapper .gfield_required { color: var(--pink) !important; }
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="number"],
.gform_wrapper input[type="url"],
.gform_wrapper input[type="password"],
.gform_wrapper input[type="date"],
.gform_wrapper select,
.gform_wrapper textarea {
  width: 100% !important;
  background: var(--card) !important;
  border: 1px solid rgba(250,250,250,0.1) !important;
  border-radius: 2px !important;
  color: var(--white) !important;
  padding: 0.9rem 1.1rem !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 300 !important;
  outline: none !important;
  transition: border-color 0.3s !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}
.gform_wrapper input::placeholder,
.gform_wrapper textarea::placeholder { color: rgba(250,250,250,0.25) !important; font-style: italic; }
.gform_wrapper input:focus,
.gform_wrapper textarea:focus,
.gform_wrapper select:focus {
  border-color: rgba(242,167,187,0.55) !important;
  box-shadow: 0 0 0 3px rgba(242,167,187,0.07) !important;
  outline: none !important;
}
.gform_wrapper textarea { min-height: 110px !important; resize: vertical !important; }
.gform_wrapper select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f2a7bb' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  padding-right: 2.5rem !important;
}
.gform_wrapper .ginput_complex { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 0.8rem !important; }
.gform_wrapper .ginput_complex span { width: 100% !important; }
.gform_wrapper .ginput_complex label { font-size: 0.65rem !important; color: rgba(250,250,250,0.35) !important; margin-top: 0.3rem !important; letter-spacing: 0.1em; text-transform: uppercase; }
.gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error textarea,
.gform_wrapper .gfield_error select { border-color: rgba(220,80,100,0.7) !important; }
.gform_wrapper .validation_message { font-size: 0.72rem !important; color: #e88a9a !important; margin-top: 0.3rem !important; font-style: italic; }
.gform_wrapper .validation_error {
  background: rgba(220,80,100,0.1) !important;
  border: 1px solid rgba(220,80,100,0.3) !important;
  border-radius: 2px !important;
  color: #e88a9a !important;
  font-size: 0.82rem !important;
  padding: 0.8rem 1rem !important;
  margin-bottom: 1rem !important;
}
.gform_confirmation_wrapper {
  background: rgba(242,167,187,0.08) !important;
  border: 1px solid rgba(242,167,187,0.3) !important;
  border-radius: 2px !important;
  padding: 1.5rem !important;
  color: var(--pink-light) !important;
  font-size: 0.95rem !important;
  line-height: 1.7 !important;
}
.gform_wrapper .gform_footer,
.gform_wrapper .gform_page_footer { padding: 0 !important; margin-top: 0.8rem !important; border: none !important; }
.gform_wrapper input[type="submit"],
.gform_wrapper button[type="submit"] {
  background: var(--pink) !important;
  color: var(--black) !important;
  border: none !important;
  padding: 0.9rem 2.5rem !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  border-radius: 2px !important;
  transition: background 0.3s !important;
  width: auto !important;
  box-shadow: none !important;
}
.gform_wrapper input[type="submit"]:hover,
.gform_wrapper button[type="submit"]:hover { background: var(--pink-light) !important; }
.gform_wrapper .gf_progressbar_wrapper { margin-bottom: 2rem !important; }
.gform_wrapper .gf_progressbar { background: rgba(250,250,250,0.08) !important; border-radius: 2px !important; height: 4px !important; }
.gform_wrapper .gf_progressbar_percentage { background: var(--pink) !important; border-radius: 2px !important; height: 4px !important; }
.gform_wrapper .gfield_checkbox li,
.gform_wrapper .gfield_radio li { margin-bottom: 0.5rem !important; }
.gform_wrapper .gfield_checkbox input[type="checkbox"],
.gform_wrapper .gfield_radio input[type="radio"] { accent-color: var(--pink) !important; width: 16px !important; height: 16px !important; margin-right: 0.5rem !important; cursor: pointer !important; }
.gform_wrapper .gfield_checkbox label,
.gform_wrapper .gfield_radio label { font-size: 0.88rem !important; color: rgba(250,250,250,0.7) !important; font-weight: 300 !important; cursor: pointer !important; letter-spacing: normal !important; text-transform: none !important; }
.gform_wrapper .ginput_container_fileupload input[type="file"] { border: 1px dashed rgba(242,167,187,0.3) !important; padding: 1rem !important; color: var(--grey) !important; background: transparent !important; cursor: pointer !important; }
.gform_wrapper .gform_validation_container,
.gform_wrapper li.hidden_label { display: none !important; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer { position: relative; z-index: 2; padding: 2rem 3rem; border-top: 1px solid rgba(242,167,187,0.1); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; background: rgba(12, 12, 12, 0.94); }
.footer-logo { font-family: 'Playfair Display', serif; font-style: italic; color: var(--pink); font-size: 1rem; }
.footer-copy { font-size: 0.75rem; color: rgba(250,250,250,0.2); }

/* WordPress default styles reset */
.wp-block-image img { max-width: 100%; height: auto; }
a { color: var(--pink); }
img { max-width: 100%; height: auto; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 700px) {
  nav, .site-header { padding: 1rem 1.5rem; flex-direction: column; }
  .nav-links, .primary-menu { gap: 1.5rem; }
  .bio-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .event-row { grid-template-columns: 70px 1fr; }
  .event-ticket, .event-sold { display: none; }
  section { padding: 4rem 1.5rem; }
  .site-footer { padding: 1.5rem; flex-direction: column; text-align: center; }
  .gform_wrapper .ginput_complex { grid-template-columns: 1fr !important; }
  .site-header  a.nav-logo { margin-bottom: 10px; }

  body { background-image: url('https://mistressmaecabaret.com/wp-content/uploads/2026/04/bg.png'); background-position: center;}
    .hero-bg { display: none; }
    .nav-links li:first-child::before{ content: ""; }

}


/* Consent / newsletter checkbox field */
.gfield--type-consent legend.gfield_label {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.7rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: rgba(250,250,250,0.5) !important;
  margin-bottom: 0.6rem !important;
  padding: 0 !important;
  border: none !important;
}

.ginput_container_consent {
  display: flex !important;
  align-items: center !important;
  gap: 0.6rem !important;
}

.ginput_container_consent input[type="checkbox"] {
  width: 16px !important;
  height: 16px !important;
  accent-color: var(--pink) !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  padding: 0 !important;
  border: none !important;
  appearance: auto !important;
  -webkit-appearance: auto !important;
}

.gfield_consent_label {
  font-size: 0.88rem !important;
  color: rgba(250,250,250,0.6) !important;
  font-weight: 300 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  cursor: pointer !important;
  line-height: 1.4 !important;
}

/* ─────────────────────────────────────────
   PARTNERS
───────────────────────────────────────── */
#partners {  background: var(--off-black);  position: relative; z-index: 2; }

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2rem;
  background: var(--card);
  border: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s, opacity 0.3s;
  text-decoration: none;
  max-width: 180px;
  width: 100%;
}

a.partner-logo:hover {
  border-color: rgba(242,167,187,0.25);
  background: rgba(242,167,187,0.04);
  opacity: 1;
}

.partner-logo img {
  width: 100%;
  height: auto;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.8);
  opacity: 0.6;
  transition: filter 0.3s, opacity 0.3s;
}

a.partner-logo:hover img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

.partner-name {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,250,250,0.4);
}

@media (max-width: 700px) {
  .partners-grid { gap: 1rem; }
  .partner-logo  { max-width: 140px; padding: 1rem 1.2rem; }
}

/* ─────────────────────────────────────────
   PAGE TEMPLATE
───────────────────────────────────────── */
.page-content {
  position: relative;
  z-index: 2;
  background: rgba(12, 12, 12, 0.92);
  min-height: 100vh;
  padding: 4rem 2rem 6rem;
}

.page-inner {
  max-width: 780px;
  margin: 0 auto;
}

.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2.5rem;
  line-height: 1.15;
}

.page-title em {
  font-style: italic;
  color: var(--pink);
}

.page-body {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(250,250,250,0.75);
}

.page-body p          { margin-bottom: 1.4rem; }
.page-body h2         { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--white); margin: 2.5rem 0 1rem; }
.page-body h3         { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--white); margin: 2rem 0 0.8rem; }
.page-body a          { color: var(--pink);  }
.page-body a:hover    { color: var(--pink-light); }
.page-body ul,
.page-body ol         { padding-left: 1.5rem; margin-bottom: 1.4rem; }
.page-body li         { margin-bottom: 0.4rem; }
.page-body strong     { color: var(--pink-light); font-weight: 500; }
.page-body em         { font-style: italic; }
.page-body img        { max-width: 100%; height: auto; margin: 1.5rem 0; }
.page-body blockquote {
  border-left: 2px solid var(--pink);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  color: rgba(250,250,250,0.5);
  font-style: italic;
}
.page-body hr {
  border: none;
  border-top: 1px solid rgba(242,167,187,0.15);
  margin: 2.5rem 0;
}

@media (max-width: 700px) {
  .page-content { padding: 8rem 1.5rem 4rem; }
}

/* ─────────────────────────────────────────
   BLOG — POSTS LIST
───────────────────────────────────────── */
.posts-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.post-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(242,167,187,0.1);
}
.post-card:last-child { border-bottom: none; }

.post-card-image { display: block; overflow: hidden; flex-shrink: 0; }
.post-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: grayscale(15%);
  transition: filter 0.4s, transform 0.4s;
}
.post-card-image:hover img { filter: grayscale(0%); transform: scale(1.02); }

.post-meta {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,250,250,0.35);
  margin-bottom: 0.8rem;
}
.post-meta a  { color: rgba(250,250,250,0.35); text-decoration: none; }
.post-sep     { margin: 0 0.4rem; }

.post-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.post-card-title a { color: var(--white); text-decoration: none; transition: color 0.3s; }
.post-card-title a:hover { color: var(--pink); }

.post-card-excerpt {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(250,250,250,0.55);
  margin-bottom: 1.5rem;
}

.posts-pagination {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}
.posts-pagination .page-numbers {
  display: inline-flex;
  gap: 0.5rem;
}
.posts-pagination a,
.posts-pagination span {
  padding: 0.5rem 0.9rem;
  font-size: 0.78rem;
  color: rgba(250,250,250,0.5);
  border: 1px solid rgba(250,250,250,0.1);
  text-decoration: none;
  transition: all 0.3s;
}
.posts-pagination a:hover,
.posts-pagination .current {
  border-color: var(--pink);
  color: var(--pink);
}

.no-posts {
  color: rgba(250,250,250,0.4);
  font-style: italic;
}

/* ─────────────────────────────────────────
   BLOG — SINGLE POST
───────────────────────────────────────── */
.post-header { margin-bottom: 2.5rem; }

.post-thumbnail {
  margin-bottom: 2.5rem;
  overflow: hidden;
}
.post-thumbnail img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  filter: grayscale(10%);
}

.post-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(242,167,187,0.1);
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 2.5rem;
}
.post-tags a {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(242,167,187,0.55);
  text-decoration: none;
}
.post-tags a:hover { color: var(--pink); }
.post-tags a::before { content: '#'; }

.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.post-nav-link {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-decoration: none;
  padding: 1.2rem;
  background: var(--card);
  border: 1px solid transparent;
  transition: border-color 0.3s;
}
.post-nav-link:hover { border-color: rgba(242,167,187,0.25); }
.post-nav-next { text-align: right; }

.post-nav-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
}
.post-nav-title {
  font-size: 0.88rem;
  color: rgba(250,250,250,0.7);
  line-height: 1.3;
}

/* ─────────────────────────────────────────
   404
───────────────────────────────────────── */
.page-inner--centered {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.error-404 {
  text-align: center;
  max-width: 500px;
}

.error-404-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242,167,187,0.2);
  line-height: 1;
  margin-bottom: 1rem;
}

.error-404 p {
  color: rgba(250,250,250,0.5);
  font-style: italic;
  margin: 1rem 0 2rem;
}

/* ─────────────────────────────────────────
   RESPONSIVE — BLOG & SINGLE
───────────────────────────────────────── */
@media (max-width: 700px) {
  .post-card { grid-template-columns: 1fr; gap: 1.2rem; }
  .post-card-image img { height: 200px; }
  .post-nav { grid-template-columns: 1fr; }
  .post-nav-next { text-align: left; }
}

/* ─────────────────────────────────────────
   GUTENBERG COVER BLOCK
───────────────────────────────────────── */
.wp-block-cover {
  min-height: 80vh !important;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem !important;
}

/* Overlay — matches hero gradient */
.wp-block-cover__gradient-background,
.wp-block-cover-image-background,
.wp-block-cover__background {
  opacity: 1 !important;
  background: linear-gradient(
    to bottom,
    rgba(12,12,12,0.3) 0%,
    rgba(12,12,12,0.05) 35%,
    rgba(12,12,12,0.65) 100%
  ) !important;
}

/* Background image — matches hero parallax feel */
.wp-block-cover img.wp-block-cover__image-background,
.wp-block-cover video.wp-block-cover__video-background {
  filter: brightness(0.8);
  object-position: center top;
}

/* Inner content wrapper */
.wp-block-cover__inner-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

/* Eyebrow / label — style a Paragraph set to small as a tag line */
.wp-block-cover__inner-container > .wp-block-paragraph:first-child {
  font-size: 0.72rem !important;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--pink) !important;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}

/* Heading */
.wp-block-cover__inner-container h1,
.wp-block-cover__inner-container h2 {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(3rem, 10vw, 8rem) !important;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #fff !important;
  text-shadow: 0 2px 20px rgba(0,0,0,0.9);
  margin-bottom: 0;
}

.wp-block-cover__inner-container h1 em,
.wp-block-cover__inner-container h2 em {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--pink) !important;
}

/* Subtext paragraph */
.wp-block-cover__inner-container > .wp-block-paragraph:not(:first-child) {
  margin-top: 2rem;
  font-size: clamp(0.9rem, 1.8vw, 1.1rem) !important;
  color: rgba(255,255,255,0.85) !important;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 10px rgba(0,0,0,0.9);
}

/* Buttons group */
.wp-block-cover__inner-container .wp-block-buttons {
  margin-top: 2.5rem;
  justify-content: center;
  gap: 1rem;
}

.wp-block-cover__inner-container .wp-block-button__link {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  padding: 0.85rem 2.2rem !important;
  border-radius: 2px !important;
  transition: all 0.3s !important;
}

/* Primary button — pink fill */
.wp-block-cover__inner-container .wp-block-button:not(.is-style-outline) .wp-block-button__link {
  background: var(--pink) !important;
  color: var(--black) !important;
  border: none !important;
}
.wp-block-cover__inner-container .wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
  background: var(--pink-light) !important;
}

/* Outline button */
.wp-block-cover__inner-container .wp-block-button.is-style-outline .wp-block-button__link {
  background: rgba(0,0,0,0.3) !important;
  color: var(--pink) !important;
  border: 1px solid rgba(242,167,187,0.6) !important;
}
.wp-block-cover__inner-container .wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: rgba(242,167,187,0.12) !important;
  border-color: var(--pink) !important;
}

/* Full-height variant */
.wp-block-cover.alignfull,
.wp-block-cover.is-position-center-center {
  min-height: 100vh !important;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 700px) {
  .wp-block-cover { min-height: 60vh !important; padding: 5rem 1.5rem !important; }
  .wp-block-cover__inner-container h1,
  .wp-block-cover__inner-container h2 { font-size: clamp(2.5rem, 14vw, 4rem) !important; }
  .wp-block-cover__inner-container .wp-block-buttons { flex-direction: column; align-items: center; }
  .wp-block-cover__inner-container .wp-block-button__link { width: 100%; text-align: center; }
}

/* ─────────────────────────────────────────
   EVENTS — PRICE & ACTION
───────────────────────────────────────── */
.event-price {
  font-size: 0.78rem;
  color: rgba(250,250,250,0.4);
  margin-top: 0.3rem;
}
.event-capacity { color: rgba(250,250,250,0.25); }

.event-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}

.event-ticket {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  border: 1px solid rgba(242,167,187,0.35);
  padding: 0.5rem 1.2rem;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
  text-align: center;
}
.event-ticket:hover { background: var(--pink); color: var(--black); }

.event-sold,
.event-soon {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.5rem 1.2rem;
  text-align: center;
}
.event-sold { color: var(--grey);  border: 1px solid rgba(250,250,250,0.1); }
.event-soon { color: var(--pink);  border: 1px solid rgba(242,167,187,0.15); font-style: italic; }

.event-show-page {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,250,250,0.35);
  text-decoration: none;
  transition: color 0.3s;
  text-align: center;
}
.event-show-page:hover { color: var(--pink); }

/* ─────────────────────────────────────────
   TICKET MODAL
───────────────────────────────────────── */
.ticket-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.ticket-modal.is-open {
  opacity: 1;
  pointer-events: all;
}

.ticket-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12,12,12,0.85);
  backdrop-filter: blur(8px);
}

.ticket-modal-box {
  position: relative;
  z-index: 1;
  background: var(--off-black);
  border: 1px solid rgba(242,167,187,0.15);
  padding: 2.5rem;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(16px);
  transition: transform 0.3s;
}
.ticket-modal.is-open .ticket-modal-box { transform: translateY(0); }

.ticket-modal-close {
  position: absolute;
  top: 1rem; right: 1.2rem;
  background: none;
  border: none;
  color: rgba(250,250,250,0.4);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
}
.ticket-modal-close:hover { color: var(--pink); }

.ticket-modal-event-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--pink);
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}

@media (max-width: 700px) {
  .ticket-modal { padding: 1rem; align-items: flex-end; }
  .ticket-modal-box { padding: 1.8rem 1.2rem; max-height: 85vh; }
}

.grecaptcha-badge { position: relative!important; bottom: auto!important; right: auto!important; }




/* ─────────────────────────────────────────
   WIDE & FULL-WIDTH BLOCK ALIGNMENT
───────────────────────────────────────── */
.page-body .alignwide {
  margin-left:  calc(50% - 50vw + 2rem);
  margin-right: calc(50% - 50vw + 2rem);
  max-width: none;
  width: auto;
}

.page-body .alignfull {
  margin-left:  calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: none;
  width: 100vw;
}

/* Cover block specific — ensure it fills properly */
.page-body .wp-block-cover.alignfull {
  padding-left:  2rem;
  padding-right: 2rem;
}

@media (max-width: 700px) {
  .page-body .alignwide {
    margin-left:  -1.5rem;
    margin-right: -1.5rem;
  }
  .page-body .alignfull {
    margin-left:  -1.5rem;
    margin-right: -1.5rem;
    width: calc(100% + 3rem);
  }
}

/* ─────────────────────────────────────────
   EVENT SINGLE — COVER
───────────────────────────────────────── */


.single-mm_event .page-content { padding: 6rem 2rem 6rem; }
.event-cover {
  position: relative;
  width: 100%;
  min-height: 65vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 4rem 2rem;
  z-index: 2;
}

.event-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12,12,12,0.2) 0%,
    rgba(12,12,12,0.75) 100%
  );
}

.event-cover-content {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

.event-cover-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
  margin: 0.5rem 0;
}

.event-cover-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.6rem;
}

/* ─────────────────────────────────────────
   EVENT SINGLE — HEADER (no cover image)
───────────────────────────────────────── */
.event-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(242,167,187,0.1);
}

.event-header .page-title {
  margin-bottom: 0.8rem;
}

.event-header-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(250,250,250,0.35);
  letter-spacing: 0.08em;
}

/* ─────────────────────────────────────────
   EVENT SINGLE — LAYOUT
───────────────────────────────────────── */
.event-single-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: start;
  margin-bottom: 3rem;
}

.event-info-body {
  margin-bottom: 2rem;
}

/* ─────────────────────────────────────────
   EVENT SINGLE — SIDEBAR
───────────────────────────────────────── */
.event-single-sidebar {
  position: sticky;
  top: 100px;
}

.event-ticket-box {
  background: var(--card);
  border: 1px solid rgba(242,167,187,0.12);
  padding: 2rem;
}

/* Details list at top of box */
.event-ticket-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(242,167,187,0.1);
}

.event-ticket-detail {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.65rem 0;
  font-size: 0.88rem;
  color: rgba(250,250,250,0.75);
  border-bottom: 1px solid rgba(250,250,250,0.04);
}
.event-ticket-detail:last-child { border-bottom: none; }

.event-ticket-detail-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,250,250,0.3);
  flex-shrink: 0;
}

/* Sold out / soon states */
.event-sold--block,
.event-soon--block {
  display: block;
  text-align: center;
  padding: 0.9rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.event-sold--block {
  color: var(--grey);
  border: 1px solid rgba(250,250,250,0.1);
}
.event-soon--block {
  color: var(--pink);
  border: 1px solid rgba(242,167,187,0.15);
  font-style: italic;
}

/* GF form inside the box — tighten it up */
.event-gf-form .gform_wrapper {
  margin: 0 !important;
}
.event-gf-form .gform_footer {
  margin-top: 0.5rem !important;
}
.event-gf-form .gform_wrapper input[type="submit"],
.event-gf-form .gform_wrapper button[type="submit"] {
  width: 100% !important;
}

/* Back link */
.event-back {
  padding-top: 2rem;
  border-top: 1px solid rgba(242,167,187,0.1);
}
.event-back a {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,250,250,0.3);
  text-decoration: none;
  transition: color 0.3s;
}
.event-back a:hover { color: var(--pink); }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 860px) {
  .event-single-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .event-single-sidebar {
    position: static;
  }
  /* On mobile, sidebar comes first so tickets are above the info */
  .event-single-grid {
    display: flex;
    flex-direction: column-reverse;
  }
  .event-cover { min-height: 50vh; padding: 2rem 1.5rem; }
  .event-cover-content h1 { font-size: clamp(2rem, 10vw, 3rem); }
}