/* THE PIGGY TRF CSS ROOT THEMES // CREATED BY NEON FORGE LLC. THIS WORK IS PROTECTED BY COPYRIGHT. */
:root {
  --bg: #282828;
  --surface: #513524;
  --surface-2: #757575;
  --text: #F0F0F0;
  --muted: #bdbdc7;
  --accent: #FF91E9; /* brand color (pink)*/
  --accent-2: #ff8b61;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --ring: 0 0 0 3px rgba(255,145,233,.35);
  --container: 1140px;
  --hero-img: url('../img/fire-bg.jpg');
}

/* Base / Reset ----------------------------------------------------------- */
* { box-sizing: border-box; }
html, body { height: 100%; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
svg { display: block; }
a { color: var(--text); text-decoration: none; }

/* Layout & Utilities ----------------------------------------------------- */
.container { width: min(var(--container), 92vw); margin: 0 auto; }
.center { text-align: center; }
.section { padding: 4rem 0; }
.section--tight { padding: 2rem 0; }
.section__title { font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.1; margin: 0 0 .75rem; }
.section__lead { color: var(--muted); max-width: 65ch; margin: 0 auto 1.5rem; }
.grid { display: grid; gap: 1rem; }
.badge { display: inline-block; background: #26262d; border: 1px solid #333; border-radius: 999px; font-size: .8rem; padding: .25rem .6rem; }

/* Topbar --------------------------------------------------------------- */
.topbar { background: var(--surface); color: var(--muted); font-size: .95rem; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; padding: .5rem 0; }
.topbar__link { color: var(--text); }
.topbar__cta { padding: .35rem .7rem; border: 1px solid #2a2a2f; border-radius: 999px; }
.sep { opacity: .5; margin: 0 .5rem; }

/* Header / Nav --------------------------------------------------------- */
.header { position: sticky; top: 0; z-index: 70; background: rgba(14,14,16,.7); backdrop-filter: blur(8px); border-bottom: 1px solid #1f1f25; }
.header__row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: .6rem; color: var(--text); font-weight: 800; letter-spacing: .01em; }
.brand__mark { height: 28px; width: 28px; border-radius: 8px; }
.brand__text { font-size: 1.1rem; }
.nav { display: flex; gap: 1rem; align-items: center; }
.nav__link { color: var(--text); opacity: .9; transition: color .18s ease, opacity .18s ease; }
.nav__link:hover,
.nav__link:focus-visible { color: var(--accent); opacity: 1; }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); font-size: 1.5rem; cursor: pointer; }

/* Buttons --------------------------------------------------------------- */
.btn { display: inline-block; border-radius: var(--radius); padding: .9rem 1.1rem; font-weight: 700; text-decoration: none; border: none; cursor: pointer; }
.btn-sm { padding: .55rem .9rem; font-size: .95rem; }
.btn-primary { background: var(--accent); color: #111; box-shadow: var(--shadow); }
.btn-primary:hover { filter: brightness(1.05); }
.btn-ghost { border: 1px solid #2a2af; color: var(--text); background: transparent; }
.btn-ghost:hover { background: #1b1b21; }

/* Hero ------------------------------------------------------------------ */
.hero { position: relative; min-height: 74vh; display: grid; place-items: center; text-align: center; }
/* ===== Hero Carousel Background ===== */
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: -1;
}
.hero__slide.active { opacity: 1; z-index: -1; }
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,12,0.65), rgba(10,10,12,0.9));
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 5rem 0 3rem;
}
.hero__title { font-size: clamp(2.2rem, 6vw, 3.6rem); margin: 0 0 .6rem; }
.hero__subtitle { color: var(--muted); max-width: 70ch; margin: 0 auto 1.1rem; }
.hero__actions { display: flex; gap: .75rem; justify-content: center; }

