/* ---- Custom Font ---- */
@font-face {
  font-family: "MollyBear";
  src:
    url("fonts/A-Molly-Bear.woff2") format("woff2"),
    url("fonts/A-Molly-Bear.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* =========================================
   GLOBAL THEME
   ========================================= */
:root {
  --font-brand: "MollyBear", sans-serif;

  --page-bg: #ffffff;
  --page-text: #000000;

  --footer-color: #000000;

  --menu-link-color: #000000;
  --menu-active-color: #BA4731;

  --overlay-bg: rgba(0, 0, 0, 0);

  --panel-w: clamp(140px, 24vw, 360px);
  --menu-pad: 18px;

  --burger-size: 38px;
  --top-safe: 86px;
}

/* Home colors */
body.home-page {
  --page-bg: #BA4731;
  --page-text: #000000;
  --footer-color: #000000;
}

* { box-sizing: border-box; }

html, body { height: 100%; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--page-text);
  overflow-x: hidden;

  font-family: var(--font-brand);

  min-height: 100vh;
  display: flex;
  flex-direction: column;

  padding-left: 0;
}

/* =========================
   LEFT PANEL MENU
   ========================= */
.menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--panel-w);
  height: 100svh;
  height: 100vh;
  z-index: 25;

  transform: translateX(-105%);
  transition: transform 220ms ease;
}

body.menu-open .menu-panel { transform: translateX(0); }

.menu-panel__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: left center;
  user-select: none;
  -webkit-user-drag: none;
}

.menu-panel__nav {
  position: absolute;
  top: calc(var(--menu-pad) + 40px);
  left: var(--menu-pad);
  right: var(--menu-pad);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.menu-link {
  font-family: var(--font-brand);
  font-size: 28px;
  letter-spacing: 0.5px;

  color: var(--menu-link-color);
  text-decoration: none;

  display: inline-block;
  padding: 0;
  margin: 0;

  background: transparent;
  border: 0;
  border-radius: 0;

  width: fit-content;
  -webkit-tap-highlight-color: transparent;
}

.menu-link:hover { text-decoration: none; }
.menu-link.is-active { color: var(--menu-active-color); }

.menu-link:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.65);
  outline-offset: 3px;
}

/* =========================
   PAGE LAYOUT
   ========================= */
.container {
  flex: 1;

  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: var(--top-safe) 20px 40px;
}

.home-artwork{
  width: min(980px, 100%);
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

/* =========================
   FOOTER
   ========================= */
.footer {
  position: static;
  width: 100%;

  background: #F0EACE;
  color: var(--footer-color);

  padding: 18px 20px;
}

.footer__inner {
  width: min(980px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.footer__left {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.footer__left a {
  display: inline-flex;
  align-items: center;
}

.footer__logo {
  width: clamp(140px, 18vw, 240px);
  height: auto;
  max-height: 140px;
  object-fit: contain;
  border-radius: 16px;
  cursor: pointer;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.footer__right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;

  border-left: 2px solid rgba(0,0,0,.25);
  padding-left: 16px;
}

.footer__text {
  font-family: var(--font-brand);
  font-size: 18px;
  line-height: 1.45;
  margin: 0;
}

.footer__meta {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
}

.footer__address {
  font-family: var(--font-brand);
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  opacity: 0.95;
}

.footer__address strong { font-weight: normal; }

.footer__links {
  margin: 0;
  margin-left: 0;
  padding-left: 0;

  font-family: var(--font-brand);
  font-size: 14px;
  opacity: 0.9;

  text-align: left;
  white-space: nowrap;
}

.footer__links a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.25);
}

.footer__links a:hover {
  border-bottom-color: rgba(0,0,0,.55);
}

.footer__sep { margin: 0 8px; opacity: 0.7; }

.footer__copyright {
  font-family: var(--font-brand);
  font-size: 14px;
  opacity: 0.85;
  margin: 0;
}

/* Mobile footer */
@media (max-width: 640px) {
  .footer__inner { grid-template-columns: 1fr; }

  .footer__right {
    border-left: 0;
    padding-left: 0;
    border-top: 2px solid rgba(0,0,0,.25);
    padding-top: 12px;
  }

  .footer__left { justify-content: center; }

  .footer__logo {
    width: min(70vw, 220px);
    height: auto;
    max-height: 220px;
    border-radius: 18px;
  }

  .footer__text,
  .footer__copyright { text-align: center; }

  .footer__meta {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer__links {
    margin-left: 0;
    padding-left: 0;
    text-align: center;
  }
}

/* =========================
   BURGER
   ========================= */
.burger {
  display: block;
  position: fixed;
  top: 14px;
  left: 14px;

  width: var(--burger-size);
  height: var(--burger-size);

  padding: 0;
  margin: 0;

  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;

  z-index: 30;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.burger:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.65);
  outline-offset: 4px;
}

.burger__icon {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* =========================
   OVERLAY
   ========================= */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--overlay-bg);
  z-index: 20;
}

.menu-overlay[hidden] { display: none !important; }
body.menu-open .menu-overlay { display: block; }

@media (max-width: 768px) {
  .menu-panel { width: min(82vw, 340px); }
}

/* =========================
   HOME SECTIONS
   ========================= */
.home-section{
  width: 100%;
  padding: 34px 20px;
}

.home-section__inner{
  width: min(980px, 100%);
  margin: 0 auto;
}

/* ✅ Music section styles */
.home-section--music{
  background: #29605A;
  color: #ffffff;
}

.home-section__grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr; /* LEFT embed, RIGHT placeholder */
  gap: 28px;
  align-items: center;
}

