/* ═══════════════════════════════════════
   DEAD GOAT — Master Stylesheet
   Three-panel structure: left | content | right
   All backgrounds are swappable images
   ═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Cinzel:wght@400;700;900&family=IM+Fell+English+SC&family=IM+Fell+English:ital@0;1&family=UnifrakturMaguntia&display=swap');

/* ═══ RESET ═══ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }

body {
  background: #0D0A06;
  color: #3D2E1A;
  font-family: 'IM Fell English', serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ══════════════════════════════════════════════
   NAVBAR — sits above everything
   ══════════════════════════════════════════════ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(13, 10, 6, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid #3A2A15;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 2rem;
}

.nav-brand {
  font-family: 'Cinzel Decorative', serif;
  font-weight: 900;
  font-size: 0.85rem;
  color: #C8B48A;
  text-decoration: none;
  letter-spacing: 0.15em;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8A7A5A;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover { color: #D9C99E; }

/* ══════════════════════════════════════════════
   HERO SECTION — near full-page, 3-panel
   ══════════════════════════════════════════════
   Structure:
   .hero
     .hero-left   (image overlay, left side)
     .hero-center (logo area)
     .hero-right  (image overlay, right side)
   ══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: calc(100vw * (673 / 1920));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  background: #0D0A06;
  overflow: hidden;
  background: url(../media/3/banner2.png) center;
  aspect-ratio: 1920 / 673;
  object-fit: cover;
  background-size:100%;
      height: auto;
    width: 100%;
	display:flex;
}



/* 
   PLACEHOLDER BACKGROUNDS — replace with your images:
   .hero-left  { background-image: url('../images/hero-left.png'); }
   .hero-right { background-image: url('../images/hero-right.png'); }
*/
.hero-left {
  /*background-image: url(../media/2/TLMborder.png);*/
}

.hero-right {
  /*background-image: url(../media/2/TRMborder.png);*/
}

.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  width:100%;
  /* 
     PLACEHOLDER — replace with your hero background:
     background-image: url('../images/hero-bg.jpg');
  */
  
}

/* ── Logo layout: DEAD [skull] GOAT ── */
.hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: -20vh;
}

.logo-text {
  font-family: 'Cinzel Decorative', serif;
  font-weight: 900;
  font-size: clamp(3rem, 9vw, 6rem);
  color: #C8B48A;
  text-shadow:
    0 3px 0 rgba(0,0,0,0.6),
    0 0 40px rgba(180,140,60,0.1);
  letter-spacing: 0.05em;
  line-height: 1;
}

.logo-skull {
  width: clamp(70px, 16vw, 130px);
  flex-shrink: 0;
  margin: 0 -0.1em;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
  filter: drop-shadow(0 30px 10px rgba(0, 0, 0, 0.6));
  width:30vw
}

.hero-tagline {
  font-family: 'IM Fell English', serif;
  font-size: clamp(0.8rem, 2vw, 1.1rem);
  color: #A89568;
  margin-top: 0.75rem;
  font-style: italic;
  letter-spacing: 0.15em;
}

.hero-sub {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  color: #6B5A3A;
  margin-top: 0.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════
   BODY SECTION — 3-panel: left | content | right
   ══════════════════════════════════════════════
   .body-wrap
     .body-left   (repeat-y image border)
     .body-content (parchment/weathered paper bg)
     .body-right  (repeat-y image border)
   ══════════════════════════════════════════════ */
.body-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 50vh;
}

.body-left,
.body-right {
  width: calc((137 / 1920) * 100vw); 
  background-repeat: round;
  background-size: 100% auto;
}

.body-left {
  background-image: url('../media/3/borderl.png');
}

.body-right {
  background-image: url('../media/3/borderr.png');
}

