:root{
  --bg:#0b0b0f;
  --card:#11111a;
  --text:#f3f4f6;
  --muted:#b6b7c2;
  --line:rgba(255,255,255,.10);
  --shadow: 0 10px 30px rgba(0,0,0,.45);
  --radius: 18px;
  --container: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}

/* ======================
   Typography System
====================== */

h1, .heading-xl{
  font-weight: 800; /* ExtraBold */
}

h2, h3, .heading-md{
  font-weight: 700; /* Bold */
}

h4, h5, h6, .heading-sm{
  font-weight: 600; /* SemiBold */
}

p, .text-body{
  font-weight: 400; /* Regular */
}


body{
  margin:0;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  line-height:1.35;

  /* Luxury dark gradient background */
  background:
    radial-gradient(
      1200px 600px at 15% -10%,
      rgba(245, 245, 240, 0.08),
      transparent 55%
    ),
    radial-gradient(
      900px 500px at 85% 0%,
      rgba(245, 245, 240, 0.06),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      #0e0e12 0%,
      #0b0b0f 35%,
      #09090c 100%
    );

  background-attachment: fixed;
}


a{color:inherit;text-decoration:none}
.container{max-width:var(--container);margin:0 auto;padding:0 16px}
.section{padding:56px 0;border-top:1px solid var(--line)}
h1,h2,p{margin:0}

.section h2{
  font-weight: 700;
  letter-spacing: -0.3px;
}

.hero__sub,
.heroCard__small,
.kicker,
.text-muted{
  font-weight: 400;
}

.nav a,
.navItem,
.btn{
  font-weight: 600; /* SemiBold */
}

.sectionHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom: 14px;
}
/* Prevent section title underline from causing horizontal overflow on mobile */
.sectionHead .sectionTitle::after,
.aboutHead .sectionTitle::after{
  width: min(500px, 72vw);   /* was 500px */
  max-width: 100%;
}

.sectionTitle{
  font-weight: 800;           /* your rule: ExtraBold for headings */
  letter-spacing: -0.4px;
}
.eventRail{
  overflow-x: hidden;        /* important for looping */
  position: relative;
}

.eventTrack{
  display: flex;
  gap: 14px;
  width: max-content;
}

/* cards stay the same */
.eventCard{
  flex: 0 0 auto;
  width: 78vw;              /* mobile */
}

/* tablet */
@media (min-width: 780px){
  .eventCard{ width: 40vw; }
}

/* desktop */
@media (min-width: 980px){
  .eventCard{ width: 28vw; }
}

.scrollBtns{ display:none; gap:8px; }

.iconBtn{
  width: 40px; height: 40px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 18px;
}



.eventCard img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display:block;
}

.eventCard__meta{
  padding: 12px 12px 14px;
}

.eventCard__title{
  font-weight: 700;           /* titles bold */
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}

.eventCard__sub{
  margin-top: 6px;
  color: var(--muted);
  font-weight: 400;           /* small text regular */
  font-size: 13px;
}

.sectionFoot{
  margin-top: 16px;
  display:flex;
  justify-content:flex-start;
}

/* tablet/desktop */
@media (min-width: 780px){
  .eventRail{ grid-auto-columns: 40%; }
  .eventCard img{ height: 240px; }
}

@media (min-width: 980px){
  .eventRail{ grid-auto-columns: 28%; }
  .scrollBtns{ display:flex; }
}

/* ======================
   Red Accent Button System
====================== */

