

:root {
  --gold:        #E8A020;
  --gold-dark:   #C4841A;
  --gold-light:  #FFF3D6;
  --cream:       #FAF6EE;
  --dark:        #1C1A14;
  --dark-mid:    #2E2B22;
  --text:        #2E2B22;
  --text-muted:  #6B6348;
  --border:      #E2D8C4;
  --white:       #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;

  --sp-xs: clamp(0.5rem, 1vw, 0.75rem);
  --sp-sm: clamp(0.75rem, 1.5vw, 1rem);
  --sp-md: clamp(1rem, 2vw, 1.5rem);
  --sp-lg: clamp(1.5rem, 3vw, 2.5rem);
  --sp-xl: clamp(2.5rem, 5vw, 4rem);
  --sp-2xl:clamp(3.5rem, 7vw, 6rem);

  --max-w: 1200px;
  --header-h: 72px;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }


.container {
  width: min(100%, var(--max-w));
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.section-pad { padding-block: var(--sp-2xl); }

.bg-cream { background: var(--cream); }
.bg-dark  { background: var(--dark-mid); color: var(--white); }
.bg-gold  { background: var(--gold); color: var(--dark); }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: var(--sp-sm);
}

.section-sub {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  max-width: 56ch;
  margin-bottom: var(--sp-lg);
}


.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 0.7em 1.6em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover { background: var(--dark-mid); border-color: var(--dark-mid); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }


.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  height: var(--header-h);
  border-bottom: 3px solid var(--gold);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  flex-shrink: 0;
  text-decoration: none;
}

.logo-hex {
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.logo-text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  line-height: 1.3;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.logo-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

nav[aria-label="Primary navigation"] ul[data-pn-nav="primary"] {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

nav[aria-label="Primary navigation"] a {
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25em 0.1em;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
nav[aria-label="Primary navigation"] a:hover,
nav[aria-label="Primary navigation"] a[aria-current="page"] {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
nav[aria-label="Primary navigation"] [data-pn-cta] a {
  border-bottom: none;
  color: var(--dark);
}


.hero {
  position: relative;
  min-height: clamp(480px, 80vh, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  object-position: center 60%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(20,18,10,0.82) 0%,
    rgba(20,18,10,0.55) 55%,
    rgba(20,18,10,0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 680px;
  padding-block: var(--sp-xl);
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-sm);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: var(--sp-md);
}

.hero-sub {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  max-width: 54ch;
  margin-bottom: var(--sp-lg);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}


.trust-bar {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: var(--sp-md);
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm) var(--sp-lg);
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-icon {
  color: var(--gold);
  font-size: 0.75rem;
}


.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: var(--sp-md);
}

.cat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.cat-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.cat-img-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gold-light);
}
.cat-img-wrap img { transition: transform 0.4s ease; }
.cat-card:hover .cat-img-wrap img { transform: scale(1.05); }

.cat-body {
  padding: var(--sp-md);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cat-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--dark);
  line-height: 1.25;
}

.cat-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}


.live-bees-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .live-bees-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.live-bees-img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gold-light);
  order: -1;
}

@media (min-width: 768px) {
  .live-bees-img { order: 0; }
}

.live-bees-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: var(--sp-md);
}

.live-bees-copy p {
  color: var(--text-muted);
  margin-bottom: var(--sp-sm);
}

.live-bees-copy .btn { margin-top: var(--sp-sm); }


.beeswax-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .beeswax-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.beeswax-img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gold-light);
}

.beeswax-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: var(--sp-md);
}

.beeswax-copy p {
  color: var(--text-muted);
  margin-bottom: var(--sp-sm);
}

.beeswax-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  margin-top: var(--sp-sm);
}


.visit-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  align-items: start;
}

@media (min-width: 768px) {
  .visit-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.visit-img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  order: -1;
}
@media (min-width: 768px) {
  .visit-img { order: 0; }
}

.bg-dark .section-heading,
.visit-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: var(--sp-md);
}

.visit-copy p {
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--sp-md);
}

.hours-table-wrap {
  margin-bottom: var(--sp-md);
  overflow-x: auto;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.hours-table caption {
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  caption-side: top;
  padding-bottom: 0.5rem;
}

.hours-table th,
.hours-table td {
  padding: 0.45em 1em 0.45em 0;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
}

.hours-table th {
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  width: 40%;
}

.visit-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: var(--sp-md);
}

.contact-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
  text-decoration: none;
}
.contact-link:hover { color: var(--white); }
.contact-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }


.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-lg);
  align-items: center;
  justify-content: space-between;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.cta-band p {
  color: rgba(28,26,20,0.75);
  max-width: 50ch;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  flex-shrink: 0;
}


.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding-top: var(--sp-xl);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-lg);
  justify-content: space-between;
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.logo-hex--sm {
  font-size: 1.3rem;
  color: var(--gold);
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 700;
}

.footer-addr {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}
.footer-addr a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-addr a:hover { color: var(--gold); }

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }

.footer-bottom {
  padding-block: var(--sp-md);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}


@media (max-width: 600px) {
  nav[aria-label="Primary navigation"] ul[data-pn-nav="primary"] {
    gap: var(--sp-xs);
  }
  nav[aria-label="Primary navigation"] a {
    font-size: 0.8rem;
  }
  .cta-band-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-band-actions {
    justify-content: center;
  }
}



.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .about-hero-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.about-hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: var(--sp-md);
}

.about-lead {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: var(--text-muted);
  max-width: 54ch;
  margin-bottom: var(--sp-lg);
  line-height: 1.75;
}

.about-hero-img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gold-light);
  order: -1;
}

@media (min-width: 768px) {
  .about-hero-img { order: 0; }
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .about-story-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.about-story-img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gold-light);
}

.about-story-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: var(--sp-md);
}