/* Features -------------------------------------------------------------- */
.features { padding: 1.5rem 0; }
.feature-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .8rem; list-style: none; margin: 0; padding: 0; }
.feature { display: flex; gap: .5rem; align-items: center; justify-content: center; padding: .8rem 1rem; background: var(--surface); border-radius: 12px; border: 1px solid #23232a; color: var(--muted); }
.feature__icon { font-size: 1.1rem; }

/* About ----------------------------------------------------------------- */
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  align-items: center;
}
.about__content { max-width: 600px; }
.about__media {
  height: clamp(260px, 32vw, 420px);
  border-radius: var(--radius);
  overflow: hidden;                  
  box-shadow: var(--shadow);
}
.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 980px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { height: clamp(220px, 45vw, 340px); }
}

/* Packages / Cards ------------------------------------------------------ */
.packages .cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 1rem; }
.card { background: var(--surface-2); border: 1px solid #23232a; border-radius: var(--radius); padding: 1.2rem; position: relative; }
.card .badge { margin-bottom: .4rem; }
.card__title { margin: .2rem 0 .2rem; font-size: 1.25rem; }
.card__price { color: var(--muted); margin: 0 0 .6rem; }
.card__list { list-style: none; margin: 0 0 1rem 0; padding: 0; }
.card__list li { position: relative; padding-left: 1.25rem; }
.card__list li:before { content: '•'; position: absolute; left: .2rem; opacity: .6; }
.card.featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent) inset; }

/* Menu preview ---------------------------------------------------------- */
.menu-preview .menu-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 1rem; }
.menu-item { background: var(--surface); border: 1px solid #23232a; border-radius: 14px; overflow: hidden; }
.menu-item h3 { margin: .75rem 1rem 1rem; font-size: 1.1rem; }

.menu-item:nth-child(1) img { content: url('../img/brisket-sandwich.png'); }
.menu-item:nth-child(2) img { content: url('../img/bbq-bowl.png'); }
.menu-item:nth-child(3) img { content: url('../img/sausage.png'); }
.menu-item:nth-child(4) img { content: url('../img/shrimp-salad.png'); }
.menu-item:nth-child(5) img { content: url('../img/sides.png'); }

/* Gallery --------------------------------------------------------------- */
.gallery__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .8rem; }

/* Contact / Form -------------------------------------------------------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; align-items: start; }
.form .grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.form .grid .full { grid-column: 1 / -1; }
label span { display: inline-block; font-weight: 600; margin-bottom: .35rem; }
input, textarea { width: 100%; border-radius: 12px; border: 1px solid #2a2a2f; background: #121216; color: var(--text); padding: .9rem 1rem; }
input:focus, textarea:focus { outline: none; box-shadow: var(--ring); border-color: var(--accent); }
form p#formMsg { text-align: center; color: var(--muted); }

/* --- Radio pair container --- */
.radio-pair {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  width: 100%;
}

/* Each radio group (Event/Meal) */
.radio-group {
  flex: 1;
  min-width: 300px;
}

