/*
Theme Name: Most Favoured Nation
Theme URI: https://mostfavourednation.com
Author: Most Favoured Nation
Author URI: https://mostfavourednation.com
Description: Official WordPress theme for Most Favoured Nation â€” curating the finest in underground electronic music.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mfn
Tags: music, electronic, dark, underground, single-page
*/

/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root {
  --clr-bg:         #1a1a18;
  --clr-cream:      #d9d5c8;
  --clr-khaki:      #898256;
  --clr-orange:     #898256;
  --clr-white:      #ffffff;
  --clr-black:      #0d0d0b;
  --clr-divider:    #2e2e2a;
  --clr-text-dark:  #1a1a18;
  --clr-text-mid:   #4a4a44;
  --clr-text-light: #c8c4b7;

  --ff-display: 'Albert Sans', sans-serif;
  --ff-body:    'IBM Plex Mono', 'Courier New', monospace;
  --ff-label:   'IBM Plex Mono', monospace;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  /* Hero font: 150pt on large screens, scales down fluidly to never overflow */
  --fs-hero:  clamp(3rem, 18vw, 150pt);
  --fs-h2:    clamp(1.6rem, 3vw, 2.2rem);
  --fs-section-heading: clamp(2.2rem, 6vw, 60pt);
  --fs-accordion-title: clamp(1.1rem, 2.8vw, 28pt);
  --fs-body:  0.78rem;
  --fs-label: 0.68rem;
  --fs-nav:   0.8rem;

  --transition: 0.22s ease;
  --max-w: 1200px;
  --header-h: 100px;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--clr-bg);
  color: var(--clr-text-dark);
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { background: none; border: none; cursor: pointer; font: inherit; }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
.t-display {
  font-family: var(--ff-display);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.88;
}
.t-section-heading {
  font-family: 'Albert Sans', sans-serif;
  font-weight: 900;
  font-size: var(--fs-section-heading);
  text-transform: uppercase;
  line-height: 0.75;
  letter-spacing: -0.04em;
  color: var(--clr-text-dark);
}

/* =========================================================
   LAYOUT
   ========================================================= */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}
.section-cream { background: var(--clr-cream); }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 100 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: var(--header-h) !important;
  min-height: var(--header-h) !important;
  background: rgba(13,13,11,0.96) !important;
  backdrop-filter: blur(6px) !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin: 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.85) !important;
}

.site-header .logo {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: var(--header-h) !important;
  min-height: var(--header-h) !important;
  padding: 0 1.75rem !important;
  margin: 0 var(--space-md) 0 0 !important;
  text-decoration: none !important;
}

.site-header .logo img,
.site-header .logo svg {
  height: 38px !important;
  width: auto !important;
  display: block !important;
  margin-top: auto !important;
  margin-bottom: auto !important;
  padding: 0 !important;
}

.site-nav {
  display: flex !important;
  align-items: stretch !important;
  margin-left: auto !important;
  height: var(--header-h) !important;
  gap: 0 !important;
}

.site-nav a,
.site-nav li > a {
  display: flex !important;
  align-items: center !important;
  height: var(--header-h) !important;
  padding: 0 2.75rem !important;
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: var(--fs-nav);
  color: var(--clr-white);
  text-transform: capitalize;
  letter-spacing: 0;
  white-space: nowrap;
  border-left: 1px solid rgba(255,255,255,0.85);
  transition: background var(--transition), color var(--transition);
  text-decoration: none !important;
}
.site-nav a:hover,
.site-nav li > a:hover {
  background: var(--clr-khaki);
  color: var(--clr-black);
}

.site-nav ul { display: flex; align-items: stretch; }
.site-nav ul li { display: flex; align-items: stretch; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px 1.25rem;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--clr-white);
  transition: transform var(--transition), opacity var(--transition);
}