.btn--red{
  background:
    linear-gradient(
      135deg,
      rgba(140, 30, 40, 0.45),
      rgba(90, 15, 25, 0.45)
    );
  border: 1px solid rgba(255, 90, 90, 0.35);
  color: #f2f2f0;

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.btn--red.primary{
  font-weight: 800;
  letter-spacing: .06em;
}

@media (hover: hover){
  .btn--red.primary:hover{
    background:
      linear-gradient(
        135deg,
        rgba(255, 0, 21, 0.55),
        rgba(255, 0, 25, 0.55)
      );
    border-color: rgba(221, 221, 221, 0.5);
  }
}
.btn--red.secondary{
  background:
    linear-gradient(
      135deg,
      rgba(255, 0, 0, 0.25),
      rgba(255, 60, 0, 0.25)
    );
  border-color: rgba(255, 255, 255, 0.2);
}
@media (hover: hover){
  .btn--red.secondary:hover{
    background:
      linear-gradient(
        135deg,
        rgba(170, 40, 50, 0.35),
        rgba(120, 20, 30, 0.35)
      );
    border-color: rgba(255, 110, 110, 0.35);
  }
}

.skip{
  position:absolute;left:-999px;top:0;
  background:#fff;color:#000;padding:10px 12px;border-radius:10px;
}
.skip:focus{left:12px;top:12px;z-index:9999}

/* ======================
   Header
====================== */

[hidden] { display: none !important; }

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  /* not pure black — glass over gradient */
  background: rgba(14,14,18,.55);
  border-bottom: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}



.header__inner{
  height:64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

/* Logo */
.logo{
  display: inline-flex;
  align-items: center;
  height: 44px;      /* stays tap-safe */
}

.logo__img{
  height: 64px;     /* ↑ increase from 26px */
  width: auto;
  display: block;
}

/* Desktop nav */
.nav--desktop{display:none; gap:18px; align-items:center}
.nav--desktop a{color:var(--muted); font-weight:700}
.nav--desktop a:hover{color:var(--text)}

/* Hamburger */
.menuBtn{
  width:44px; height:44px;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  display:grid;
  place-items:center;
}
.menuBtn__bar{
  display:block;
  width:18px; height:2px;
  background:var(--text);
  margin:2px 0;
  border-radius:4px;
  opacity:.9;
}

/* ======================
   Mobile Menu Overlay Drawer
====================== */
.navOverlay{
  position:fixed;
  inset:0;
  z-index:200;

  background: rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  display:grid;
  justify-items:end;
}

.navDrawer{
  width: min(86vw, 360px);
  height: 100%;
  padding: 14px;

  /* richer dark glass */
  background:
    linear-gradient(
      180deg,
      rgba(18,18,24,0.92),
      rgba(12,12,18,0.88)
    );

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-left: 1px solid rgba(255,255,255,.12);
  box-shadow: 
    -20px 0 40px rgba(0,0,0,.65),
    inset 0 1px 0 rgba(255,255,255,.06);

  display:grid;
  align-content:start;
  gap:10px;
}

.navItem{
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.06),
      rgba(255,255,255,0.03)
    );
}

/* Overlay fade */
.navOverlay{
  opacity: 0;
  transition: opacity 0.25s ease;
}

.navOverlay.is-open{
  opacity: 1;
}

/* Drawer slide */
.navDrawer{
  transform: translateX(100%);
  transition: transform 0.25s cubic-bezier(.4,0,.2,1);
}

.navOverlay.is-open .navDrawer{
  transform: translateX(0);
}


.navDrawer__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 6px 6px 10px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
}
.navDrawer__title{
  color: var(--muted);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
}

.navClose{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 16px;
}

.navItem{
  padding: 14px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .10em;
  font-size: 12px;
}

/* ======================
   Hamburger Animation
====================== */

.menuBtn{
  position: relative;
}

.menuBtn__bar{
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}

/* Open state */
.menuBtn.is-open .menuBtn__bar:nth-child(1){
  transform: translateY(6px) rotate(45deg);
}

.menuBtn.is-open .menuBtn__bar:nth-child(2){
  opacity: 0;
}

.menuBtn.is-open .menuBtn__bar:nth-child(3){
  transform: translateY(-6px) rotate(-45deg);
}


