/*
Theme Name: GGA Dwarf Goat Yoga
Theme URI: https://ggadwarfgoatyoga.com/
Author: Sabrina Matthews
Description: A fast, modern, WordPress theme for GGA Dwarf Goat Yoga.
Version: 0.4.3
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: gga-dwarf-goat-yoga
License: GPL-2.0-or-later
*/

/* =========================================================
   Base / Reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}
img{ max-width: 100%; height: auto; display:block; }
a{ color: #964875; text-decoration: underline; }
a:focus-visible, button:focus-visible{
  outline: 2px solid rgba(17,24,39,.55);
  outline-offset: 3px;
  border-radius: 10px;
}
::selection{ background: rgba(157,221,234,.45); }

/* =========================================================
   Design tokens
   ========================================================= */
:root{
  --bg: #ffffff;
  --surface: #f6f7f9;
  --surface-2: #eef2f6;
  --text: #0b0f14;
  --muted: #5b6472;
  --border: rgba(15,23,42,.10);

  /* Brand (pulled from logo) */
  --brand: #111827;          /* deep ink */
  --accent: #964875;         /* plum */
  --accent-2: #9dddea;       /* teal */
  --accent-3: #f1bc9c;       /* peach */
  --accent-4: #ecafdc;       /* soft pink */

  --shadow-sm: 0 1px 2px rgba(0,0,0,.04), 0 1px 1px rgba(0,0,0,.03);
  --shadow-md: 0 12px 32px rgba(15,23,42,.10);
  --radius-lg: 22px;
  --radius-md: 16px;

  --container: 1200px;
  --gutter: 22px;
}

/* =========================================================
   Layout / Typography
   ========================================================= */