/* Social + privacy links inside the mobile full-screen nav — hidden on desktop */
.site-nav__foot { display: none; }
.site-nav__foot a {
  border-left: none !important;
  height: auto !important;
  padding: 0 !important;
  width: auto !important;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center center;
  overflow: hidden;
  padding: calc(var(--header-h) + var(--space-lg)) clamp(1.25rem, 4vw, 3rem) var(--space-lg);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  /* CHANGE: corrected source image is full sepia/duotone, no extra grayscale/brightness filter needed */
  filter: none;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(60,55,30,0.35) 30%, rgba(15,14,10,0.55) 80%, rgba(10,10,8,0.75) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  padding: 0 1rem;
  text-align: center;
  overflow: hidden;
  /* CHANGE: pull content up slightly so it visually centers against the area below the fixed nav, not the full viewport */
  margin-top: calc(var(--header-h) * -0.5);
}
.hero__title {
  /* CHANGE: Albert Sans Black, 150pt, 75% line-height, -4% letter-spacing, per client spec */
  font-family: 'Albert Sans', sans-serif;
  font-weight: 900;
  font-size: var(--fs-hero);
  color: var(--clr-white);
  text-transform: uppercase;
  line-height: 0.75;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
  text-align: center;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
  max-width: 100%;
}

/* CHANGE: wordmark is now an inline SVG asset (mfn-wordmark.svg, 310x23 viewBox) rather than text. */
.hero__brand {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.75rem;
}
.hero__brand svg,
.hero__brand img {
  width: clamp(220px, 24vw, 360px);
  height: auto;
  display: block;
}

/* =========================================================
   SERVICES SECTION
   ========================================================= */
.services {
  background: var(--clr-cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.services__left {
  padding: var(--space-lg) clamp(1.25rem, 4vw, 3rem);
  border-right: 1px solid rgba(0,0,0,0.12);
}
.services__right {
  position: relative;
  overflow: hidden;
}
.services__right img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
  opacity: 1;
  transition: opacity 0.22s ease;
}
.services__right img.is-fading {
  opacity: 0;
}
.services__heading { margin-bottom: var(--space-md); }

.accordion__item {
  border-top: 1px solid rgba(0,0,0,0.2);
  transition: background var(--transition);
}
.accordion__item:last-child {
  border-bottom: 1px solid rgba(0,0,0,0.2);
}

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 2rem 1rem;
  font-family: 'Albert Sans', sans-serif;
  font-weight: 900;
  font-size: var(--fs-accordion-title);
  text-transform: uppercase;
  line-height: 0.75;
  letter-spacing: -0.04em;
  color: var(--clr-text-dark);
  transition: background var(--transition), color var(--transition);
  text-align: left;
}
.accordion__icon {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform var(--transition);
}

/* Open state: black panel bleeds flush to the left edge of the section
   and flush to the right edge against the services image, breaking out
   of the .services__left padding via negative margin-inline. */
.accordion__item.is-open {
  background: var(--clr-bg);
  border-color: transparent;
  margin-inline: calc(-1 * clamp(1.25rem, 4vw, 3rem));
}
.accordion__item.is-open .accordion__trigger {
  background: var(--clr-bg);
  color: var(--clr-orange);
  padding: 1.75rem clamp(1.25rem, 4vw, 3rem) 1rem;
}
.accordion__item.is-open .accordion__icon {
  transform: rotate(45deg);
  color: var(--clr-orange);
}
.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}
.accordion__body-inner {
  padding: 0.5rem clamp(1.25rem, 4vw, 3rem) 2rem;
  font-family: 'Albert Sans', sans-serif;
  font-weight: 400;
  font-size: 14pt;
  color: var(--clr-text-light);
  line-height: 1.15;
  letter-spacing: -0.04em;
  background: var(--clr-bg);
}

/* =========================================================
   LATEST RELEASES
   ========================================================= */