/* Align radio options horizontally */
.choice-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Base label */
.choice {
  position: relative;
  background: var(--bg-2, #111);
  border-radius: 999px;
  padding: 0.8rem 1.6rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s, border .2s;
  text-align: center;
  border: 2px solid transparent;
}

.choice input {
  position: absolute;
  opacity: 0;
}

.choice input:checked + .label-text,
.choice input:checked + span {
  color: #fff;
}

.choice input:checked ~ .label-text,
.choice input:checked ~ span {
  color: #fff;
}

/* Hover + focus effect */
.choice:hover,
.choice:focus-within {
  border-color: var(--accent, #d175ff);
}

/* Responsive label shortening logic */
.choice .label-text {
  display: inline;
}
.choice::after {
  display: none;
}

/* Shorten In-house earlier */
@media (max-width: 1320px) {
  .choice[data-short="In-house"] .label-text { display: none; }
  .choice[data-short="In-house"]::after {
    content: attr(data-short);
    display: inline;
    font-weight: 700;
  }
}

/* Shorten all pills below 1180px */
@media (max-width: 1180px) {
  .choice[data-short] .label-text { display: none; }
  .choice[data-short]::after {
    content: attr(data-short);
    display: inline;
    font-weight: 700;
  }
}

/* Stack radio groups on small screens */
@media (max-width: 860px) {
  .radio-pair {
    flex-direction: column;
  }
  .choice-row {
    justify-content: space-between;
  }
  .choice {
    flex: 1 1 100%;
    text-align: center;
  }
}


/* Footer ---------------------------------------------------------------- */
.footer { padding: 2rem 0; border-top: 1px solid #1d1d23; }
.footer__row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.footer__links a { color: var(--muted); margin-left: 1rem; }
.footer__links a:hover { color:#FF91E9; var(--text); }

/* Responsive ------------------------------------------------------------ */
@media (max-width: 980px) {
  .about__grid { grid-template-columns: 1fr; }
  .packages .cards { grid-template-columns: 1fr 1fr; }
  .menu-preview .menu-grid, .gallery__grid { grid-template-columns: 1fr 1fr; }
  .feature-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  /* MOBILE NAV */
  .nav {
    position: fixed;
    top: 64px; left: 0; right: 0;
    display: none;    
    flex-direction: column;
    gap: .8rem;
    background: rgba(13,13,15,.98);
    padding: 1rem 1.25rem;
    border-top: 1px solid #222;
    z-index: 60;
  }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }

  .packages .cards,
  .menu-preview .menu-grid,
  .gallery__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
}

/* Accessibility & Motion ------------------------------------------------ */
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 8px; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .hero__slide { transition: none !important; }
}

/* Print (basic) --------------------------------------------------------- */
@media print {
  .topbar, .header, .hero__bg, .nav, .btn, .gallery__grid { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding: 0; }
  .container { width: 100%; }
}

/* Put Event Type and Meal Type on ONE ROW */
.radio-row{
  display:grid;
  grid-template-columns: 1fr 1fr;   /* two columns */
  gap: 1.5rem;
  align-items:start;
}

/* Below tablet, stack them */
@media (max-width: 980px){
  .radio-row{ grid-template-columns: 1fr; }
}

/* Keep the two options in each group horizontal */
.radio-group .choice-row{
  display:grid;
  grid-template-columns: repeat(2, minmax(220px,1fr));
  gap: 1rem;
}

/* On small screens, let each option take full width */
@media (max-width: 700px){
  .radio-group .choice-row{ grid-template-columns: 1fr; }
}

/* Pills look right and can shrink without wrapping weirdly */
.choice{
  width: 100%;
  border-radius: 999px;
  padding: .9rem 1.4rem;
  display:flex;
  justify-content:center;
  align-items:center;
}

/* Shorten labels earlier to avoid overflow */
@media (max-width: 1320px){
  .choice[data-short="In-house"] .label-text{display:none;}
  .choice[data-short="In-house"]::after{content: attr(data-short); font-weight:700;}
}
@media (max-width: 1180px){
  .choice[data-short] .label-text{display:none;}
  .choice[data-short]::after{content: attr(data-short); font-weight:700;}
}


/* ===== What We Do (split section) ===== */
.whatwedo__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  align-items: center;
}
.whatwedo__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.eyebrow {
  display: inline-block;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .6rem;
}
.whatwedo__title {
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.1;
  margin: 0 0 .9rem;
}

.btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
  transition: all 0.25s ease;
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  filter: brightness(1.05);
}

.whatwedo--reverse .whatwedo__grid { grid-template-columns: .9fr 1.1fr; }
.whatwedo--reverse .whatwedo__media { order: 2; }
.whatwedo--reverse .whatwedo__content { order: 1; }

/* Responsive */
@media (max-width: 980px) {
  .whatwedo__grid { grid-template-columns: 1fr; }
  .whatwedo--reverse .whatwedo__media,
  .whatwedo--reverse .whatwedo__content { order: initial; }
}

/* ===== Blog cards animations & styles ===== */

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.post {
  position: relative;
  background: var(--surface);
  border: 1px solid #23232a;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.post:hover,
.post:focus-within {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent) inset, var(--shadow);
}

