/* ============================================================
   Penaldrop — custom theme
   Palett: terrakotta + oliv + kräm + vinröd; rugbyaccenter
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,400;0,600;0,700;1,400&family=Nunito:wght@400;600;700&display=swap');

/* ---- CSS custom properties -------------------------------- */
:root {
  --pd-red:     #8C2A1F;
  --pd-olive:   #3A5A3A;
  --pd-gold:    #E4A73A;
  --pd-cream:   #FBF6EC;
  --pd-dark:    #2A2018;
  --pd-red-lt:  #b8453a;
  --pd-olive-lt:#4f7a4f;
  --radius:     6px;
  --shadow:     0 2px 12px rgba(42,32,24,.10);
}

/* ---- Base overrides --------------------------------------- */
body {
  background: var(--pd-cream);
  color: var(--pd-dark);
  font-family: 'Nunito', sans-serif;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  color: var(--pd-red);
  letter-spacing: -.01em;
}

a { color: var(--pd-red); }
a:hover { color: var(--pd-red-lt); }

/* ---- Rugby divider ---------------------------------------- */
/* Ovaltunnad divider som antyder en rugbyboll */
.rugby-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0;
  color: var(--pd-gold);
}
.rugby-divider::before,
.rugby-divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--pd-gold));
}
.rugby-divider::after {
  background: linear-gradient(to left, transparent, var(--pd-gold));
}
.rugby-divider svg {
  width: 2.5rem;
  fill: var(--pd-gold);
  opacity: .8;
}

/* ---- Hero ------------------------------------------------- */
/* ---- Hero fullscreen -------------------------------------- */
.hero-penaldrop {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero-penaldrop { background-attachment: scroll; } /* fixed causes iOS bugs */
}

.hero-penaldrop .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(20,12,6,.68) 0%,
      rgba(20,12,6,.42) 38%,
      rgba(20,12,6,.62) 70%,
      rgba(20,12,6,.88) 100%);
  pointer-events: none;
}

/* lang switcher */
.hero-penaldrop .lang-switcher {
  position: absolute;
  top: 1.1rem;
  right: 1.25rem;
  z-index: 10;
  display: flex;
  gap: .45rem;
}
.hero-penaldrop .lang-switcher button {
  background: rgba(251,246,236,.15);
  border: 1px solid rgba(251,246,236,.45);
  color: var(--pd-cream);
  padding: .2rem .7rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: .8rem;
  font-family: 'Nunito', sans-serif;
  letter-spacing: .08em;
  transition: background .2s;
}
.hero-penaldrop .lang-switcher button:hover { background: rgba(228,167,58,.45); }

/* ---- Hero centre zone ------------------------------------- */
.pd-hero-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem 2rem;
}
.hero-penaldrop h1 {
  font-size: clamp(2.6rem, 9vw, 5.5rem);
  color: var(--pd-cream);
  margin: 0 0 .4rem;
  line-height: 1.05;
  text-shadow: 0 2px 16px rgba(0,0,0,.6);
}
.hero-penaldrop .tagline {
  font-size: clamp(.95rem, 2.8vw, 1.35rem);
  color: var(--pd-gold);
  font-style: italic;
  margin: 0 0 2rem;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}

/* ---- Neon sign -------------------------------------------- */
.pd-neon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.75rem;
}
.pd-neon-ouvert {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-weight: 700;
  letter-spacing: .18em;
  color: #d0ffd0;
  text-shadow:
    0 0 4px #fff,
    0 0 10px #39ff14,
    0 0 22px #39ff14,
    0 0 50px #0a9a00,
    0 0 90px #0a9a00;
  border: 2px solid rgba(57,255,20,.35);
  border-radius: 5px;
  padding: .18em .65em;
  box-shadow: 0 0 8px rgba(57,255,20,.25), inset 0 0 8px rgba(57,255,20,.08);
  animation: neon-pulse 2.8s ease-in-out infinite alternate;
}
.pd-neon-ferme {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-weight: 700;
  letter-spacing: .18em;
  color: #ffe0d0;
  text-shadow:
    0 0 4px #fff,
    0 0 10px #ff5c00,
    0 0 22px #ff5c00;
  border: 2px solid rgba(255,92,0,.35);
  border-radius: 5px;
  padding: .18em .65em;
  box-shadow: 0 0 8px rgba(255,92,0,.2), inset 0 0 8px rgba(255,92,0,.06);
  animation: neon-pulse 4s ease-in-out infinite alternate;
}
@keyframes neon-pulse {
  0%   { opacity: .88; filter: brightness(.95); }
  40%  { opacity: 1;   filter: brightness(1.05); }
  55%  { opacity: .92; filter: brightness(.97); } /* subtle flicker */
  100% { opacity: 1;   filter: brightness(1); }
}
.pd-hours-today {
  font-size: .95rem;
  color: rgba(251,246,236,.85);
  letter-spacing: .04em;
  margin: 0;
}