.releases {
  background: var(--clr-cream);
  padding: var(--space-lg) 0 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.releases__header {
  padding: 0 clamp(1.25rem, 4vw, 3rem) var(--space-md);
}

.releases__carousel { display: block; position: relative; }
.releases__carousel-wrap { position: relative; }

.releases__slide {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}
.releases__slide[aria-hidden="true"] {
  display: none !important;
}

.releases__cover {
  position: relative;
  background: var(--clr-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.releases__cover img {
  width: 82%;
  height: 82%;
  margin: auto;
  object-fit: contain;
}
.releases__cover-placeholder {
  width: 100%; height: 100%;
  min-height: 380px;
  background: var(--clr-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.releases__info {
  padding: var(--space-md) clamp(1.25rem, 3vw, 2.5rem);
  background: var(--clr-cream);
  color: var(--clr-text-dark);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid rgba(0,0,0,0.15);
}
.releases__artist {
  font-family: 'Albert Sans', sans-serif;
  font-weight: 900;
  font-size: var(--fs-accordion-title);
  text-transform: uppercase;
  line-height: 0.75;
  letter-spacing: -0.04em;
  color: var(--clr-text-dark);
}
.releases__title-sm {
  font-family: 'Albert Sans', sans-serif;
  font-weight: 700;
  font-size: 18pt;
  line-height: 0.75;
  letter-spacing: -0.04em;
  color: var(--clr-text-mid);
  margin-top: 0.35rem;
}
.releases__description {
  font-family: 'Albert Sans', sans-serif;
  font-weight: 400;
  font-size: 16pt;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--clr-text-mid);
  flex: 1;
  overflow: visible;
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
}

/* Detail block â€” three columns: Label/Cat No/Format, Release date/Territory/Genre,
   and a wider Track listing column per the updated design. */
.releases__meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1.6fr;
  gap: 1.5rem;
  color: var(--clr-text-mid);
  border-top: 1px solid rgba(0,0,0,0.15);
  padding-top: 1.25rem;
}
.releases__meta-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.releases__meta-field p:first-child { margin: 0; }
.releases__meta-label {
  font-family: 'Albert Sans', sans-serif;
  font-weight: 700;
  font-size: 12pt;
  line-height: 1.15;
  letter-spacing: -0.04em;
  text-transform: none;
  color: var(--clr-text-dark);
  opacity: 1;
  margin-bottom: 0.15rem;
}
.releases__meta-field p:last-child {
  font-family: 'Albert Sans', sans-serif;
  font-weight: 400;
  font-size: 12pt;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--clr-text-mid);
  margin: 0;
}

/* â”€â”€ Carousel nav â€” overlaid on the cover image, not a separate bar â”€â”€ */
/* Controls overlay is now INSIDE .releases__cover â€” always scoped to the image panel */
.releases__controls {
  position: absolute;
  inset: 0;
  bottom: 3.5rem; /* leave room for the counter strip */
  pointer-events: none;
  background: none;
  z-index: 2;
}
.carousel-btn-prev,
.carousel-btn-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 2.25rem;
  padding: 0;
  background: none;
  border: none;
  color: var(--clr-white);
  cursor: pointer;
  transition: opacity var(--transition);
}
.carousel-btn-prev svg,
.carousel-btn-next svg {
  width: 100%;
  height: 100%;
  display: block;
}
.carousel-btn-prev { left: 1.25rem; }
.carousel-btn-next { right: 1.25rem; }
.carousel-btn-prev:hover,
.carousel-btn-next:hover { opacity: 0.65; }
.carousel-btn-prev:focus,
.carousel-btn-next:focus { outline: none; }
.carousel-btn-prev:focus-visible,
.carousel-btn-next:focus-visible {
  outline: 2px solid rgba(255,255,255,0.5);
  outline-offset: 4px;
}

/* Counter — floats directly on the cover image, lifted up from the bottom edge */
.releases__counter-strip {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  z-index: 2;
}
.carousel-counter {
  font-family: 'Albert Sans', sans-serif;
  font-weight: 900;
  font-size: 18pt;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--clr-white);
  text-shadow: 0 1px 8px rgba(0,0,0,0.65);
  white-space: nowrap;
  user-select: none;
}