.post__media {
  display: block;
  width: 100%;
  height: clamp(220px, 35vw, 340px); 
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.post__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .28s ease;
}

.post__media img {
  width:100%; height:100%; object-fit:cover; display:block;
  transition: transform .28s ease;
}
.post:hover .post__media img,
.post:focus-within .post__media img { transform: scale(1.02); }

/* --- Overlay band --- */
.post__overlay {
  --bar: 92px; 
  position: absolute;
  inset: auto 0 0 0;          
  display: grid;
  gap: .4rem;
  padding: .8rem 1rem;
  color: var(--text);
  background: rgba(81, 53, 36, .55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-top: 1px solid #2a2a2f;
  transform: translateY(calc(100% - var(--bar)));
  transition: transform .3s ease;
  z-index: 2;
}

.post__title {
  font-weight: 800;
  line-height: 1.2;
  font-size: 1.05rem;
  color: var(--text);
}
.post__title:hover,
.post__title:focus-visible { color: var(--accent); }

.post__meta {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.post__cta {
  justify-self: start;
  margin-top: .4rem;
  transform: translateY(120%);
  opacity: 0;
  transition: transform .28s ease, opacity .28s ease;
}

.post:hover .post__overlay,
.post:focus-within .post__overlay {
  transform: translateY(0);
}
.post:hover .post__cta,
.post:focus-within .post__cta {
  transform: translateY(0);
  opacity: 1;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .post, .post__media img, .post__overlay, .post__cta { transition: none !important; }
}

/* Responsive */
@media (max-width: 980px) { .blog__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) { .blog__grid { grid-template-columns: 1fr; } }

/* ===== Piggy Divider (mobile only) ===== */
.piggy-divider {
  display: none !important;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0 1.75rem;
}

.piggy-divider img {
  width: 70px !important;
  height: 70px !important;
  max-width: none !important;
  opacity: 0.9;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.35))
          brightness(0) saturate(100%) invert(69%) sepia(23%)
          saturate(7475%) hue-rotate(287deg) brightness(101%) contrast(102%);
  transition: transform .25s ease, opacity .25s ease;
  border-radius: 50%;
}

.piggy-divider img:hover { transform: scale(1.1); opacity: 1; }

/* Show only on mobile */
@media (max-width: 720px) {
  .piggy-divider { display: flex !important; }
}

/* ===== lil piggy go hoppity ===== */
.piggy {
  cursor: pointer;
  transform-origin: center bottom;
  outline: none;
}

.piggy:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 145, 233, 0.45);
  border-radius: 50%;
}

/* keyframes for da animations for da lil pig */
@keyframes pigHopSpin {
  0%   { transform: translateY(0) rotate(0deg); }
  20%  { transform: translateY(-12px) rotate(0deg); }
  50%  { transform: translateY(-22px) rotate(360deg); }
  80%  { transform: translateY(-12px) rotate(360deg); }
  100% { transform: translateY(0) rotate(360deg); }
}

/* active state */
.piggy.is-animating {
  animation: pigHopSpin 0.9s cubic-bezier(.2,.85,.25,1) both;
}

/* reduced motion friendly */
@media (prefers-reduced-motion: reduce) {
  .piggy.is-animating {
    animation: none;
    transform: scale(1.06);
  }
}

/* Hide address on mobile */
@media (max-width: 720px) {
  .topbar__address,
  .topbar .sep {
    display: none !important;
  }
}

/* centering phone number & the phone icon on mobile */
@media (max-width: 720px) {
  .topbar__left {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .topbar__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
    width: 100%;
  }
}

/* ================================
   Tablet–Portrait sizing (768–980)
   ================================ */