.body-content {
  /*
     SWAP with your weathered paper texture:
     background-image: url('../images/parchment.jpg');
     background-repeat: repeat;
  */
  background:
    linear-gradient(180deg, #B89E6E, #C4AA78 10%, #BFAA7A 50%, #C4AA78 90%, #B89E6E);
  background: url('../media/3/body.png');
  background-size: 100% auto;
  padding: 0;
  position: relative;
  width:100%;
  background-repeat: round;
}

/* Parchment noise */
.body-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.1'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
}

.body-content > * {
  position: relative;
  z-index: 1;
}

/* ── Content inner spacing ── */
.content-inner {
  max-width: 70vw;
  margin: 0 auto;
  padding: 2rem 2.5rem;
}

/* ══════════════════════════════════════════════
   SECTION HEADERS
   ══════════════════════════════════════════════ */
.section-header {
  text-align: center;
  padding: 2.5rem 1rem 1.5rem;
}

.section-header h2 {
  font-family: 'UnifrakturMaguntia', cursive;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: #2A2010;
  text-shadow: 0 1px 0 rgba(180,160,110,0.4);
  letter-spacing: 0.08em;
}

.header-rule {
  width: 180px;
  max-width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #6B5A3A, transparent);
  margin: 0.6rem auto 0;
}

/* ══════════════════════════════════════════════
   SONG GALLERY — framed cards
   ══════════════════════════════════════════════ */

/* ── Sort controls ── */
.gallery-sort {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.sort-label {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: #6B5A3A;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-right: 0.3rem;
}

.sort-btn {
  padding: 0.3rem 0.7rem;
  background: transparent;
  border: 1px solid rgba(74,55,36,0.3);
  border-radius: 3px;
  color: #8A7A5A;
  font-family: 'IM Fell English', serif;
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.2s;
}

.sort-btn:hover {
  border-color: #8B6914;
  color: #3D2E1A;
}

.sort-btn.active {
  background: rgba(74,55,36,0.25);
  border-color: #8B6914;
  color: #2A2010;
  font-weight: 700;
}
.gallery-grid {
  display: flex;
  gap: 1.8rem;
  padding: 0.5rem 0 2rem;
      flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: space-between;
}
}

.track-card {
  text-align: center;
  cursor: pointer;
  transition: transform 0.25s ease;
  width:20vmin;
  min-width:200px;
}

.track-card:hover { transform: scale(1.04); }

/* ── Wooden frame ── */
.wood-frame {
  position: relative;
  aspect-ratio: 1;
  background:
    repeating-linear-gradient(95deg, transparent 0px, rgba(0,0,0,0.04) 1px, transparent 2px, rgba(0,0,0,0.02) 5px, transparent 6px),
    linear-gradient(180deg, #5A4428, #4A3620 30%, #3E2D18 70%, #4A3620);
  padding: 8px;
  border-radius: 2px;
  /*box-shadow:
    0 6px 20px rgba(0,0,0,0.45),
    0 2px 6px rgba(0,0,0,0.25),
    inset 2px 2px 0 rgba(130,110,70,0.25),
    inset -2px -2px 0 rgba(0,0,0,0.3),
    inset 0 0 10px rgba(0,0,0,0.35);*/
	width: 20vmin;
    height: 30vmin;
    min-height: 300px;
    min-width: 200px;
    aspect-ratio: 2 / 3;
	background: url(../media/3/frameTall.png) no-repeat;
    background-size: 100% 100%;
    padding: 42px;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, .45)) drop-shadow(0 2px 6px rgba(0, 0, 0, .25)) drop-shadow(0 28px 15px rgba(0, 0, 0, .3));
}

/* Corner studs */


.frame-mat {
  position: relative;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 8px rgba(0,0,0,0.8);
  overflow: hidden;
}

.frame-mat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame-mat .default-art {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 50% 40%, rgba(74,55,36,0.5), #1A1209 80%);
}

.frame-mat .default-art svg {
  width: 45%;
  height: 45%;
  opacity: 0.18;
  stroke: #A89568;
}