/* ======================
   Buttons
====================== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  background:rgba(255,255,255,.12);
  border:1px solid var(--line);
  font-weight:800;
}
.btn--ghost{background:transparent}
.btn--small{padding:10px 14px;border-radius:12px}
.navCta{margin-top:6px}

/* ======================
   NAV TEXT: ALL CAPS
====================== */
.nav--desktop a,
.navItem,
.btn{
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ======================
   Hero (mobile-first)
====================== */
.hero{
  padding: 24px 0 22px; /* tighter, more punch */
}

.hero__grid{display:grid; gap:18px}

.kicker{
  color:var(--muted);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:12px;
}

.hero__title{
  font-size: 36px;          /* up from 34 */
  font-weight: 800;         /* strong but not absurd */
  letter-spacing: -0.9px;   /* tighter = authority */
  line-height: 1.03;
  margin-top: 8px;
}

.hero__sub{
  color: rgba(242,242,240,.82); /* less muted */
  margin-top: 10px;
  max-width: 46ch;              /* tighter line length */
  font-weight: 500;
}


.hero__cta{
  display:flex;
  gap:12px;
  margin-top:14px; /* slightly closer to headline */
}
.hero__cta .btn:first-child{
  font-weight: 800;
  letter-spacing: .06em;
}


.hero__meta{
  display:flex;
  gap:10px;
  margin-top:16px;
  flex-wrap:wrap;
}

.chip{
  padding: 8px 12px;
  border-radius: 999px;

  background:
    linear-gradient(
      135deg,
      rgba(33, 9, 62, 0.35),
      rgba(90, 15, 25, 0.35)
    );

  border: 1px solid rgba(249, 34, 181, 0.25);

  color: #e7e7e6;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: .06em;

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.chip:hover{
  background:
    linear-gradient(
      135deg,
      rgba(121, 1, 227, 0.45),
      rgba(113, 20, 120, 0.45)
    );
  border-color: rgba(255, 100, 100, 0.4);
}

.hero__meta{
  margin-top: 14px;
}

.chip{
  padding: 8px 10px;
  font-size: 11.5px;
  letter-spacing: .06em;
}

/* Hero card */
.hero__media{min-height:210px}
.heroCard{
  height:100%;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.heroCard__top{
  height:44px;
  display:flex;
  align-items:center;
  gap:8px;
  padding:0 14px;
  border-bottom:1px solid var(--line);
}
.dot{
  width:10px;height:10px;border-radius:999px;
  background:rgba(255,255,255,.18);
}
.heroCard__body{padding:16px}
.heroCard__label{color:var(--muted);font-weight:700;text-transform:uppercase;letter-spacing:.10em;font-size:12px}
.heroCard__big{font-size:20px;font-weight:800;margin-top:8px;line-height:1.15}
.heroCard__small{color:var(--muted);margin-top:8px}

/* ======================
   Services Section
====================== */

.servicesHead{
  margin-bottom: 24px;
}
.servicesHead .sectionTitle::after{
  content: "";
  display: block;
  width: 500px;
  height: 2px;
  margin-top: 10px;
  background: linear-gradient(
    90deg,
    rgba(220,38,38,.9),
    rgba(220,38,38,.15),
    transparent
  );
}
.sectionSub{
  margin-top: 8px;
  max-width: 520px;
  color: var(--muted);
  font-weight: 400;
}

.servicesGrid{
  display: grid;
  gap: 18px;
}

/* service cards */
.serviceCard{
  position: relative;
  padding: 20px 20px 22px;

  border-radius: 20px;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.06),
      rgba(255,255,255,0.03)
    );

  border: 1px solid rgba(255,255,255,.14);
  box-shadow:
    0 20px 40px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.06);
}

/* ======================
   Service Card Hover
====================== */

@media (hover: hover){
  .serviceCard{
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease,
      border-color 0.25s ease;
  }

  .serviceCard:hover{
    transform: translateY(-4px);

    box-shadow:
      0 28px 60px rgba(0,0,0,.6),
      inset 0 1px 0 rgba(255,255,255,.08);

    border-color: rgba(255,255,255,.22);
  }

  /* accent card reacts slightly more */
  .serviceCard.accent:hover::before{
    border-left-color: rgba(190,50,60,.95);
  }
}