.container{
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
  font-family: TASA Explorer;
}
.section{ padding: 72px 0; }
.section.surface{
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section.surface2{
  background: linear-gradient(180deg, var(--surface) 0%, #fff 100%);
  border-top: 1px solid var(--border);
}

.kicker{
  display:inline-flex;
  gap: 10px;
  align-items:center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(157,221,234,.22);
  color: #0f4a52;
  border: 1px solid rgba(157,221,234,.38);
  font-weight: 800;
  font-size: 12.5px;
}
h1, h2, h3, h4 {
  font-family: Limelight;
}
.h1{
  margin: 14px 0 10px;
  font-size: clamp(30px, 2.75vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.h2{
  margin: 0;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.h3{ margin: 0; font-size: 18px; letter-spacing: -0.01em; }
.lead{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 18px;
  max-width: 62ch;
}
.small{
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.inline-link{ text-decoration: underline; text-underline-offset: 2px; }

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-cta{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items:flex-end;
  justify-content:flex-end;
}

.grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}

.card{
  position: relative;
  padding: 18px 18px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  overflow: hidden;
  text-decoration: none;
}
.card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(150,72,117,.22);
}
.card::after{
  content:"";
  position:absolute;
  inset:auto -70px -70px auto;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  pointer-events:none;
  background: radial-gradient(circle at 30% 30%, rgba(157,221,234,.22), transparent 62%);
}
.card.tone-pink::after{ background: radial-gradient(circle at 30% 30%, rgba(236,175,220,.26), transparent 62%); }
.card.tone-teal::after{ background: radial-gradient(circle at 30% 30%, rgba(157,221,234,.30), transparent 62%); }
.card.tone-peach::after{ background: radial-gradient(circle at 30% 30%, rgba(241,188,156,.26), transparent 62%); }
.card.tone-ink::after{ background: radial-gradient(circle at 30% 30%, rgba(17,24,39,.14), transparent 62%); }

.card-top{ display:flex; align-items:flex-start; justify-content: space-between; gap: 12px; }

.pill{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(17,24,39,.06);
  border: 1px solid rgba(17,24,39,.10);
  font-size: 12px;
  font-weight: 700;
  color: rgba(11,15,20,.78);
}
.pill.green { background: #effbef; }
.pill.blue { background: rgb(234 247 254) }
.card h3{ margin: 12px 0 6px; font-size: 18px; letter-spacing: -0.01em; }
.card p{ margin: 0; color: var(--muted); font-size: 14px; }
.card .go{
  margin-top: 14px;
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-weight: 950;
  font-size: 14px;
  color: var(--brand);
}

.arrow{ width: 18px; height: 18px; transition: transform .15s ease; }
.card:hover .arrow{ transform: translateX(2px); }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align: center;
  gap: 10px;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid var(--border);
  background-color: #fff;
  z-index: 1;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, filter .15s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn.primary{
  background: var(--brand);
  color: #fff;
  border-color: rgba(15,23,42,.22);
}
.btn.primary:hover{ filter: brightness(1.05); }
.btn.soft{
  background: rgba(17,24,39,.06);
  border-color: rgba(17,24,39,.10);
}
.btn.accent{
  background: linear-gradient(135deg, var(--accent) 0%, #c85aa0 55%, var(--accent-2) 120%);
  color: #fff;
  border-color: rgba(150,72,117,.25);
}
.btn.accent:hover{ filter: saturate(1.05) brightness(1.02); }

.icon{ width: 16px; height: 16px; }
  .about-grid-layout {grid-template-columns: 1.2fr .8fr;}
/* =========================================================
   Top promo banner
   ========================================================= */
.top-banner{
  background: var(--brand);
  color: #fff;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: -0.01em;
}
.top-banner__inner{
  display:flex;
  align-items:center;
  justify-content: center;
  line-height: 2;
  padding: 5px 0;
  gap: 12px;
  text-align: center;
}
.top-banner .code{
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.25);
  letter-spacing: 1.1px;
}
.top-banner__links{
  display:flex;
  gap: 14px;
  align-items:center;
  justify-content:flex-end;
  flex-wrap: wrap;
}
.top-banner__link{
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  font-weight: 700;
}

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display:flex;
  align-items:center;
  padding: 10px 0;
  gap: 14px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: 0;
}
.brand-logo{
  width: auto;
  max-width: 210px!important;
  object-fit: contain;
}

.nav{
  flex: 1;
  display:flex;
  justify-content:flex-end;
}
.nav-list{
  list-style:none;
  margin: 0;
  padding: 0;
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.nav-list li{ margin:0; padding:0; }
.nav-list a{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px;
  border-radius: 12px;
  font-size: 14px;
  color: rgba(11,15,20,.78);
  white-space: nowrap;
  word-break: keep-all;
  text-decoration: none;
}
.nav-list a:hover{
  color: var(--text);
  background: rgba(15,23,42,.05);
}

/* Dropdown submenu (desktop) */
.has-submenu{ position: relative; }
.submenu{
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  display: none;
}
.submenu li{ list-style:none; margin:0; padding:0; }
.submenu a{
  display:flex;
  padding: 10px 12px;
  border-radius: 12px;
}
.submenu a:hover{ background: rgba(15,23,42,.06); color: var(--text); }

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu{ display:block; }

/* Improve submenu hover bridge so it doesn't collapse */
.has-submenu::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top: 100%;
  height: 10px;
}

/* Mobile menu */
.mobile-toggle{
  display:none;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 14px;
  width: 44px;
  height: 44px;
  align-items:center;
  justify-content:center;
  box-shadow: var(--shadow-sm);
  margin-left: auto;
}

/* hamburger -> X */
.burger{
  width: 18px;
  height: 14px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}
.burger span{
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 999px;
  display:block;
  transition: transform .18s ease, opacity .18s ease, width .18s ease;
  transform-origin: center;
}
.mobile-toggle.is-open .burger span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.mobile-toggle.is-open .burger span:nth-child(2){ opacity: 0; width: 0; }
.mobile-toggle.is-open .burger span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

.mobile-drawer{
  display:none;
  border-top: 1px solid var(--border);
}
.mobile-drawer.is-open{ display:block; }
.mobile-drawer .nav{ justify-content:flex-start; }
.mobile-drawer .nav-list{
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 0 18px;
}
.mobile-drawer .nav a{
  padding: 10px 0;
  width: 100%;
  text-decoration: none;
}

/* Mobile: show submenu as indented list (no hover) */
.mobile-drawer .submenu{
  position: static;
  display: block;
  border: 0;
  box-shadow: none;
  background: transparent;
  padding: 6px 0 0 12px;
  margin: 0;
}
.mobile-drawer .has-submenu > a .chevron{ display:none; }

/* Full-screen mobile drawer */
body.nav-open{ overflow: hidden; }
.mobile-drawer[data-open="true"]{
  inset: 0;
  z-index: 90; /* below sticky header */
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  overflow: auto;
      top: 0;
    left: 0;
        width: 100%;
    height: 100vh;
}
.mobile-drawer[data-open="true"] .nav a{ font-size: 20px; font-weight: 950; }
.mobile-drawer[data-open="true"] .nav-list{ padding-top: 6px; }

/* =========================================================
   Hero
   ========================================================= */
.hero{
  padding: 64px 0 30px;
  position: relative;
  overflow: hidden;
}
.hero::before{
  content:"";
  position:absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(157,221,234,.38), transparent 60%),
    radial-gradient(circle at 60% 55%, rgba(236,175,220,.26), transparent 62%),
    radial-gradient(circle at 40% 70%, rgba(241,188,156,.20), transparent 60%);
  filter: blur(2px);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  grid-template-areas: "card media";
  gap: 36px;
  align-items:center;
  position: relative;
}
.hero-card{
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  grid-area: card;
}
.hero-media{
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow:hidden;
  box-shadow: var(--shadow-md);
  background:
    radial-gradient(circle at 25% 20%, rgba(157,221,234,.55), transparent 58%),
    radial-gradient(circle at 70% 35%, rgba(236,175,220,.40), transparent 62%),
    radial-gradient(circle at 45% 75%, rgba(241,188,156,.32), transparent 60%),
    linear-gradient(135deg, rgba(17,24,39,.02), rgba(17,24,39,.06));
    background-image: url('/wp-content/uploads/2026/01/IMG_9729-scaled.jpg');
    background-size: cover;
    background-position: center;
  aspect-ratio: 4 / 3;
  position: relative;
  grid-area: media; 
}
.hero-media-inner{
  position:absolute;
  inset: 0;
  display:flex;
  align-items:flex-end;
  padding: 16px;
}
.hero-sticker{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.70);
  box-shadow: var(--shadow-sm);
  border-radius: 18px;
  padding: 10px;
  max-width: 350px;
}

.hero-sticker-title{ font-weight: 950; letter-spacing: -0.01em; }
.hero-sticker-sub{ color: rgba(11,15,20,.72); font-weight: 700; margin-top: 4px; font-size: 13px; }
.hero-actions{ display:flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }

/* =========================================================
   As seen on
   ========================================================= */
.logo-grid{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  align-items: stretch;
  justify-content: center;
}
.logo-chip{
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.70);
  padding: 10px;
  text-align:center;
  transition: transform .15s ease, box-shadow .15s ease, color .15s ease;
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  gap: 10px;
  flex-basis: 175px;
  text-decoration: none;
}
.logo-chip:hover{ transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.logo-img{
  height: 26px;
  width: auto;
  max-width: 150px;
  filter: grayscale(1) contrast(1.1);
  opacity: .82;
}
.logo-chip:hover .logo-img{ filter: none; opacity: 1; }
.logo-name{
  font-weight: 700;
  font-size: 11.5px;
  color: rgba(11,15,20,.60);
  line-height: 1.2;
}
.logo-chip:hover .logo-name{ color: rgba(11,15,20,.82); }

/* =========================================================
   Featured events
   ========================================================= */
.event-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.event-card{
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  text-decoration: none;
}
.event-card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(150,72,117,.22);
}
.event-media{
  aspect-ratio: 2 /2;
  background:
    radial-gradient(circle at 30% 30%, rgba(157,221,234,.35), transparent 60%),
    radial-gradient(circle at 70% 55%, rgba(236,175,220,.25), transparent 62%),
    radial-gradient(circle at 45% 75%, rgba(241,188,156,.20), transparent 60%),
    linear-gradient(135deg, rgba(17,24,39,.03), rgba(17,24,39,.06));
  position: relative;
}
.event-media img{ width:100%; height:100%; object-fit: cover; }
.event-media-placeholder{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  color: rgba(11,15,20,.65);
  font-weight: 700;
  font-size: 12px;
}
.event-body{ padding: 16px 16px 18px; }
.event-meta{ color: rgba(11,15,20,.62); font-weight: 800; font-size: 12.5px; }
.event-title{ margin: 8px 0 8px; font-size: 18px; letter-spacing: -0.01em; color: var(--accent); }
.event-desc{ margin: 0; color: var(--muted); font-size: 14px; }
.event-cta{
  margin-top: 14px;
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-weight: 950;
  font-size: 14px;
  color: var(--brand);
}
.event-card:hover .arrow{ transform: translateX(2px); }

/* =========================================================
   Partnership flyers
   ========================================================= */
.partners{
  position: relative;
  overflow: hidden;          /* keeps circles inside the section */
  background: #fff;
}

/* soft bubbles */
.partners::before,
.partners::after{
  content:"";
  position:absolute;
  pointer-events:none;
  filter: blur(2px);
  opacity: .9;
}
/* left/top bubble cluster — centered radial, fades to white at box edge */
.partners::before{
    width: 300px;
    height: 300px;
    left: 0;
    top: 0;
    background: radial-gradient(circle at 50% 50%, rgb(217 157 234 / 20%) 0%, rgb(157 229 234 / 50%) 39%, #fff 72%, #fff 100%), radial-gradient(circle at 50% 50%, rgba(236, 175, 220, .22) 0%, rgba(236, 175, 220, .12) 44%, #fff 80%, #fff 100%), radial-gradient(circle at 50% 50%, rgba(241, 188, 156, .18) 0%, rgba(241, 188, 156, .10) 46%, #fff 82%, #fff 100%);
}

/* right/bottom bubble — centered radial, fades to white at box edge */
.partners::after{
    width: 300px;
    height: 300px;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgb(217 157 234 / 20%) 0%, rgb(157 229 234 / 50%) 39%, #fff 72%, #fff 100%), radial-gradient(circle at 50% 50%, rgba(236, 175, 220, .22) 0%, rgba(236, 175, 220, .12) 44%, #fff 80%, #fff 100%), radial-gradient(circle at 50% 50%, rgba(241, 188, 156, .18) 0%, rgba(241, 188, 156, .10) 46%, #fff 82%, #fff 100%);
}

/* keep content above bubbles */
.partners .container{
  position: relative;
  z-index: 1;
}
.partner-rail{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(340px, 420px);
  gap: 14px;
  overflow-x: auto;
  padding: 10px 2px 2px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.partner-rail::-webkit-scrollbar{ height: 10px; }
.partner-rail::-webkit-scrollbar-thumb{
  background: rgba(15,23,42,.12);
  border-radius: 999px;
}

.partner-card{
  scroll-snap-align: start;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.8);
  box-shadow: 0 10px 30px rgba(15,23,42,.08);
  transform: translateZ(0);
}

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

/* Reduce motion / hover polish */
.partner-card:hover{
  border-color: rgba(15,23,42,.18);
  box-shadow: 0 14px 40px rgba(15,23,42,.10);
}

/* =========================================================
   Homepage tiles + Experiences cards (images)
   ========================================================= */
.tile-media{
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  overflow:hidden;
  margin-bottom: 12px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(15,23,42,.03);
}
.tile-media img{ width:100%; height:100%; object-fit: cover; display:block; }

.exp-card{ overflow:hidden; padding: 0; }
.exp-media{
  width: 100%;
  aspect-ratio: 3 / 2;
  position: relative;
  z-index: 1;
}
.exp-media img{ width:100%; height:100%; object-fit: cover; display:block;}

.exp-card .exp-body{ padding: 14px 14px 0; }

.exp-card h3{ margin-top: 12px; margin-bottom: 6px; color: var(--accent); }
.exp-card p{ margin-top: 0; }
.exp-card .exp-actions{ padding-bottom: 16px; }
.exp-hint { margin-top: 20px;}
/* =========================================================
   Experiences page UI (tabs)
   ========================================================= */
.exp-controls{
  display:flex;
  gap: 12px;
  align-items:center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 18px;
}
.exp-tabs{
  display:flex;
  gap: 10px;
  padding: 6px;
  background: rgba(15,23,42,.05);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.exp-tab{
  appearance:none;
  border: 0;
  background: transparent;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  color: rgba(11,15,20,.70);
  cursor: pointer;
  flex: 0 0 auto;
  white-space: nowrap;
}
.exp-tab.is-active{
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15,23,42,.10);
}

.exp-panel{ display:none; margin-top: 18px; }
.exp-panel.is-active{ display:block; }

.exp-actions{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items:center;
}
.exp-actions .btn{ padding: 10px 12px; font-size: 13px; }

/* =========================================================
   Team page
   ========================================================= */
.team-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.team-member{ padding: 0; overflow:hidden; }
.team-member__photo{
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: rgba(15,23,42,.04);
}
.team-member__photo img{ width:100%; height:100%; object-fit: cover; display:block; }
.team-member__body{ padding: 14px 14px 16px; }
.team-member__name{ margin:0; font-size: 18px; letter-spacing: -0.01em; }
.team-member__role{ margin: 6px 0 0; color: var(--muted); font-weight: 700; }

/* =========================================================
   Contact / Forms
   ========================================================= */
.contact-card{
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 20% 20%, rgba(157,221,234,.22), transparent 55%),
    radial-gradient(circle at 70% 30%, rgba(236,175,220,.18), transparent 58%),
    linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
  box-shadow: var(--shadow-sm);
  padding: 22px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:start;
}
.contact-copy { padding-right: 50px;}
.contact-badges{ display:flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.contact-form{
  border-radius: 18px;
  border: 1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.78);
  padding: 16px;
}

/* Gravity Forms quick polish */
.gform_wrapper .gfield_label{ font-weight: 700; }
.gform_wrapper input,
.gform_wrapper textarea,
.gform_wrapper select{
  border-radius: 14px !important;
  border: 1px solid rgba(17,24,39,.14) !important;
  padding: 12px 12px !important;
}
.gform_wrapper textarea{ min-height: 120px; }
.gform_wrapper .gform_button{
  border-radius: 999px !important;
  padding: 12px 16px !important;
  border: 1px solid rgba(150,72,117,.25) !important;
  background: linear-gradient(135deg, var(--accent) 0%, #c85aa0 55%, var(--accent-2) 120%) !important;
  color: #fff !important;
  font-weight: 950 !important;
}
.gform_wrapper.gravity-theme .gfield_checkbox label, .gform_wrapper.gravity-theme .gfield_radio label { font-size: 12px!important; }
/* =========================================================
   FAQ + Policy pages
   ========================================================= */
.faq-item summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 1000;
  letter-spacing: -0.02em;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-question { flex-basis: 80%;}
.faq-plus{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(15,23,42,.03);
  font-weight: 1000;
  transition: transform .15s ease;
}
.faq-item[open] .faq-plus{ transform: rotate(45deg); }

.policy-content{
  font-weight: 800;
  color: rgba(11,15,20,.78);
  line-height: 1.75;
}
.policy-content h2,
.policy-content h3,
.policy-content h4{
  color: var(--text);
  margin-top: 18px;
}
.policy-content a{ text-decoration: underline; text-underline-offset: 3px; }
.policy-content ul{ padding-left: 18px; }

/* =========================================================
   Careers link cards
   ========================================================= */
.link-card{
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.link-card:hover{
  transform: translateY(-1px);
  border-color: rgba(15,23,42,.16);
  box-shadow: var(--shadow-md);
}
.link-card__arrow{
  position: absolute;
  right: 16px;
  top: 16px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(15,23,42,.04);
  font-weight: 1000;
}

/* =========================================================
   Footer
   ========================================================= */
.footer{
  border-top: 1px solid var(--border);
  background: var(--brand);
  padding: 56px 0 28px;
  color: #fff;
}

.footer-grid{
    display: grid;
    grid-template-columns: 1.2fr .9fr .9fr;
    gap: 22px;
}
.footer-logo{
  height: 75px !important;
  width: auto;
  display:block;
  object-fit: contain;
}

.footer-muted{ font-size: 14px; }

.footer-h{
  margin: 0 0 12px;
  font-weight: 1000;
  letter-spacing: -0.02em;
}
.footer-links{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 10px;
}
.footer-links a{
  display:inline-block;
  padding: 6px 0;

  font-weight: 800;
  text-decoration: none;
}
.footer-links a:hover, .inline-link:hover, .footer-muted a:hover { color: var(--accent-2); }

.footer-social{
  display:inline-flex;
  gap: 8px;
  align-items:center;
  padding: 8px 10px;
}
.footer-social .icon{ width: 18px; height: 18px; }

.footer-bottom{
  margin-top: 20px;
  padding: 14px;
  border-top: 1px solid rgb(125, 125, 125);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  text-align: center;
}

/* =========================================================
   Utilities
   ========================================================= */
.divider{ border-top: 1px solid var(--border); }
.sr-only{
  position:absolute !important;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
/* =========================================================
   Woocommerce
   ========================================================= */
.woocommerce img, 
.woocommerce-page img {
    height: unset;
    max-width: unset;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 767px){
  .hero-grid{ grid-template-columns: 1fr; grid-template-areas: "media" "card"; }
  .footer{ text-align: center; }
  .footer-grid{ grid-template-columns: 1fr; }
  .logo-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
  .footer-logo{ margin: auto; }
  .grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .event-grid{ grid-template-columns: 1fr; }
  .contact-card{ grid-template-columns: 1fr; }
  .contact-copy { padding-right: 0;}
  .team-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .woocommerce ul.products{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .booking-faq{ grid-template-columns: 1fr !important; }
  .logo-chip{ flex-basis: 140px; }
  .hero-sticker{ display: none; }

  .nav-list{ gap: 12px; }
  .nav a{ font-size: 13px; padding: 10px 8px; }
  .brand-logo{ max-width: 180px!important; }

  .section{ padding: 56px 0; }

  /* Top banner */
  .top-banner__inner{ flex-wrap: wrap; }
  .top-banner__links{ display:none; }

  /* Header */
  .header-inner .nav{ display:none; }
  .mobile-toggle{ display:inline-flex; }

  /* Layout */
  .grid{ grid-template-columns: 1fr; }
  .logo-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .team-grid{ grid-template-columns: 1fr; }

  /* Pills as carousel */
  .exp-tabs{
    width: fit-content;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    padding: 6px;
    gap: 8px;
    scrollbar-width: none;
  }
  .exp-tabs::-webkit-scrollbar{ display:none; }
  
  /* Section header CTAs */
  .section-head{ align-items:flex-start; flex-direction: column;}
  .section-cta{ width: 100%; justify-content:center; }
  .section-cta .btn{ width: 48%; justify-content:center;}

  /* Careers */
  .link-card__arrow{ right: 12px; top: 12px; }
	
  /* Partnership flyers */
  .partner-rail{
    grid-auto-columns: minmax(280px, 360px);
  }
}

@media (max-width: 1023px){
  .nav-list {
    gap: 0;
  }
  .nav-list a {
    font-size: 12px;
  }
}