.card-title-overlay {
  position: absolute;
  top: 6px; left: 6px; right: 6px;
  z-index: 4;
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.58rem;
  font-weight: 900;
  color: #D9C99E;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.9), 0 0 12px rgba(0,0,0,0.5);
  line-height: 1.3;
  padding: 4px 6px;
  background: rgba(13,10,6,0.4);
  backdrop-filter: blur(2px);
  border-radius: 1px;
}

.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(200,180,138,0.6);
  background: rgba(13,10,6,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  box-shadow: 0 3px 10px rgba(0,0,0,0.5);
}

.play-btn svg {
  width: 16px; height: 16px;
  fill: #D9C99E;
  margin-left: 2px;
}

.track-card:hover .play-btn {
  background: rgba(130,100,40,0.35);
  border-color: #DAA520;
  transform: translate(-50%, -50%) scale(1.12);
}

.track-label {
      font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #2A2010;
    margin-top: -2rem;
    letter-spacing: 0.05em;
    text-shadow: -2px 2px 4px rgb(0 0 0 / 50%), -2px -2px 4px rgb(0 0 0 / 50%), 2px -2px 4px rgb(0 0 0 / 50%), 2px 2px 4px rgb(0 0 0 / 50%), 0px 2px 4px rgb(0 0 0 / 50%), 0px -2px 4px rgb(0 0 0 / 50%), 2px 0px 4px rgb(0 0 0 / 50%), -2px 0px 4px rgb(0 0 0 / 50%);
    z-index: 199;
    text-align: center;
    display: block;
    position: relative;
    color: #e3cea5;
	width: 15vmin;
    margin: -2rem auto 0 auto;
}

/* ══════════════════════════════════════════════
   ABOUT & CONTACT
   ══════════════════════════════════════════════ */
.about-area {
  max-width: 580px;
  margin: 0 auto;
  padding: 0.5rem 1rem 2.5rem;
  text-align: center;
}

.about-area p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #3D2E1A;
  margin-bottom: 0.8rem;
}