/* subtle red accent strip (inspired, not copied) */
.serviceCard.accent::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:20px;
  border-left: 4px solid rgba(255, 0, 21, 0.85);
  pointer-events:none;
}

.serviceTitle{
  font-weight: 700; /* your rule: semibold/bold */
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 12px;
}

.serviceList{
  list-style: none;
  padding: 0;
  margin: 0;
}

.serviceList li{
  position: relative;
  padding-left: 14px;
  margin-bottom: 8px;

  font-size: 14px;
  font-weight: 400;
  color: rgba(242,242,240,.85);
}

.serviceList li::before{
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(255,255,255,.5);
}

/* tablet */
@media (min-width: 780px){
  .servicesGrid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* desktop */
@media (min-width: 980px){
  .servicesGrid{
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}


/* ======================
   Team Section Card
   ====================== */
   /* ======================
   TEAM SECTION (Full)
====================== */

.team{ position: relative; }
/* Featured cards layout */
.teamFeatured{
  margin-top: 24px;
  display: grid;
  gap: 22px;
}

/* Desktop: 2 cards centered (like your 3rd image) */
@media (min-width: 980px){
  .teamFeatured{
    grid-template-columns: repeat(2, minmax(360px, 520px));
    justify-content: center;
    align-items: stretch;
  }
}

/* Each featured card should NOT have a huge max-width anymore */
.teamCardLine{
  width: 100%;
  max-width: 520px;   /* controls the “small card” size */
  margin: 0;          /* grid will handle centering */
}


/* ---------- Featured “Line Cutout” Card ---------- */



.teamCardLine__inner{
  position: relative;
  border-radius: 20px;
  overflow: hidden;

  background:
    radial-gradient(1200px 500px at 55% 40%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));

  border: 1px solid rgba(255,255,255,.14);

  box-shadow:
    0 30px 90px rgba(0,0,0,.62),
    inset 0 1px 0 rgba(255,255,255,.07);

  padding: 28px 28px 28px; /* this value adjusts the spacing of texts inside the card . To be specific the space between the boarders and the texts*/
  min-height: 340px;
}

/* reserve space for figure */
.teamCardLine__content{
  max-width: 60ch;
  padding-right: 150px;

}

.teamCardLine__name{
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 30px;
}

.teamCardLine__title{
  margin-top: 12px;
  font-weight: 400;
  color: rgba(214, 211, 211, 0.75);
}

.teamCardLine__desc{
  margin-top: 26px;
  font-weight: 400;
  color: rgba(255, 255, 254, 0.82);
  line-height: 1.55;
}

.teamCardLine__meta{
  margin-top: 18px;
  padding-left: 18px;
  color: rgba(242,242,240,.78);
  font-weight: 400;
}

.teamCardLine__meta li{ margin-top: 12px; }

.teamCardLine__meta strong{
  font-weight: 700;
  color: rgba(242,242,240,.92);
}

.teamCardLine__meta a{
  color: rgba(242,242,240,.90);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.teamCardLine__meta a:hover{
  border-bottom-color: rgba(255,255,255,.35);
}

/* cut line */
.teamCardLine__cut{
  position: absolute;
  left: 34px;
  right: 34px;
  top: 54%;
  height: 1px;
  background: rgba(255,255,255,.14);
}

/* figure */
.teamCardLine__figure{
  position: absolute;
  right: 22px;
  top: 18px;
  width: 190px;
  height: 240px;
  z-index: 2;
  pointer-events: none;
}

.teamCardLine__figure img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 26px 26px rgba(0,0,0,.55));
}