@media (max-width: 980px) and (min-width: 721px) {
  .container { width: min(var(--container), 94vw); }

  .hero__content { padding: 4rem 0 2.25rem; }
  .hero__subtitle { max-width: 48ch; }
  .hero__actions { flex-wrap: wrap; gap: .6rem; }
  .hero .btn { min-width: 230px; }

  .about__grid,
  .whatwedo__grid { grid-template-columns: 1fr; gap: 1.25rem; }

  .about__media,
  .whatwedo__media img {
    height: clamp(240px, 40vw, 380px);
  }
  .section__title { font-size: clamp(1.9rem, 3.8vw, 2.4rem); }
  .whatwedo__title { font-size: clamp(1.9rem, 4vw, 2.6rem); }

  .blog .blog__grid { grid-template-columns: 1fr 1fr; }
  .post__media { height: clamp(240px, 34vw, 320px); }

  .menu-grid { grid-template-columns: 1fr 1fr; }
  .menu-item.card { padding: 1rem 1rem; }
}

@media (max-width: 840px) and (min-width: 721px) {
  .hero__title { font-size: clamp(2.2rem, 6vw, 2.8rem); }
  .section { padding: 3rem 0; }
}

/* iPad/Tablet portrait “large” (<= 1024px) */
@media (max-width: 1024px) and (min-width: 981px) {
  .about__grid,
  .whatwedo__grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .about__media { height: clamp(280px, 30vw, 420px); }
}

.about__content .section__lead,
.whatwedo__content .section__lead {
  margin-left: 0;
  margin-right: 0;
}
@media (max-width: 980px) and (min-width: 721px) {
  .about__content .section__lead,
  .whatwedo__content .section__lead {
    margin-left: 0;
    margin-right: 0;
  }
}

.btn-ghost.btn-outline:hover {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.65);
}

.btn-ghost.btn-outline {
  transition: text-shadow 0.25s ease, color 0.25s ease, background 0.25s ease;
}

form .btn,
.contact-form .btn {
  margin-top: 1rem;
}

@media (min-width: 720px) {
  form .btn,
  .contact-form .btn {
    margin-top: 1.5rem;
  }
}

/* =============================
   FORM LAYOUT TIGHTEN / CLEANUP
   ============================= */

.form .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem 1.25rem;
}

.form label,
.form fieldset {
  display: flex;
  flex-direction: column;
  margin: 0;
}

label.full,
fieldset.full {
  grid-column: 1 / -1;
}

input,
textarea,
select {
  margin-top: 0.35rem;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.form label + label,
.form fieldset + fieldset,
.form fieldset + label,
.form label + fieldset {
  margin-top: 0;
}

#contact .section__lead {
  margin-bottom: 2rem;
}

@media (min-width: 720px) {
  .form .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form label:nth-child(4),
  .form label:nth-child(5) {
    grid-column: span 1;
  }
}

.choice-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.choice-row .choice {
  padding: .45rem .9rem;
  font-weight: 600;
  border-radius: 2rem;
  border: 1px solid #2a2a2f;
  background: #121216;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.choice-row .choice:has(input:checked) {
  border-color: var(--accent);
  background: rgba(255,145,233,.1);
  box-shadow: 0 0 0 1px var(--accent) inset;
}
.choice-row input[type="radio"] {
  accent-color: var(--accent);
}


/* ===== Gallery tiles ===== */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.1rem;
}

.gallery__item {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: #1b1b21;
  border: 1px solid #23232a;
  box-shadow: var(--shadow);
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .30s ease;
}

.gallery__item:hover,
.gallery__item:focus-visible {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow:
    0 0 0 1px var(--accent) inset,
    0 0 32px rgba(255, 145, 233, .28),
    var(--shadow);
}

.gallery__item:hover img,
.gallery__item:focus-visible img { transform: scale(1.05); }

@media (prefers-reduced-motion: reduce) {
  .gallery__item,
  .gallery__item img { transition: none !important; }
}

.form .grid label { display: flex; flex-direction: column; }

.choice-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  padding: .4rem 0 .2rem;
}
.choice-row label {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 600;
}

select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #2a2a2f;
  background: #121216;
  color: var(--text);
  padding: .9rem 1rem;
}
select:focus { outline: none; box-shadow: var(--ring); border-color: var(--accent); }

.radio-group { border: 0; margin: 0; padding: 0; }
.radio-group > legend {
  font-weight: 600;
  margin-bottom: .45rem;
  color: var(--text);
  font-size: 1rem;
}