.labels {
  background: var(--clr-cream);
  padding: var(--space-lg) clamp(1.25rem, 4vw, 3rem) var(--space-xl);
  border-top: 1px solid rgba(0,0,0,0.1);
}
.labels__header { margin-bottom: var(--space-lg); }
.labels__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3rem 2rem;
  align-items: center;
}
.label-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  padding: 0.5rem 1rem;
  background: transparent;
  /* No border, no box, no hover effects — logos float on cream */
}
.label-logo img {
  width: auto;
  height: auto;
  max-width: 200px;
  max-height: 100px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.2);
  display: block;
  margin: 0 auto;
}
.label-logo svg {
  width: auto;
  height: auto;
  max-width: 200px;
  max-height: 100px;
  filter: grayscale(1) contrast(1.2);
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  background: var(--clr-bg);
  padding: var(--space-lg) clamp(1.25rem, 4vw, 3rem) var(--space-xl);
}
.contact__heading {
  color: var(--clr-white);
  margin-bottom: var(--space-lg);
}
.contact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: start;
}
/* Item title: Address, Label Management, Sales, General Enquiries */
.contact__col-label {
  font-family: 'Albert Sans', sans-serif;
  font-weight: 700;
  font-size: 24pt;
  line-height: 0.75;
  letter-spacing: -0.04em;
  color: var(--clr-white);
  margin-bottom: 1.25rem;
  display: block;
  text-transform: none;
}
/* Name of contact: Tom Roberts, Scott Hudson */
.contact__col-name {
  font-family: 'Albert Sans', sans-serif;
  font-weight: 400;
  font-size: 20pt;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--clr-text-light);
  display: block;
  margin-bottom: 0.5rem;
}
/* Address lines and email addresses */
.contact__col p,
.contact__col address {
  font-family: 'Albert Sans', sans-serif;
  font-weight: 400;
  font-size: 20pt;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--clr-text-light);
  font-style: normal;
}
.contact__col a {
  font-family: 'Albert Sans', sans-serif;
  font-weight: 400;
  font-size: 20pt;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--clr-text-light);
  display: block;
  transition: color var(--transition);
}
.contact__col a:hover { color: var(--clr-white); }

/* =========================================================
   FOOTER WORDMARK
   ========================================================= */
.footer-wordmark {
  background: var(--clr-bg);
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 0;
  isolation: isolate;
  z-index: 1;
  font-size: 0;
  line-height: 0;
}

/* SVG wordmark â€” fills full width, path-based, scales perfectly, no gap */
.footer-mfn-svg {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  position: relative;
  z-index: 1;
}

.footer-mfn-image {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: -0.5%;
  vertical-align: bottom;
  position: relative;
  z-index: 1;
}

.footer-wordmark__text {
  font-family: var(--ff-display);
  font-size: clamp(7rem, 22vw, 18rem);
  text-transform: uppercase;
  color: var(--clr-khaki);
  letter-spacing: -0.02em;
  line-height: 0.82;
  padding: 0 clamp(0.5rem, 2vw, 1.5rem);
  user-select: none;
  display: block;
}

.footer-fullname {
  background: var(--clr-khaki);
  padding: 0.6rem clamp(0.5rem, 2vw, 1.5rem);
  font-family: var(--ff-display);
  font-size: clamp(1rem, 4.5vw, 3.2rem);
  text-transform: uppercase;
  color: var(--clr-black);
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
}