/* CTA button */
.pd-hero-cta {
  display: inline-block;
  background: var(--pd-red);
  color: #fff;
  padding: .7rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,0,0,.35);
  transition: background .2s, transform .15s;
}
.pd-hero-cta:hover { background: #a83325; transform: translateY(-1px); }

/* ---- Hero bottom strip ------------------------------------ */
.pd-hero-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 1.5rem;
  align-items: flex-end;
  padding: 1rem 1.5rem 1.75rem;
  background: linear-gradient(to top, rgba(20,12,6,.7) 0%, transparent 100%);
}
.pd-hero-events-wrap,
.pd-hero-social-wrap {
  flex: 1;
  min-width: 0;
}
.pd-hero-strip-label {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pd-gold);
  margin: 0 0 .5rem .25rem;
  opacity: .9;
}

/* ---- Hero info blocks (bottom strip) ---------------------- */
.pd-hero-info-block {
  flex: 1;
  min-width: 0;
}

/* compact single-event card */
.pd-hero-event-next {
  background: rgba(30,18,10,.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(228,167,58,.25);
  border-radius: 8px;
  padding: .75rem 1rem;
  color: var(--pd-cream);
}
.pd-hero-event-next .ev-date {
  font-size: .7rem;
  color: var(--pd-gold);
  margin: 0 0 .2rem;
  letter-spacing: .03em;
  opacity: .9;
}
.pd-hero-event-next .ev-title {
  font-size: .9rem;
  font-weight: 700;
  margin: 0 0 .5rem;
  line-height: 1.25;
}
.pd-hero-event-next .ev-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}
.pd-hero-event-next .ev-spots {
  font-size: .7rem;
  opacity: .7;
}
.pd-hero-event-next .ev-spots.full { color: #ff9090; opacity: 1; }
.btn-reserve-sm {
  background: var(--pd-red);
  color: #fff;
  border: none;
  padding: .3rem .75rem;
  border-radius: 999px;
  font-family: 'Nunito', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.btn-reserve-sm:hover { background: var(--pd-red-lt); }

/* hours + phone */
.pd-hero-hours-line {
  color: var(--pd-cream);
  font-size: .88rem;
  font-weight: 600;
  margin: 0 0 .5rem;
  letter-spacing: .02em;
}
.pd-hero-phone-link {
  display: inline-block;
  color: var(--pd-gold);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .03em;
  transition: color .2s;
}
.pd-hero-phone-link:hover { color: #fff; }

/* social buttons */
.pd-hero-social-links {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.pd-social-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(251,246,236,.1);
  border: 1px solid rgba(251,246,236,.22);
  color: var(--pd-cream);
  text-decoration: none;
  padding: .35rem .7rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.pd-social-btn:hover { background: rgba(228,167,58,.3); color: #fff; }

/* ---- Mobile hero ------------------------------------------ */
@media (max-width: 640px) {
  .pd-hero-center { padding-top: 4rem; }
  .pd-hero-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: .875rem;
    padding: .75rem 1rem 1.25rem;
  }
  .pd-hero-social-links { flex-direction: row; flex-wrap: wrap; }
}

/* ---- Section layout --------------------------------------- */
.pd-section {
  padding: 4rem 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}
.pd-section > h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin: 0 0 .25rem;
}
.pd-section > .section-subtitle {
  color: var(--pd-olive);
  font-style: italic;
  margin: 0 0 2rem;
}

/* ---- Menu du jour ----------------------------------------- */
.menu-du-jour {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  margin-top: 1rem;
}
.menu-du-jour .prix-formule {
  display: inline-block;
  background: var(--pd-red);
  color: #fff;
  padding: .3rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.menu-du-jour .course-heading {
  font-family: 'Fraunces', serif;
  color: var(--pd-olive);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 1.25rem 0 .5rem;
  padding-bottom: .25rem;
  border-bottom: 1px solid #e8e2d5;
}
.menu-du-jour .menu-item-name {
  font-weight: 600;
  margin: 0;
}
.menu-du-jour .menu-item-desc {
  color: #6b5f52;
  font-size: .9rem;
  margin: .1rem 0 .5rem;
}
.menu-du-jour .no-lunch {
  text-align: center;
  color: #999;
  font-style: italic;
  padding: 2rem 0;
}

/* ---- À la carte ------------------------------------------- */
.menu-alacarte .section-block {
  margin-bottom: 2.5rem;
}
.menu-alacarte .section-name {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: var(--pd-red);
  border-bottom: 2px solid var(--pd-gold);
  padding-bottom: .3rem;
  margin-bottom: 1rem;
}
.menu-alacarte .menu-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: .4rem 0;
  border-bottom: 1px dotted #e0d9ce;
}
.menu-alacarte .menu-row:last-child {
  border-bottom: none;
}
.menu-alacarte .item-name {
  font-weight: 600;
}
.menu-alacarte .item-desc {
  font-size: .85rem;
  color: #6b5f52;
}
.menu-alacarte .item-price {
  white-space: nowrap;
  font-weight: 700;
  color: var(--pd-red);
}

/* ---- Events ----------------------------------------------- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.event-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.event-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.event-card .event-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.event-card .event-date {
  font-size: .85rem;
  color: var(--pd-olive);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .25rem;
}
.event-card h3 {
  font-size: 1.1rem;
  margin: 0 0 .5rem;
  color: var(--pd-dark);
}
.event-card .event-desc {
  font-size: .9rem;
  color: #6b5f52;
  flex: 1;
}
.event-card .event-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: .75rem;
  border-top: 1px solid #e8e2d5;
}
.event-card .event-spots {
  font-size: .85rem;
  color: var(--pd-olive);
}
.event-card .event-spots.full {
  color: var(--pd-red);
}
.btn-reserve {
  background: var(--pd-red);
  color: #fff;
  border: none;
  padding: .45rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  font-size: .9rem;
  font-family: 'Nunito', sans-serif;
  text-decoration: none;
  transition: background .2s;
}
.btn-reserve:hover {
  background: var(--pd-red-lt);
  color: #fff;
}
.btn-reserve:disabled,
.btn-reserve.full {
  background: #aaa;
  cursor: not-allowed;
}

/* ---- Booking modal ---------------------------------------- */
.booking-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(42,32,24,.6);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.booking-modal-backdrop.open {
  display: flex;
}
.booking-modal {
  background: var(--pd-cream);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  position: relative;
}
.booking-modal h3 {
  margin: 0 0 1.25rem;
}
.booking-modal .close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: #6b5f52;
}
.booking-modal label {
  display: block;
  font-weight: 600;
  margin: .75rem 0 .2rem;
  font-size: .9rem;
}
.booking-modal input,
.booking-modal select,
.booking-modal textarea {
  width: 100%;
  padding: .5rem .75rem;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  background: #fff;
  box-sizing: border-box;
}
.booking-modal textarea {
  resize: vertical;
  min-height: 80px;
}
.booking-modal .submit-btn {
  margin-top: 1.25rem;
  width: 100%;
  padding: .75rem;
  font-size: 1rem;
}
.booking-success {
  text-align: center;
  padding: 1rem 0;
  color: var(--pd-olive);
}

/* ---- Horaires --------------------------------------------- */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.hours-table td {
  padding: .6rem .5rem;
  border-bottom: 1px solid #e8e2d5;
}
.hours-table td:first-child {
  font-weight: 600;
  width: 8rem;
}
.hours-table .closed {
  color: #999;
  font-style: italic;
}
.hours-note {
  margin-top: 1rem;
  padding: .75rem 1rem;
  background: rgba(228,167,58,.12);
  border-left: 3px solid var(--pd-gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .9rem;
  color: var(--pd-dark);
}

/* ---- Social feed (polaroid-strip) ------------------------- */
.social-feed-strip {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 1rem .5rem 2rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.social-feed-strip::-webkit-scrollbar { height: 4px; }
.social-feed-strip::-webkit-scrollbar-thumb { background: var(--pd-gold); border-radius: 2px; }
.polaroid {
  flex: 0 0 220px;
  background: #fff;
  padding: .75rem .75rem .5rem;
  box-shadow: 0 3px 10px rgba(42,32,24,.15);
  border-radius: 2px;
  scroll-snap-align: start;
  transform: rotate(-1.5deg);
  transition: transform .2s;
}
.polaroid:nth-child(2n) { transform: rotate(1deg); }
.polaroid:nth-child(3n) { transform: rotate(-0.5deg); }
.polaroid:hover { transform: rotate(0) scale(1.04); z-index: 1; }
.polaroid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  margin-bottom: .5rem;
}
.polaroid .caption {
  font-size: .75rem;
  color: #6b5f52;
  text-align: center;
  padding: 0 .25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---- Rugby section ---------------------------------------- */
.rugby-section {
  background: var(--pd-olive);
  color: var(--pd-cream);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
}
.rugby-section img.usmt-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  flex-shrink: 0;
}
.rugby-section h2 {
  color: var(--pd-gold);
  margin: 0 0 .5rem;
}
.rugby-section p {
  margin: 0;
  opacity: .9;
}
@media (max-width: 540px) {
  .rugby-section {
    flex-direction: column;
    text-align: center;
  }
}

/* ---- Contact ---------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}
@media (max-width: 600px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-info p {
  margin: .4rem 0;
}
.contact-info strong {
  color: var(--pd-red);
}
.osm-iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---- i18n ------------------------------------------------- */
html:not([lang=en]) .lang-en { display: none; }
html[lang=en]       .lang-fr { display: none; }

/* ---- Loading spinner -------------------------------------- */
.pd-loading {
  text-align: center;
  padding: 3rem;
  color: #999;
  font-style: italic;
}

/* ---- Panel / drawer layout -------------------------------- */
/* Hero becomes a permanent fixed background when JS adds .pd-bg-fixed */
.hero-penaldrop.pd-bg-fixed {
  position: fixed;
  inset: 0;
  min-height: unset;
  height: 100%;
}

.pd-panel-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20,12,6,.5);
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.pd-panel-backdrop.open { opacity: 1; pointer-events: all; }

.pd-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(580px, 100vw);
  z-index: 21;
  display: flex;
  flex-direction: column;
  background: var(--pd-cream);
  box-shadow: -8px 0 48px rgba(0,0,0,.32);
  transform: translateX(102%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.pd-panel.open { transform: translateX(0); }

.pd-panel-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 58px 1rem .45rem; /* top clears the fixed site header */
  border-bottom: 1px solid #e8e2d5;
  background: var(--pd-cream);
  flex-shrink: 0;
}
.pd-panel-close-btn {
  background: none;
  border: none;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  color: #8a7a6e;
  padding: .3rem .55rem;
  border-radius: var(--radius);
  transition: color .15s, background .15s;
}
.pd-panel-close-btn:hover { color: var(--pd-dark); background: rgba(0,0,0,.06); }

.pd-panel-inner {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* tighter section padding inside the panel */
.pd-panel-inner .pd-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
  scroll-margin-top: 0;
}
/* force single-column for narrow panel */
.pd-panel-inner .contact-grid { grid-template-columns: 1fr; }
.pd-panel-inner .rugby-section { flex-direction: column; text-align: center; }
.pd-panel-inner footer .footer-top { display: none; }
.pd-panel-inner footer .footer-bottom { padding: 1rem 0; text-align: center; }

/* ---- Header / nav ----------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background .3s, box-shadow .3s;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
header .site-logo {
  color: var(--pd-cream);
  text-decoration: none;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .02em;
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
}
header nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
header nav a {
  color: rgba(251,246,236,.85);
  text-decoration: none;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
  white-space: nowrap;
  transition: color .2s;
}
header nav a:hover { color: var(--pd-gold); }
header.is-scrolled {
  background: rgba(42,32,24,.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(0,0,0,.2);
}
header.is-scrolled .site-logo,
header.is-scrolled nav a { text-shadow: none; }

/* hide the duplicate lang-switcher overlaid in the hero */
.hero-penaldrop .lang-switcher { display: none; }

/* scroll-offset so fixed header doesn't cover section headings */
.pd-section { scroll-margin-top: 68px; }

/* mobile: collapse text nav links, keep lang-switcher + hamburger */
@media (max-width: 700px) {
  header nav a { display: none; }
}

/* ---- Hamburger button (mobile only) ----------------------- */
.pd-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem .3rem;
  flex-direction: column;
  gap: 5px;
  margin-left: .5rem;
}
.pd-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(251,246,236,.9);
  border-radius: 2px;
  transition: background .2s;
}
.pd-hamburger:hover span { background: var(--pd-gold); }
.pd-hamburger:focus { outline: 2px solid var(--pd-gold); outline-offset: 2px; }
header.is-scrolled .pd-hamburger span { background: var(--pd-cream); }
@media (max-width: 700px) {
  .pd-hamburger { display: flex; }
}

/* ---- Panel quick-nav -------------------------------------- */
.pd-panel-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  padding: .65rem 1rem .75rem;
  border-bottom: 1px solid #e8e2d5;
  background: #f0e9da;
  flex-shrink: 0;
}
.pd-panel-nav a {
  font-family: 'Nunito', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: var(--pd-dark);
  text-decoration: none;
  padding: .22rem .65rem;
  border-radius: 999px;
  border: 1px solid #cfc7b5;
  white-space: nowrap;
  transition: background .15s, color .15s, border-color .15s;
}
.pd-panel-nav a:hover { background: var(--pd-red); color: #fff; border-color: var(--pd-red); }