.choice-row {
  display: flex;
  gap: .6rem .8rem;
  flex-wrap: wrap;
  align-items: center;
}

.choice-row .choice {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem .75rem;
  border: 1px solid #2a2a2f;
  border-radius: 999px;
  background: #121216;
  cursor: pointer;
  user-select: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.choice-row .choice:hover { border-color: var(--accent); }
.choice-row .choice:has(input:checked) {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent) inset;
}

.choice-row input[type="radio"] {
  accent-color: var(--accent);
  transform: translateY(1px);
}

select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #2a2a2f;
  background: #121216;
  color: var(--text);
  padding: .9rem 1rem;
}
select:focus { outline: none; box-shadow: var(--ring); border-color: var(--accent); }


.form .grid{
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: .75rem 1rem;
  align-items: start;]
}

.form label,
.form fieldset{ margin:0; }

.radio-group{ border:0; padding:0; margin:0; }
.radio-group > legend{ margin:0 0 .25rem; font-weight:600; }

/* tighter chips */
.choice-row{ display:flex; flex-wrap:wrap; gap:.6rem .8rem; padding:0; }
.choice-row .choice{
  display:inline-flex; align-items:center; gap:.45rem;
  padding:.35rem .65rem;
  border:1px solid #2a2a2f; border-radius:999px; background:#121216;
  transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.choice-row .choice:hover{ border-color:var(--accent); }
.choice-row .choice:has(input:checked){
  border-color:var(--accent);
  box-shadow:0 0 0 1px var(--accent) inset;
}
.choice-row input[type="radio"]{ accent-color:var(--accent); transform:translateY(1px); }


.form .grid .full{ grid-column:1 / -1; }

.choice-row input[type="radio"]:focus-visible,
.choice-row input[type="checkbox"]:focus-visible {
  box-shadow: none !important;
  outline: none;
}

.choice-row .choice:focus-within {
  box-shadow: 0 0 0 3px rgba(255,145,233,.35);
  border-color: var(--accent);
}

input[type="radio"]:focus,
input[type="radio"]:focus-visible,
input[type="checkbox"]:focus,
input[type="checkbox"]:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.choice-row .choice:focus-within,
label.choice:focus-within,
label:has(> input[type="radio"]:focus-visible),
label:has(> input[type="checkbox"]:focus-visible) {
  box-shadow: 0 0 0 3px rgba(255,145,233,.35);
  border-color: var(--accent);
  border-radius: 999px;
}

@media (min-width: 720px) {
  .form .grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .form .grid label.full {
    grid-column: 1 / -1;
  }
}

@media (max-width: 719px) {
  .form .grid {
    grid-template-columns: 1fr;
  }
}

input[type="time"] {
  color-scheme: dark;
  background-color: #121216;
  color: var(--text);
  border: 1px solid #2a2a2f;
  border-radius: 12px;
  padding: .9rem 1rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='%23FF91E9' viewBox='0 0 24 24'><path d='M12 22a10 10 0 1 1 10-10 10.011 10.011 0 0 1-10 10zm0-18a8 8 0 1 0 8 8 8.009 8.009 0 0 0-8-8zm.5 4h-1v5l4.25 2.52.5-.86L12.5 13Z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}

input[type="time"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
  width: 1rem;
  height: 1rem;
}

input[type="time"]:focus {
  outline: none;
  box-shadow: var(--ring);
  border-color: var(--accent);
}

input[type="date"] {
  color-scheme: dark;
  background-color: #121216;
  color: var(--text);
  border: 1px solid #2a2a2f;
  border-radius: 12px;
  padding: .9rem 1rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='%23FF91E9' viewBox='0 0 24 24'><path d='M19 4h-1V2h-2v2H8V2H6v2H5a2.002 2.002 0 0 0-2 2v14a2.002 2.002 0 0 0 2 2h14a2.002 2.002 0 0 0 2-2V6a2.002 2.002 0 0 0-2-2zm0 16H5V10h14zm0-12H5V6h14z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
  width: 1rem;
  height: 1rem;
}

input[type="date"]:focus {
  outline: none;
  box-shadow: var(--ring);
  border-color: var(--accent);
}

input,
textarea,
select,
button,
label span {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.01em;
}

input::placeholder,
textarea::placeholder,
select::placeholder {
  color: var(--muted);
  opacity: 0.85;
  font-weight: 400;
}

input, textarea, select {
  line-height: 1.5;
}

.form label span,
.form legend,
label span,
legend {
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}

.choice-row .choice {
  padding: 0.65rem 1.4rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid #2a2a2f;
  background: #121216;
  cursor: pointer;
  user-select: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.choice-row .choice input[type="radio"] {
  accent-color: var(--accent);
  transform: translateY(1px);
  margin-right: 0.4rem;
}

.choice-row {
  display: flex;
  gap: .75rem 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.choice-row .choice {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .65rem 1.25rem;
  border: 1px solid #2a2a2f;
  border-radius: 999px;
  background: #121216;
  font-weight: 700;
  line-height: 1.2;
  max-width: 100%;
  white-space: normal;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.choice-row .choice input[type="radio"] {
  accent-color: var(--accent);
  margin-right: .35rem;
  transform: translateY(1px);
}

  .radio-group .choice input[type="radio"] {
    margin: 0 .5rem 0 0;
    flex: 0 0 auto;
  }
}

@media (max-width: 1200px) and (min-width: 861px) {
  .radio-group .choice-row {
    display: flex;
    flex-wrap: nowrap;
    gap: .75rem;
  }
  .radio-group .choice {
    flex: 1 1 0;
    min-width: 0;
    padding: .8rem 1rem;
  }
  .radio-group .choice span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 1140px) and (min-width: 861px) {
  .choice[data-short] .full-label { display: none; }
  .choice[data-short]::after { content: attr(data-short); }
}

@media (max-width: 1320px) and (min-width: 861px) {
  .choice[data-label="In-house"]::before {
    content: attr(data-label);
  }
  .choice[data-label="In-house"] {
    white-space: nowrap;
  }
  .choice[data-label="In-house"] input + span,
  .choice[data-label="In-house"] input + label {
    display: none;
  }
}

.choice { position: relative; }
.choice .label-text { display: inline; }

@media (max-width: 1320px) {
  .choice[data-short="In-house"] .label-text { display: none; }
  .choice[data-short="In-house"]::after {
    content: attr(data-short);
    font-weight: 700;
    line-height: 1;
  }
}

@media (max-width: 1180px) {
  .choice[data-short] .label-text { display: none; }
  .choice[data-short]::after {
    content: attr(data-short);
    font-weight: 700;
    line-height: 1;
  }
}

@media (max-width: 860px) {
  #eventType > legend,
  #mealType > legend {
    text-align: center;
    width: 100%;
    display: block;
  }
}
@media (max-width: 860px) {
  form#contactForm .radio-group .choice-row {
    display: block !important;
    width: 100% !important;
  }

  form#contactForm .radio-group .choice {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0.35rem 0 !important;
    box-sizing: border-box !important;
  }
}

/* UNLOCK parent container width for mobile radios */
@media (max-width: 860px) {
  form#contactForm #eventType .choice-row,
  form#contactForm #mealType .choice-row {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  form#contactForm #eventType,
  form#contactForm #mealType {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  form#contactForm #eventType .choice,
  form#contactForm #mealType .choice {
    width: 100% !important;
    display: block !important;
  }
}
@media (max-width: 860px) {
  form#contactForm .radio-group {
    width: 100% !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    display: block !important;
  }
}