/* Base footer bar â€” 100px height per spec, flush against MFN SVG above */
.footer-bottom {
  background: var(--clr-khaki);
  height: 100px;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: none;
  margin-top: 0;
  position: relative;
  z-index: 2;
}
/* Instagram icon â€” match design size (~28px) */
.footer-bottom__social a {
  color: var(--clr-black);
  opacity: 1;
  transition: opacity var(--transition);
  display: inline-flex;
  align-items: center;
}
.footer-bottom__social a svg {
  width: 28px;
  height: 28px;
}
.footer-bottom__social a:hover { opacity: 0.7; }
.footer-bottom__links { display: flex; gap: 1.5rem; align-items: center; }

/* =========================================================
   PRIVACY POLICY PANEL
   ========================================================= */
.privacy-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Albert Sans', sans-serif;
  font-weight: 400;
  font-size: 16pt;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--clr-black);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity var(--transition);
}
.privacy-toggle:hover { opacity: 0.7; }

.privacy-toggle__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}
/* Use the same SVG arrow asset, rotated to make a + / Ã— */
.privacy-toggle__icon svg {
  width: 12px;
  height: 12px;
  transition: transform 0.35s ease;
}
.privacy-toggle[aria-expanded="true"] .privacy-toggle__icon svg {
  transform: rotate(45deg);
}

.privacy-panel {
  background: var(--clr-khaki);
  overflow: hidden;
  height: 0;
  transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 10;
  isolation: isolate;
}

/* Content lives in the right half â€” pushed by padding-left: 50%, no wrapper dependency */
.privacy-panel__inner {
  padding: 4rem clamp(1.25rem, 4vw, 3rem) 5rem 50%;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

/* PRIVACY POLICY â€” Albert Sans Black 60pt / 75% line-height / -4% letter-spacing */
.privacy-panel__title {
  font-family: 'Albert Sans', sans-serif;
  font-weight: 900;
  font-size: var(--fs-section-heading);
  text-transform: uppercase;
  line-height: 0.75;
  letter-spacing: -0.04em;
  color: var(--clr-black);
  margin-bottom: 1.5rem;
}

/* Intro paragraph */
.privacy-panel__inner > p,
.privacy-panel__content > p:first-child {
  font-family: 'Albert Sans', sans-serif;
  font-weight: 400;
  font-size: 16pt;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--clr-black);
  margin-bottom: 0;
}

/* Divider lines */
.privacy-panel__inner hr,
.privacy-panel__content hr {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.25);
  margin: 2rem 0;
}

/* Section headings â€” Albert Sans Black 28pt / 75% / -4% */
.privacy-panel__inner h3,
.privacy-panel__content h1,
.privacy-panel__content h2 {
  font-family: 'Albert Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(1.1rem, 2.8vw, 28pt);
  text-transform: uppercase;
  line-height: 0.75;
  letter-spacing: -0.04em;
  color: var(--clr-black);
  margin-bottom: 0.85rem;
}

/* Body copy â€” Albert Sans Regular 16pt / 115% / -4% */
.privacy-panel__inner p,
.privacy-panel__content p {
  font-family: 'Albert Sans', sans-serif;
  font-weight: 400;
  font-size: 16pt;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--clr-black);
  margin-bottom: 0;
}

.page-privacy .entry-content h1,
.page-privacy .entry-content h2,
.page-privacy .entry-content h3,
.page-privacy .entry-content h4 {
  font-family: 'Albert Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(1.1rem, 2.8vw, 28pt);
  text-transform: uppercase;
  line-height: 0.75;
  letter-spacing: -0.04em;
  color: var(--clr-black);
  margin: 2rem 0 0.85rem;
}
.page-privacy .entry-content h1:first-child,
.page-privacy .entry-content h2:first-child,
.page-privacy .entry-content h3:first-child {
  margin-top: 0;
}
.page-privacy .entry-content p {
  font-family: 'Albert Sans', sans-serif;
  font-weight: 400;
  font-size: 16pt;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--clr-black);
  margin-bottom: 0.75rem;
}
.page-privacy .entry-content hr {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.25);
  margin: 2rem 0;
}