/* ==========================================
   TEAM CARD — Desktop compact (no mobile change)
   Goal: slimmer cards so 2 fit nicely
========================================== */
@media (min-width: 980px){

  /* keep the card itself slimmer */
  .teamCardLine{
    max-width: 520px;   /* you can try 500px too */
  }

  /* reduce padding = reduces height */
  .teamCardLine__inner{
    padding: 22px 22px 20px;
    border-radius: 28px;
    min-height: 300px;      /* remove forced tall height if you had it */
  }

  /* reserve less space for image = reduces width */
  .teamCardLine__content{
    max-width: 46ch;
    padding-right: 210px;
  }

  /* smaller image block */
  .teamCardLine__figure{
    width: 170px;
    height: 220px;
    right: 18px;
    top: 18px;
  }

  /* typography scale down */
  .teamCardLine__name{
    font-size: 18px;
    letter-spacing: .05em;
  }

  .teamCardLine__title{
    margin-top: 6px;
    font-size: 13px;
  }

  .teamCardLine__desc{
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.45;
  }

  .teamCardLine__meta{
    margin-top: 10px;
    font-size: 12px;
  }

  .teamCardLine__meta li{
    margin-top: 8px;
  }
}

/* Desktop: slightly bigger image (keep card slim) */
@media (min-width: 1024px){ /*was 980*/
  .teamCardLine__figure{
    width: 320px;     /* was 170 */
    height: 320px;    /* was 220 */
    right: -50px;      /* was 18 */
    top: -20px;        /* was 14 */
  }

  /* compensate a bit so text never collides */
  .teamCardLine__content{
    padding-right: 200px; /* was 210 */
  }
}



/* hover */
@media (hover:hover){
  .teamCardLine__inner,
  .teamMini{
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }

  .teamCardLine__inner:hover{
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.20);
    box-shadow:
      0 40px 110px rgba(0,0,0,.70),
      inset 0 1px 0 rgba(255,255,255,.08);
  }

  .teamMini:hover{
    transform: translateY(-3px);
    border-color: rgba(255,255,255,.22);
  }
}

/* responsive featured card */
@media (max-width: 820px){
  .teamCardLine__inner{
    padding: 26px 20px 22px;
    border-radius: 28px;
    min-height: auto;
  }

  .teamCardLine__content{
    padding-right: 0;
    max-width: none;
  }

  .teamCardLine__figure{
    position: relative;
    right: auto;
    top: auto;
    width: min(320px, 80vw);
    height: 280px;
    margin: 18px auto 0;
  }

  .teamCardLine__cut{
    left: 20px;
    right: 20px;
    top: 58%;
  }
}

/* ======================
   CONTACT SECTION
====================== */

.contactGrid{
  margin-top: 24px;
  display: grid;
  gap: 18px;
}

@media (min-width: 900px){
  .contactGrid{
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
    gap: 22px;
  }
}