.about-area strong { color: #1A1209; }
.about-area em { color: #6B4A1F; font-style: italic; }

.contact-area {
  text-align: center;
  padding: 0.5rem 1rem 2.5rem;
}

.contact-area p {
  color: #4A3620;
  font-style: italic;
  line-height: 1.8;
}

.contact-area a {
  color: #6B4A1F;
  text-decoration: none;
  border-bottom: 1px solid rgba(107,74,31,0.3);
}

/* ══════════════════════════════════════════════
   FOOTER — 3-panel like body
   ══════════════════════════════════════════════
   .footer-wrap
     .footer-left
     .footer-base
     .footer-right
   ══════════════════════════════════════════════ */
.footer-wrap {
  display: flex;
  justify-content: space-around;
  background: url(../media/3/footer.png);
  background-size:cover;
  aspect-ratio:1920/510;
}
.footer-base {

  text-align: center;
  padding: 2rem;
  
}

.footer-base p {
  font-family: 'IM Fell English SC', serif;
  font-size: 0.7rem;
  color: #6B5A3A;
  letter-spacing: 0.15em;
}

.footer-skull {
  width: 24px;
  margin: 0 auto 0.6rem;
  opacity: 0.2;
}

/* ══════════════════════════════════════════════
   PLAYER MODAL
   ══════════════════════════════════════════════ */
.modal-bg {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(12px);
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-bg.active { display: flex; animation: mfade 0.25s ease; }
@keyframes mfade { from { opacity: 0; } }

.modal-box {
  background:
    repeating-linear-gradient(95deg, transparent 0px, rgba(0,0,0,0.03) 1px, transparent 2px),
    linear-gradient(180deg, #5A4428, #3E2D18);
  padding: 10px;
  border-radius: 3px;
  min-width: 200px;
  width: 42vmin;
  position: relative;
  animation: mslide 0.35s cubic-bezier(0.16,1,0.3,1);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.7),
    inset 2px 2px 0 rgba(130,110,70,0.2),
    inset -2px -2px 0 rgba(0,0,0,0.3);
}

@keyframes mslide { from { transform: translateY(30px); opacity: 0; } }

.modal-inner {
  background: #1A1209;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: -6px; right: -6px;
  width: 28px; height: 28px;
  background: #3E2D18;
  border: 2px solid #5A4428;
  border-radius: 50%;
  color: #A89568;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 3px 8px rgba(0,0,0,0.5);
  transition: all 0.2s;
}

.modal-close:hover { background: #6B4A1F; color: #E8DCC0; }

.modal-art {
  width: 100%;
  aspect-ratio: 2/3;
  background: radial-gradient(ellipse, rgba(74,55,36,0.3), #1A1209);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-art img { width: 100%; height: 100%; object-fit: cover; }
.modal-art .default-art { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.modal-art .default-art svg { width: 20%; opacity: 0.12; stroke: #A89568; }

.modal-info {
  padding: 1.2rem;
  background: linear-gradient(180deg, #1A1209, #221A0F);
}

.modal-info h3 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #D9C99E;
  margin-bottom: 0.2rem;
}

.modal-info .meta {
  font-size: 0.6rem;
  color: #6B5A3A;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: monospace;
}

.audio-player audio { width: 100%; height: 42px; border-radius: 4px; }
.embed-player { width: 100%; min-height: 160px; border: none; border-radius: 2px; }
.player-note { font-size: 0.65rem; color: #6B5A3A; text-align: center; margin-top: 0.6rem; }
.player-note a { color: #B8860B; text-decoration: none; }

/* ══════════════════════════════════════════════
   TOAST
   ══════════════════════════════════════════════ */
.toast {
  position: fixed; bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #3E2D18;
  color: #D9C99E;
  padding: 0.7rem 1.8rem;
  font-size: 0.75rem;
  border-radius: 3px;
  z-index: 9000;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  border: 1px solid #5A4428;
}

.toast.show { transform: translateX(-50%) translateY(0); }


/* ══════════════════════════════════════════════
   HERO PLAY BUTTON
   ══════════════════════════════════════════════ */
.hero-play-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.7rem 2rem;
  background: rgba(13,10,6,0.5);
  border: 2px solid rgba(200,180,138,0.4);
  border-radius: 30px;
  color: #C8B48A;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
}

.hero-play-btn svg {
  fill: #C8B48A;
  margin-left: 1px;
  transition: fill 0.3s;
}

.hero-play-btn:hover {
  background: rgba(184,134,11,0.25);
  border-color: #DAA520;
  color: #E8DCC0;
}

.hero-play-btn:hover svg { fill: #E8DCC0; }

/* ══════════════════════════════════════════════
   MODAL — minimize button
   ══════════════════════════════════════════════ */
.modal-minimize {
  position: absolute;
  top: -6px; right: 28px;
  width: 28px; height: 28px;
  background: #3E2D18;
  border: 2px solid #5A4428;
  border-radius: 50%;
  color: #A89568;
  font-size: 0.7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 3px 8px rgba(0,0,0,0.5);
  transition: all 0.2s;
}

.modal-minimize:hover { background: #6B4A1F; color: #E8DCC0; }

/* ══════════════════════════════════════════════
   MINIMIZED PLAYER BAR
   ══════════════════════════════════════════════ */
.mini-player {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 4000;
  background: linear-gradient(180deg, #2A1E10, #1A1209);
  border-top: 2px solid #4A3724;
  display: none;
  align-items: center;
  padding: 0.5rem 1rem;
  gap: 0.8rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
  animation: miniSlideUp 0.3s ease;
}

.mini-player.active { display: flex; }

@keyframes miniSlideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.mini-art {
  width: 44px; height: 44px;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
  background: #0D0A06;
  border: 1px solid #3A2A15;
}

.mini-art img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.mini-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  justify-content: center;
}

.mini-title {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #D9C99E;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-progress-wrap {
  width: 100%;
  height: 6px;
  background: #0D0A06;
  border-radius: 3px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.mini-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #8B6914, #DAA520);
  border-radius: 3px;
  transition: width 0.3s linear;
}

.mini-controls {
  display: flex;
  gap: 0.4rem;
  flex-shrink: 0;
}

.mini-btn {
  width: 32px; height: 32px;
  background: #3E2D18;
  border: 1px solid #5A4428;
  border-radius: 50%;
  color: #A89568;
  font-size: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.mini-btn:hover { background: #5A4428; color: #E8DCC0; }

.mini-close:hover { background: #6B2020; border-color: #8B3030; color: #E8DCC0; }

/* ── Modal action buttons (like, share) ── */
.modal-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(74,55,36,0.3);
}

.modal-action-btn {
  flex: 1;
  padding: 0.5rem 0.8rem;
  background: rgba(74,55,36,0.15);
  border: 1px solid rgba(74,55,36,0.3);
  border-radius: 4px;
  color: #A89568;
  font-family: 'IM Fell English', serif;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.modal-action-btn:hover {
  background: rgba(74,55,36,0.3);
  color: #D9C99E;
  border-color: rgba(74,55,36,0.5);
}

.modal-action-btn.liked {
  color: #C44;
  border-color: rgba(180,60,60,0.3);
}

.modal-action-btn.liked .like-icon {
  color: #C44;
  transform: scale(1.2);
}

.like-icon {
  font-size: 1rem;
  transition: transform 0.2s;
}

/* ── Now playing indicator on gallery card ── */
.track-card.now-playing .wood-frame {
  box-shadow: 0 0 20px rgba(218,165,32,0.3), 0 0 40px rgba(218,165,32,0.1);
}

.track-card.now-playing .track-label {
  color: #DAA520;
}

/* ── Play count badge ── */
.play-count-badge {
  position: absolute;
  bottom: 6px;
  right: 6px;
  z-index: 4;
  font-family: monospace;
  font-size: 0.55rem;
  color: #A89568;
  background: rgba(13,10,6,0.6);
  padding: 2px 5px;
  border-radius: 2px;
  backdrop-filter: blur(2px);
}


.contract-footer {
  text-align: center;
  margin-top: 4rem;
  padding-bottom: 3rem;
  color: #3a2a1c;
}

.contract-footer p {
  margin: 0.4rem 0;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.signature-block {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.signature-line {
  width: 220px;
  border-top: 1px solid rgba(60, 30, 20, 0.45);
}

.signature {
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 2.5rem;
  color: #6f0b10;
  transform: rotate(-6deg);
  letter-spacing: 0.03em;
  text-shadow:
    0 0 1px rgba(0,0,0,0.2),
    1px 1px 0 rgba(90,0,0,0.08);
  opacity: 0.92;
}

/* ── Load More button ── */
.load-more-btn {
  display: block;
  margin: 2rem auto 1rem;
  padding: 0.8rem 2.5rem;
  background: rgba(42,30,16,0.6);
  border: 2px solid #4A3724;
  border-radius: 4px;
  color: #C8B48A;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.load-more-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #4A3724;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.load-more-btn:hover::before { transform: scaleX(1); }
.load-more-btn:hover { color: #E8DCC0; border-color: #5A4428; }



/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1600px) {
	.hero-logo {margin-top: 0;}
	
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 60px 1fr 60px; }
  .hero-left, .hero-right { width: 60px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; justify-content: center; }
  .content-inner {  max-width: 68vw;}
  .hero-logo {margin-top: 0;}
}

@media (max-width: 500px) {
  .hero { grid-template-columns: 30px 1fr 30px; }
  .hero-left, .hero-right { width: 30px; }
  .body-left, .body-right, .footer-left, .footer-right { width: 30px; }
  .site-nav { padding: 0.4rem 0.8rem; }
  .nav-links { gap: 0.6rem; }
  .nav-links a { font-size: 0.55rem; letter-spacing: 0.1em; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 1rem; justify-content: center; align-items: center; align-content: center;}
  .content-inner { padding: 1.5rem 1rem; max-width: 75vw;}
  .card-title-overlay { font-size: 0.5rem; }
}
    