.site-nav a.is-active,
.site-nav li.is-active > a {
  background: var(--clr-khaki);
  color: var(--clr-black);
}

.page-privacy {
  background: var(--clr-khaki);
  /* Push all content to the right half using left padding â€” no wrapper div needed */
  padding: calc(var(--space-xl) + 2rem) clamp(1.25rem, 4vw, 3rem) var(--space-xl) 50%;
  max-width: 100%;
  box-sizing: border-box;
}
/* Inner wrapper â€” kept for compatibility but not load-bearing */
.page-privacy__inner {
  width: 100%;
}
.page-privacy h1 {
  font-family: 'Albert Sans', sans-serif;
  font-weight: 900;
  font-size: var(--fs-section-heading);
  text-transform: uppercase;
  line-height: 0.75;
  letter-spacing: -0.04em;
  color: var(--clr-black);
  margin-bottom: 1.5rem;
}
.page-privacy h2,
.page-privacy h3,
.page-privacy h4 {
  font-family: 'Albert Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(1.1rem, 2.8vw, 28pt);
  text-transform: uppercase;
  line-height: 0.75;
  letter-spacing: -0.04em;
  color: var(--clr-black);
  margin: 2rem 0 0.85rem;
}
.page-privacy p {
  font-family: 'Albert Sans', sans-serif;
  font-weight: 400;
  font-size: 16pt;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--clr-black);
  margin-bottom: 0.75rem;
}
.page-privacy hr {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.25);
  margin: 2rem 0;
}

/* =========================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================= */