.contactCard,
.contactForm,
.mapCard{
  border-radius: 26px;
  background:
    radial-gradient(900px 360px at 30% 20%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow:
    0 22px 60px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.contactCard{
  padding: 22px;
}

.contactCard__title{
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 18px;
}

.contactCard__text{
  margin-top: 10px;
  color: rgba(242,242,240,.78);
  line-height: 1.55;
  font-size: 14px;
}

.contactList{
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.contactItem{
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 16px;
  text-decoration: none;
  color: rgba(242,242,240,.92);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
}

.contactItem:hover{
  border-color: rgba(255,255,255,.20);
}

.contactItem--static{
  cursor: default;
}

.contactItem__label{
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .10em;
  color: rgba(242,242,240,.58);
  font-weight: 700;
}

.contactItem__value{
  font-size: 14px;
  color: rgba(242,242,240,.88);
  font-weight: 600;
  word-break: break-word;
}

.contactActions{
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contactHint{
  margin-top: 12px;
  font-size: 12.5px;
  color: rgba(242,242,240,.62);
}

/* ---------- Form ---------- */

.contactForm{
  padding: 22px;
}

.contactForm__title{
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 16px;
}

.field{
  margin-top: 12px;
  display: grid;
  gap: 6px;
}

.field__label{
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .10em;
  color: rgba(242,242,240,.60);
  font-weight: 700;
}

.field__input{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.20);
  color: rgba(242,242,240,.92);
  padding: 12px 12px;
  outline: none;
  font-family: inherit;
}

.field__input:focus{
  border-color: rgba(255,255,255,.26);
  box-shadow: 0 0 0 3px rgba(255,255,255,.06);
}

.field__textarea{
  resize: vertical;
  min-height: 120px;
}

.formNote{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(242,242,240,.55);
  line-height: 1.45;
}

/* ---------- Map strip ---------- */

.mapCard{
  margin-top: 18px;
  overflow: hidden;
}

.mapCard__top{
  padding: 18px 22px 12px;
}

.mapCard__title{
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 14px;
}

.mapCard__sub{
  margin-top: 6px;
  font-size: 13px;
  color: rgba(242,242,240,.70);
}

.mapEmbed{
  border-top: 1px solid rgba(255,255,255,.12);
  height: 280px;
}

.mapEmbed iframe{
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Buttons (in case you don't already have consistent btn styles) ---------- */

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.14);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.btn--primary{
  background: rgba(255,255,255,.10);
  color: rgba(242,242,240,.95);
}

.btn--ghost{
  background: rgba(0,0,0,.20);
  color: rgba(242,242,240,.90);
}

.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.22);
}

.btn--full{
  width: 100%;
  margin-top: 12px;
}

.contactMap{
  width: 100%;
  height: 420px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.contactMap iframe{
  width: 100%;
  height: 100%;
  border: 0;
  
}
@media (min-width: 1024px){
  .contactMap{
    height: 480px;
  }
}

/* MAP REFINEMENT */
.contactMap{
  max-width: 1100px;
  margin: 0 auto 28px;
  height: 320px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);

  background: rgba(255,255,255,.04);
  box-shadow:
    0 26px 70px rgba(0,0,0,.62),
    inset 0 1px 0 rgba(255,255,255,.05);
}

@media (min-width: 1024px){
  .contactMap{
    height: 360px;
  }
}

.contactMap iframe{
  width: 100%;
  height: 100%;
  border: 0;
  
}
/* CONTACT GRID RHYTHM */
.contactGrid{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

@media (min-width: 1024px){
  .contactGrid{
    grid-template-columns: 1fr 460px; /* keep form card consistent */
    align-items: center;
  }
}
/* CONTACT LEFT COPY */
.contact .sectionTitle{
  letter-spacing: .08em;
}

.contactCard__text{
  margin-top: 10px;
  max-width: 48ch;
  color: rgba(242,242,240,.70);
}

.contactList{
  margin-top: 18px;
  gap: 12px;
}

.contactItem{
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.12);
}

.contactItem__label{
  font-size: 10px;
}

.contactItem__value{
  font-size: 14px;
}
/* FORM POLISH */
.contactForm{
  border-radius: 26px;
  padding: 22px;
  background:
    radial-gradient(900px 360px at 30% 20%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow:
    0 22px 60px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.field__input{
  background: rgba(0,0,0,.26);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.25);
}

.field__input:focus{
  border-color: rgba(255,255,255,.22);
  box-shadow:
    0 0 0 3px rgba(255,255,255,.06),
    inset 0 0 0 1px rgba(0,0,0,.25);
}

.btn--primary{
  background: rgba(242,242,240,.92);
  color: rgba(10,10,10,.92);
  border-color: rgba(255,255,255,.25);
}

.btn--primary:hover{
  transform: translateY(-1px);
  background: rgba(242,242,240,.98);
}
/* FOOTER ROW */
.siteFooter{
  margin-top: 34px;
  padding: 18px 0 8px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(242,242,240,.55);
  font-size: 12px;
}

.siteFooter__row{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}


/* ======================
   ABOUT SECTION
====================== */

.aboutGrid{
  margin-top: 22px;
  display: grid;
  gap: 18px;
}

@media (min-width: 1024px){
  .aboutGrid{
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
    gap: 22px;
  }
}

.aboutCard{
  border-radius: 26px;
  padding: 22px;
  background:
    radial-gradient(900px 360px at 30% 20%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow:
    0 22px 60px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.aboutCard--main{
  padding: 26px;
}

.aboutCard__title{
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 14px;
  color: rgba(242,242,240,.92);
}

.aboutCard__text{
  margin-top: 10px;
  color: rgba(242,242,240,.72);
  line-height: 1.6;
  font-size: 14px;
  max-width: 62ch;
}

.aboutList{
  margin-top: 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: rgba(242,242,240,.70);
  font-size: 13.5px;
}

.aboutList li{
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.10);
}

.aboutList li span{
  font-weight: 700;
  color: rgba(242,242,240,.92);
  margin-right: 6px;
}

.aboutActions{
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.aboutStack{
  display: grid;
  gap: 18px;
}

.aboutCard--stats{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.aboutStat{
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.10);
}

.aboutStat__num{
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .02em;
  color: rgba(242,242,240,.92);
}

.aboutStat__label{
  margin-top: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .10em;
  color: rgba(242,242,240,.55);
}
.aboutHead .sectionTitle{
  position: relative;
}

/* Section title underline — responsive */
.sectionHead .sectionTitle::after,
.aboutHead .sectionTitle::after{
  width: min(500px, 72vw);   /* desktop stays long, mobile shrinks */
  max-width: 100%;
}

.aboutCard--main{
  position: relative;
}

.aboutCard--main::before{
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;

  background:
    radial-gradient(
      600px 240px at 10% 0%,
      rgba(220,38,38,.10),
      transparent 60%
    );
}

@media (max-width: 768px){
  .aboutHead{
    margin-bottom: 24px;
  }
}


/* Select field base */
.field__input select,
.field__input{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Dropdown itself */
select.field__input{
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    rgba(0,0,0,.35);
  color: rgba(242,242,240,.92);
  border: 1px solid rgba(255,255,255,.14);
}

/* Options inside dropdown */
select.field__input option{
  background: #111;              /* not pure black */
  color: #f2f2f0;
}

/* Hover / selected option */
select.field__input option:hover,
select.field__input option:checked{
  background: linear-gradient(
    90deg,
    rgba(220,38,38,.85),
    rgba(220,38,38,.45)
  );
  color: #fff;
}

.nextDropLink{
  display: block;
  color: inherit;
  text-decoration: none;
}

.heroCard{
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease;
}

@media (min-width: 1024px){
  .nextDropLink:hover .heroCard{
    transform: translateY(-3px);
    box-shadow:
      0 28px 90px rgba(0,0,0,.65),
      inset 0 1px 0 rgba(255,255,255,.08);
  }
}
/*to prevent overflow on the right*/
html, body{
  width: 100%;
  overflow-x: hidden;
}

/* Mobile: stack section title + subtitle so it doesn't squeeze vertically */
@media (max-width: 640px){
  .sectionHead{
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
  }

  .sectionHead .sectionSub{
    width: 100%;
    max-width: 52ch;
    text-align: left;
    white-space: normal;
    overflow-wrap: anywhere; /* prevents weird narrow stacking */
    word-break: normal;
  }
}
@media (max-width: 640px){
  .sectionHead .sectionSub{ font-size: 0.95rem; opacity: 0.9; }
}

html{
  scroll-behavior: smooth;
}
section{
  scroll-margin-top: 90px; /* adjust to your navbar height */
}


/* Parallax layer */
.bgParallax{
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  transform: translate3d(0,0,0);
  will-change: transform;
}

.bgParallax{
  background:
    radial-gradient(900px 600px at 20% 10%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(900px 600px at 80% 40%, rgba(225,6,44,.10), transparent 55%),
    linear-gradient(180deg, #0c0d10 0%, #13151a 45%, #0b0c0f 100%);
  filter: saturate(105%);
}


/* =========================
   EVENTS — UPCOMING FEATURE
========================= */

.eventsUpcoming .sectionHead{
  margin-bottom: 14px;
}

.featuredEvent{
  display: grid;
  gap: 16px;
  text-decoration: none;
  color: inherit;

  border-radius: 28px;
  padding: 16px;

  background:
    radial-gradient(900px 600px at 25% 20%, rgba(255,255,255,.08), transparent 60%),
    radial-gradient(900px 600px at 80% 40%, rgba(225,6,44,.14), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 30px 90px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.06);

  transition: transform .25s ease, box-shadow .25s ease;
}

@media (min-width: 980px){
  .featuredEvent{
    grid-template-columns: 420px 1fr;
    align-items: center;
    padding: 20px;
  }
}

.featuredEvent:hover{
  transform: translateY(-2px);
  box-shadow:
    0 38px 110px rgba(0,0,0,.62),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.eventCover{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}

.eventCover--featured{
  aspect-ratio: 4 / 5; /* 1080x1350 */
}

.eventCover img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featuredEvent__body{
  padding: 6px 6px 2px;
}

.featuredEvent__meta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.pill{
  display:inline-flex;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .10em;
  font-size: 12px;
  background: rgba(225,6,44,.18);
  border: 1px solid rgba(225,6,44,.28);
}

.pill--ghost{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}

.featuredEvent__title{
  margin: 0 0 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.05;
  font-size: clamp(20px, 2.4vw, 34px);
}

.featuredEvent__title span{
  font-weight: 700;
  opacity: .92;
}

.featuredEvent__text{
  margin: 0 0 14px;
  opacity: .82;
  line-height: 1.6;
  max-width: 60ch;
}

.featuredEvent__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.featuredEvent__note{
  margin: 0;
  font-size: 12px;
  letter-spacing: .06em;
  opacity: .62;
  text-transform: uppercase;
}

/* =========================
   EVENTS — PAST EVENTS GRID
========================= */

.eventCover--square{
  aspect-ratio: 1 / 1; /* 1080x1080 */
}

.pastEventsGrid{
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

@media (min-width: 900px){
  .pastEventsGrid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}

.pastEventCard{
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 26px 80px rgba(0,0,0,.55);
  transition: transform .25s ease, box-shadow .25s ease;
}

.pastEventCard:hover{
  transform: translateY(-2px);
  box-shadow: 0 34px 105px rgba(0,0,0,.62);
}

.pastEventCard__body{
  padding: 14px 14px 16px;
}

.pastEventCard__title{
  margin: 0 0 6px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 14px;
}

.pastEventCard__meta{
  margin: 0;
  opacity: .72;
  font-size: 13px;
}

/* =========================
   EVENTS — GALLERY GRID
========================= */

.galleryGrid{
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

@media (min-width: 900px){
  .galleryGrid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
}

.galleryItem{
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 22px 70px rgba(0,0,0,.55);
  transform: translateZ(0);
  transition: transform .25s ease, box-shadow .25s ease;
}

.galleryItem img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1 / 1; /* keeps grid tidy even with mixed photos */
}

.galleryItem:hover{
  transform: translateY(-2px);
  box-shadow: 0 32px 95px rgba(0,0,0,.62);
}

/* =========================
   LIGHTBOX SLIDER
========================= */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: 64px 1fr 64px;
  align-items: center;
  padding: 18px;
}

.lightbox[hidden]{ display:none; }

.lightbox__figure{
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.lightbox__img{
  max-width: min(92vw, 1100px);
  max-height: 82vh;
  border-radius: 18px;
  box-shadow: 0 40px 120px rgba(0,0,0,.7);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}

.lightbox__cap{
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .75;
}

.lightbox__close{
  position: fixed;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.9);
  cursor: pointer;
}

.lightbox__nav{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.9);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  display:grid;
  place-items:center;
  justify-self: center;
}

@media (max-width: 640px){
  .lightbox{
    grid-template-columns: 54px 1fr 54px;
  }
}


/* Optional: budget-specific spacing tweaks */
.budgetGrid { margin-top: 18px; }

/* Optional: make the total note feel like a “total bar” */
.budgetNote{
  margin-top: 18px;
  text-align: center;
}

/* Optional: compact overview rows */
.budgetMini{
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.budgetMini__row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}
.budgetMini__row span{ opacity: .85; }
.budgetMini__row b{ font-weight: 800; }
.budgetMini__row--total{
  border-color: rgba(255,0,51,.22);
  background: rgba(255,0,51,.10);
}