.about-story-copy p {
  color: var(--text-muted);
  margin-bottom: var(--sp-sm);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: var(--sp-md);
}

.offer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-md) var(--sp-md) var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.offer-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}

.offer-icon {
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.offer-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.4vw, 1.25rem);
  color: var(--dark);
  line-height: 1.25;
}

.offer-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.about-bees-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .about-bees-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.about-bees-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: var(--sp-md);
}

.about-bees-copy p {
  color: var(--text-muted);
  margin-bottom: var(--sp-sm);
}

.about-bees-copy .btn {
  margin-top: var(--sp-sm);
}

.about-bees-img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gold-light);
}

.about-wax-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .about-wax-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.about-wax-img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gold-light);
}

.about-wax-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: var(--sp-md);
}

.about-wax-copy p {
  color: var(--text-muted);
  margin-bottom: var(--sp-sm);
}




.contact-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .contact-hero-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: var(--sp-md);
}

.contact-hero-lead {
  color: rgba(255,255,255,0.75);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: var(--sp-lg);
  max-width: 54ch;
}

.contact-hero-img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  order: -1;
}

@media (min-width: 768px) {
  .contact-hero-img { order: 0; }
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

@media (min-width: 480px) {
  .contact-channels {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.channel-card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: var(--sp-sm) var(--sp-md);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  flex: 1;
  min-width: 160px;
}
.channel-card:hover {
  background: rgba(232,160,32,0.15);
  border-color: var(--gold);
}
.channel-card:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.channel-icon {
  font-size: 1.2rem;
  color: var(--gold);
}

.channel-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.channel-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}


.find-us-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  align-items: start;
}

@media (min-width: 900px) {
  .find-us-inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.info-block {
  margin-bottom: var(--sp-lg);
}

.info-block-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.info-block-text {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: var(--sp-sm);
  font-size: 0.95rem;
}

.contact-hours-wrap {
  margin-bottom: var(--sp-sm);
}

.contact-hours-table caption {
  color: var(--gold-dark);
}

.contact-hours-table th,
.contact-hours-table td {
  color: var(--text);
  border-bottom-color: var(--border);
}

.contact-hours-table th {
  color: var(--text-muted);
}


.map-placeholder {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gold-light);
  border: 1px solid var(--border);
}

.map-placeholder img {
  opacity: 0.35;
}

.map-pin-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  text-align: center;
  padding: var(--sp-md);
}

.map-pin-hex {
  font-size: 3rem;
  color: var(--gold-dark);
  line-height: 1;
}

.map-pin-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
}


.enquiries-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .enquiries-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.enquiries-img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gold-light);
}

.enquiry-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
}

.enquiry-list li {
  display: flex;
  gap: var(--sp-sm);
  align-items: flex-start;
}

.enquiry-icon {
  color: var(--gold-dark);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 0.35em;
}

.enquiry-list strong {
  display: block;
  font-weight: 700;
  color: var(--dark);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.enquiry-list p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

.enquiry-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}


/* pn-injected styles (links block, social bar, image fallback, photo credit) */

.pn-links-rail { box-sizing: border-box; width: 100%; max-width: 100%; margin: 0; padding: 1.1rem 1.25rem 1rem; border: 1px solid rgba(0,0,0,.14); border-top: 3px solid currentColor; background: rgba(0,0,0,.015); font-family: inherit; }
.pn-links-rail__head { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; opacity: .8; margin: 0 0 .65rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(0,0,0,.1); }
.pn-links-rail__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.pn-links-rail__list li { line-height: 1.35; }
.pn-links-rail__list a { font-size: .92rem; color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.pn-links-rail__list a:hover { opacity: .75; }
@media (min-width: 1024px) {
  main:has(> .pn-links-rail) {
    max-width: min(1280px, calc(100vw - 3rem));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    column-gap: 2.5rem;
    align-items: start;
    box-sizing: border-box;
  }
  main > .pn-links-rail {
    grid-column: 2;
    grid-row: 1 / span 999;
    position: sticky;
    top: 1.5rem;
    align-self: start;
  }
  main > .pn-links-hidden { grid-column: 1; grid-row: 1; }
}
@media (max-width: 1023px) {
  main > .pn-links-rail { margin: 1.5rem 0 1rem; }
}
.pn-links-hidden { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.pn-social { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; }
.pn-social__link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: inherit; opacity: .82; transition: opacity .15s ease, transform .15s ease; text-decoration: none; }
.pn-social__link:hover { opacity: 1; transform: translateY(-1px); }
.pn-social__icon { display: block; width: 22px; height: 22px; }
.pn-social--header { justify-content: flex-end; margin: .35rem 1.25rem; }
.pn-social--footer { justify-content: center; margin: 0 auto .85rem; }
.pn-social--sidebar { justify-content: flex-start; margin: 0 0 1.25rem; }
@media (max-width: 720px) { .pn-social--header { justify-content: center; } }

.pn-links-rail{max-width:none;width:auto;margin:1.5rem auto .25rem;padding:0;border:none;background:none;text-align:center;}
.pn-links-rail__head{border:none;padding:0;margin:0 0 .5rem;font-size:.66rem;letter-spacing:.14em;opacity:.5;}
.pn-links-rail__list{flex-direction:row;justify-content:center;flex-wrap:wrap;gap:.35rem 1.15rem;}

.pn-photo{background-color:#e6e1d6;}

.pn-img-fallback{background:repeating-linear-gradient(135deg,#e6e1d6 0,#e6e1d6 10px,#efe9dd 10px,#efe9dd 20px);display:block;min-height:200px;width:100%;}

.pn-photo-credits{font-size:11px;line-height:1.5;opacity:.55;text-align:center;padding:10px 16px;}.pn-photo-credits a{color:inherit;}