@media (max-width: 900px) {
  .site-header {
    height: var(--header-h) !important;
    position: fixed !important;
    z-index: 100000 !important;
  }

  .site-header .logo {
    padding: 0 1.25rem !important;
    margin: 0 !important;
  }

  .nav-toggle {
    display: flex !important;
    z-index: 100001 !important;
  }

  /* Hamburger → X when menu is open */
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    display: none !important;
  }

  .site-nav.is-open {
    display: flex !important;
    position: fixed !important;
    top: var(--header-h) !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: calc(100vh - var(--header-h)) !important;
    background: #111111 !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 3.5rem 2rem 2.5rem 2rem !important;
    z-index: 99999 !important;
    overflow-y: auto !important;
  }

  .site-nav.is-open ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2.25rem !important;
    width: 100% !important;
    margin: auto 0 !important;
    padding: 0 !important;
  }

  .site-nav.is-open ul li {
    display: block !important;
    text-align: center !important;
    width: 100% !important;
  }

  .site-nav.is-open ul li a {
    display: inline-block !important;
    font-family: var(--ff-display), sans-serif !important;
    font-size: 2.25rem !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    color: var(--clr-white) !important;
    letter-spacing: 0.02em !important;
    border: none !important;
    padding: 0.25rem 0 !important;
    transition: color var(--transition) !important;
  }

  .site-nav.is-open ul li.current-menu-item a,
  .site-nav.is-open ul li.is-active a,
  .site-nav.is-open ul li a:hover {
    color: var(--clr-khaki) !important;
    background: none !important;
  }

  .site-nav.is-open .site-nav__foot {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1.5rem !important;
    width: 100% !important;
  }

  .site-nav.is-open .footer-bottom__social,
  .site-nav.is-open .site-nav__social,
  .site-nav.is-open a[href*="instagram.com"] {
    color: var(--clr-white) !important;
    font-size: 2.25rem !important;
  }

  .site-nav.is-open #mobile-privacy-link {
    font-family: var(--ff-label), monospace !important;
    font-size: 0.9rem !important;
    color: #a0a0a0 !important;
    text-transform: none !important;
    letter-spacing: 0.05em !important;
  }

  .hero {
    place-items: center center !important;
    padding-inline: 1.5rem !important;
  }

  .hero__content {
    margin-top: 0 !important;
  }

  .hero__title {
    font-size: clamp(2.5rem, 11vw, 4.5rem) !important;
    line-height: 0.85 !important;
    letter-spacing: -0.03em !important;
    margin-bottom: 1.75rem !important;
    text-align: center !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  .hero__brand svg,
  .hero__brand img {
    width: clamp(160px, 42vw, 240px);
  }

  .services {
    grid-template-columns: 1fr;
  }
  /* Unwrap the desktop two-column left panel so heading, image, and
     accordion can be reordered independently on mobile */
  .services__left {
    display: contents;
  }
  .services__heading {
    order: 1;
    padding: 2rem clamp(1.25rem, 4vw, 3rem) 0;
  }
  .services__right {
    order: 2;
    height: 260px;
  }
  .accordion {
    order: 3;
    padding: 0 clamp(1.25rem, 4vw, 3rem) 2rem;
  }
  /* When JS moves .services__right inside .accordion (so it can sit
     above whichever item is open), cancel the accordion's own padding
     for just the image so it still bleeds full-width. */
  .accordion > .services__right {
    margin-inline: calc(-1 * clamp(1.25rem, 4vw, 3rem));
  }

  .releases__slide {
    grid-template-columns: 1fr;
  }
  .releases__cover {
    min-height: 320px;
  }
  .releases__artist {
    font-size: clamp(1.7rem, 8vw, 2.2rem) !important;
    color: var(--clr-text-dark) !important;
  }
  .releases__title-sm {
    font-size: clamp(1.05rem, 5vw, 1.4rem) !important;
    color: var(--clr-text-dark) !important;
  }
  .releases__meta {
    grid-template-columns: 1fr 1fr;
  }
  .releases__meta-col--tracks {
    grid-column: 1 / -1;
  }
  .releases__meta {
    grid-template-columns: 1fr 1fr;
  }
  .releases__meta-col--tracks {
    grid-column: 1 / -1;
  }

  .labels__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 1.5rem;
  }
  .label-logo {
    height: 65px;
    padding: 0.25rem 0.5rem;
  }
  .label-logo img,
  .label-logo svg {
    max-width: 120px;
    max-height: 65px;
  }

  .contact__grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
  /* Reorder for mobile only: Label Management, Sales, General Enquiries, then Address last */
  .contact__col:nth-child(1) { order: 4; }
  .contact__col:nth-child(2) { order: 1; }
  .contact__col:nth-child(3) { order: 2; }
  .contact__col:nth-child(4) { order: 3; }

  .contact__col-label {
    font-size: 1.15rem !important;
    margin-bottom: 0.4rem !important;
  }
  .contact__col-name {
    font-size: 0.95rem !important;
    margin-bottom: 1rem !important;
  }
  .contact__col p,
  .contact__col address,
  .contact__col a {
    font-size: 0.95rem !important;
  }
}

@media (max-width: 480px) {
  .labels__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1rem;
  }
  .label-logo {
    height: 55px;
    padding: 0.25rem 0.25rem;
  }
  .label-logo img,
  .label-logo svg {
    max-width: 100px;
    max-height: 55px;
  }
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .footer-fullname {
    font-size: clamp(0.75rem, 5vw, 1.4rem);
  }
  /* Privacy panel and page go full width on mobile */
  .privacy-panel__inner {
    padding-left: clamp(1.25rem, 4vw, 3rem);
  }
  .page-privacy {
    padding-left: clamp(1.25rem, 4vw, 3rem);
  }
}

/* =========================================================
   WORDPRESS STANDARD FALLBACKS
   ========================================================= */
.alignnone  { margin: 5px 20px 20px 0; }
.aligncenter, div.aligncenter { display: block; margin: 5px auto; }
.alignright { float: right; margin: 5px 0 20px 20px; }
.alignleft  { float: left;  margin: 5px 20px 20px 0; }
.wp-caption  { max-width: 100%; }
.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
}