.music-embed iframe{
  width: 100%;
  border: 0;
  border-radius: 12px;
}

.music-side{
  min-height: 352px; /* match iframe height */
}

/* Mobile: stack */
@media (max-width: 720px){
  .home-section__grid{
    grid-template-columns: 1fr;
  }
  .music-side{
    min-height: 0;
  }
}

/* =========================
   CONTACT FORM
   ========================= */
.contact-form-card{
  width: min(920px, 100%);
  margin-top: 18px;
  background: #ffffff;
  border-radius: 26px;
  padding: clamp(18px, 3.5vw, 34px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.10);
}

.contact-form { margin: 0; width: 100%; }

.contact-form__success{
  width: 100%;
  text-align: center;
  padding: 12px 12px;
  margin: 0 0 14px 0;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.06);
  font-size: 16px;
}

.contact-form__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 26px;
}

.contact-field label{
  display: inline-block;
  font-size: 18px;
  margin: 0 0 10px 0;
}

.contact-field .req { margin-left: 4px; }

.contact-field input,
.contact-field textarea{
  width: 100%;
  font: inherit;
  font-size: 18px;
  color: #000;
  background: transparent;
  border: 0;
  border-bottom: 2px solid #000;
  padding: 10px 2px 12px;
  border-radius: 0;
  outline: none;
}

.contact-form__message{ margin-top: 18px; }

.contact-field textarea{
  border-bottom: 0;
  border: 2px solid #000;
  border-radius: 16px;
  padding: 14px 14px;
  min-height: 130px;
  resize: vertical;
}

.contact-field input:focus-visible,
.contact-field textarea:focus-visible{
  outline: 3px solid rgba(0, 0, 0, 0.65);
  outline-offset: 4px;
}

.contact-form__submit{
  margin-top: 18px;
  width: 100%;
  border: 0;
  background: #000;
  color: #fff;
  font: inherit;
  font-size: 20px;
  padding: 16px 18px;
  border-radius: 999px;
  cursor: pointer;
}

.contact-form__submit:hover{ filter: brightness(0.95); }

@media (max-width: 720px){
  .contact-form__grid{ grid-template-columns: 1fr; }
}

/* =========================
   CONTACT ROW (2-column)
   Form LEFT, Artwork RIGHT
   ========================= */
.home-form-row{
  width: 100%;
  background: #ffffff;
  padding: 34px 20px 34px;
}

.home-form-row__inner{
  width: min(980px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: center;
}

.home-form-row__card{
  margin-top: 0;
  justify-self: end;       /* ✅ keep form on the RIGHT */
  width: min(640px, 100%);
}

@media (max-width: 720px){
  .home-form-row__inner{
    grid-template-columns: 1fr;
  }
  .home-form-row__card{
    justify-self: stretch;
    width: 100%;
  }
}

/* Honeypot - hide Company field */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* =========================
   COMMISSIONS BUTTON (TOP RIGHT)
   ========================= */
.commission-float{
  position: fixed;
  top: 14px;          /* same vertical as burger */
  right: 14px;        /* mirror of burger */

  background: #000000;
  color: #ffffff;

  font-family: var(--font-brand);
  font-size: 16px;

  padding: 10px 18px;
  border-radius: 999px;

  text-decoration: none;
  z-index: 40;        /* above page content */

  transition: opacity 0.2s ease;
}

.commission-float:hover{
  opacity: 0.85;
}

/* Mobile adjustment */
@media (max-width: 640px){
  .commission-float{
    font-size: 14px;
    padding: 8px 14px;
  }
}