@media (max-width: 860px) {
  form#contactForm .form {
    width: 100% !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    display: block !important;
  }
}

@media (max-width: 860px) {
  #eventType,
  #mealType {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
    display: block !important;
  }
}

@media (max-width: 860px) {
  .radio-row.full {
    width: 100% !important;
    max-width: none !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

@media (max-width: 860px) {
  .choice-row {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .choice-row .choice {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 860px) {
  .radio-pair {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

.nf-form {
  --gap: 1rem;
  display: block;
  width: 100%;
  margin: 0 auto;
}

.nf-grid {
  display: grid;
  gap: var(--gap);
}
.nf-full { grid-column: 1 / -1; }
@media (min-width: 700px) {
  .nf-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nf-half { width: 100%; }
}
.nf-subgrid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.nf-form label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  gap: 0.35rem;
}

.nf-form input,
.nf-form select,
.nf-form textarea {
  font: inherit;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border, #ddd);
  border-radius: 8px;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
}

.nf-form input:focus,
.nf-form select:focus,
.nf-form textarea:focus {
  outline: 2px solid var(--accent, #ffb347);
  border-color: var(--accent, #ffb347);
}

.nf-form h3 {
  font-size: 1.05rem;
  margin: 0.25rem 0 0.5rem;
  font-weight: 700;
}

@media (max-width: 700px) {
  .nf-grid {
    grid-template-columns: 1fr;
  }
}

.nf-form {
  --gap: 1rem;
  --bg-dark: #111214;
  --text-light: #d1d1d1;
  --text-bright: #fff;
  --accent: #ff5ea8;
  display: block;
  width: 100%;
  margin: 0 auto;
}

.nf-grid {
  display: grid;
  gap: var(--gap);
}
.nf-full { grid-column: 1 / -1; }

@media (min-width: 700px) {
  .nf-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nf-half { width: 100%; }
}

.nf-subgrid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.nf-form label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  gap: 0.35rem;
  color: var(--text-light);
}

.nf-form input,
.nf-form select,
.nf-form textarea {
  font: inherit;
  padding: 0.7rem 0.85rem;
  border: 1px solid #222;
  border-radius: 10px;
  background: var(--bg-dark);
  color: var(--text-bright);
  width: 100%;
  box-sizing: border-box;
  transition: all 0.2s ease-in-out;
}

.nf-form input::placeholder,
.nf-form textarea::placeholder {
  color: var(--text-light);
  opacity: 0.8;
}

.nf-form input:focus,
.nf-form select:focus,
.nf-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.nf-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--text-light) 50%), 
                    linear-gradient(135deg, var(--text-light) 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(1rem + 2px), calc(100% - 15px) calc(1rem + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  background-color: var(--bg-dark);
}

.nf-form h3 {
  font-size: 1.05rem;
  margin: 0.25rem 0 0.5rem;
  font-weight: 700;
  color: var(--text-light);
}

@media (max-width: 700px) {
  .nf-grid {
    grid-template-columns: 1fr;
  }
}

/* Extra breathing room for mobile keyboards */
@media (max-width: 768px) {
  .nf-form button[type="submit"] {
    margin-bottom: 5vh;
  }
}

/* === Footer alignment fix === */
.footer__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.footer__links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1rem 0;
}

.footer__links {
  order: -1;
}

.footer__links a {
  color: var(--text-light, #d1d1d1);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.footer__links a:hover {
  color: var(--accent, #ff5ea8);
}

.footer small {
  color: var(--text-light, #d1d1d1);
  line-height: 1.4;
}

.whatwedo__media img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  border-radius: 16px;
}

.header { position: sticky; top: 0; z-index: 1000; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-block; }

  .nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(20, 20, 20, 0.75);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.25rem 1rem;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 999;
    transition: all 0.3s ease;
  }
  .nav.is-open { display: flex; }

  .nav a {
    color: #f0f0f0;
    font-size: 1.1rem;
  }

  body.nav-open { overflow: hidden; }
}

@media (max-width: 860px) {
  :root { --header-h: 64px; }

  .header {
    background: rgba(20,20,20,.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    position: sticky; top: 0; z-index: 1000;
  }

  .nav {
    top: var(--header-h);
    margin-top: -1px;
  }
}

@media (max-width: 768px) {
  .hero__actions,
  .form button.btn-primary {
    margin-bottom: 5rem;
  }

  .hero__actions .btn + .btn {
    margin-top: 0.75rem;
  }
}

