/* =========================================================
   01. THEME VARIABLES
========================================================= */
:root{
  --accent:#c49a52;
  --accent-hover:#d7aa5c;
  --bg:#181512;
  --panel:rgba(24,22,20,.82);
  --panel-strong:rgba(31,31,31,.92);
  --text:#f3f3f0;
  --muted:#b8b4ad;
  --line:rgba(255,255,255,.10);
  --line-strong:rgba(255,255,255,.14);
  --input-bg:#111111;
  --ink:#0d1714;
  --radius-lg:24px;
  --radius-md:18px;
  --radius-sm:14px;
  --shadow:0 18px 40px rgba(0,0,0,.22);
}

/* =========================================================
   02. BASE / RESET
========================================================= */
*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  min-height:100vh;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.025), transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(0,0,0,.10), transparent 50%),
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,.012) 0px,
      rgba(255,255,255,.012) 1px,
      transparent 1px,
      transparent 3px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.008) 0px,
      rgba(255,255,255,.008) 1px,
      transparent 1px,
      transparent 4px
    ),
    var(--bg);
  color:var(--text);
  line-height:1.5;
}

img{
  display:block;
  max-width:100%;
}

a{
  color:inherit;
}

button,
input,
textarea,
select{
  font:inherit;
}

/* =========================================================
   03. SHARED TYPOGRAPHY
========================================================= */
.section-label,
.eyebrow{
  margin:0 0 10px;
  color:var(--accent);
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}

h1,
h2,
h3,
p{
  margin-top:0;
}

.text-link,
.content-card a,
.signup-consent a,
.signup-disclaimer a{
  color:var(--accent);
  font-weight:800;
  text-decoration:underline;
  text-underline-offset:3px;
}

.text-link:hover,
.content-card a:hover,
.signup-consent a:hover,
.signup-disclaimer a:hover{
  color:var(--accent-hover);
}

/* =========================================================
   04. LINKS / HOME PAGE
========================================================= */
.links-page{
  min-height:100vh;
  display:block;
}

.links-shell{
  width:min(100%, 560px);
  margin:0 auto;
  padding:32px 18px 48px;
}

.links-hero{
  margin-bottom:22px;
  text-align:center;
}

.links-avatar{
  width:132px;
  height:132px;
  margin:0 auto 18px;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:999px;
  background:#111;
  box-shadow:var(--shadow);
}

.links-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.links-title{
  margin:.3rem 0 .5rem;
  font-size:clamp(2.1rem, 7vw, 4.6rem);
  line-height:.98;
}

.links-subtitle{
  max-width:34ch;
  margin:0 auto;
  color:var(--muted);
}

.links-list{
  display:grid;
  gap:12px;
  margin-top:24px;
}

.links-button{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:58px;
  padding:0 20px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius-md);
  color:var(--text);
  background:var(--panel);
  font-weight:700;
  letter-spacing:.02em;
  text-align:center;
  text-decoration:none;
  cursor:pointer;
  transition:transform .2s ease, border-color .2s ease, background .2s ease;
}

.links-button:hover,
.links-button:focus-visible{
  transform:translateY(-2px);
  border-color:var(--line-strong);
  background:var(--panel-strong);
  outline:none;
}

.links-button.primary,
.links-button-primary{
  border-color:transparent;
  color:var(--ink);
  background:var(--accent);
  font-weight:800;
}

.links-button.primary:hover,
.links-button-primary:hover,
.links-button-primary:focus-visible{
  background:var(--accent-hover);
}

.links-button.secondary{
  opacity:.78;
  font-size:.94rem;
}

/* =========================================================
   05. SIGNUP FORM
========================================================= */
.signup-form{
  display:grid;
  gap:14px;
  margin:14px 0;
  padding:22px;
  border:1px solid rgba(196,154,82,.34);
  border-radius:var(--radius-lg);
  background:rgba(0,0,0,.22);
}

.signup-copy{
  text-align:center;
}

.signup-title{
  margin:0;
  font-size:clamp(1.5rem, 5vw, 2.15rem);
  line-height:1.05;
}

.signup-description,
.signup-disclaimer{
  margin:8px 0 0;
  color:var(--muted);
  font-size:.9rem;
  line-height:1.5;
}

.signup-field{
  display:grid;
  gap:7px;
  color:var(--muted);
  font-size:.86rem;
  font-weight:700;
}

.signup-field input,
.booking-field input,
.booking-field textarea{
  width:100%;
  min-width:0;
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--radius-sm);
  padding:14px 16px;
  color:var(--text);
  background:var(--input-bg);
}

.signup-field input::placeholder,
.booking-field input::placeholder,
.booking-field textarea::placeholder{
  color:rgba(243,243,240,.52);
}

.signup-field input:focus,
.booking-field input:focus,
.booking-field textarea:focus{
  border-color:var(--accent);
  outline:none;
}

.signup-consent{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:10px;
  align-items:start;
  color:var(--muted);
  font-size:.82rem;
  line-height:1.45;
}

.signup-consent input{
  margin-top:3px;
  accent-color:var(--accent);
}

.signup-submit{
  border:0;
}

/* =========================================================
   06. CONTENT / LEGAL PAGES
========================================================= */
.content-page{
  min-height:100vh;
  padding:32px 18px 48px;
}

.content-shell{
  width:min(100%, 760px);
  margin:0 auto;
}

.content-card{
  padding:28px;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  background:var(--panel);
  box-shadow:var(--shadow);
}

.content-title{
  margin:0 0 12px;
  font-size:clamp(2rem, 6vw, 3.6rem);
  line-height:1;
}

.content-subtitle,
.content-card p,
.content-card li{
  color:var(--muted);
  line-height:1.65;
}

.content-card h2{
  margin:30px 0 8px;
  font-size:1.25rem;
}

.content-card h2:first-child{
  margin-top:0;
}

.content-card ul,
.content-card ol{
  padding-left:1.25rem;
}

/* =========================================================
   07. BOOKING PAGE
========================================================= */
.booking-page{
  min-height:100vh;
  padding:32px 18px 48px;
}

.booking-shell{
  width:min(100%, 760px);
  margin:0 auto;
}

.booking-card{
  padding:28px;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  background:var(--panel);
  box-shadow:var(--shadow);
}

.booking-title{
  margin:0 0 12px;
  font-size:clamp(2rem, 6vw, 3.6rem);
  line-height:1;
}

.booking-subtitle,
.booking-card p{
  color:var(--muted);
  line-height:1.65;
}

.booking-form{
  display:grid;
  gap:14px;
  margin-top:22px;
}

.booking-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}

.booking-field{
  display:grid;
  gap:7px;
  color:var(--muted);
  font-size:.86rem;
  font-weight:700;
}

.booking-field textarea{
  min-height:160px;
  resize:vertical;
}

.booking-actions{
  margin-top:6px;
}

.booking-turnstile{
  margin-top:4px;
}

#booking-submit:disabled{
  opacity:.55;
  cursor:not-allowed;
}

@media (min-width:720px){
  .booking-grid{
    grid-template-columns:1fr 1fr;
  }

  .booking-field-full{
    grid-column:1 / -1;
  }
}

/* =========================================================
   08. TOUR PAGE
========================================================= */
.tour-page{
  min-height:100vh;
  padding:32px 18px 48px;
}

.tour-shell{
  width:min(100%, 760px);
  margin:0 auto;
}

.tour-card{
  padding:28px;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  background:var(--panel);
  box-shadow:var(--shadow);
}

.tour-title{
  margin:0 0 12px;
  font-size:clamp(2rem, 6vw, 3.6rem);
  line-height:1;
}

.tour-subtitle,
.tour-card p{
  color:var(--muted);
  line-height:1.65;
}

.bandsintown-embed{
  width:100%;
  margin-top:22px;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  background:#ffffff;
}

/* =========================================================
   09. FOOTER / SMALL DETAILS
========================================================= */
.links-footer,
.content-footer{
  margin-top:28px;
  color:var(--muted);
  font-size:.82rem;
  line-height:1.6;
  text-align:center;
}

.footer-copyright{
  margin:0;
}

.links-footer-brand{
  display:inline-block;
  font-size:.75rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(255,255,255,.46);
}
/* =========================================================
   10. ACCESSIBILITY
========================================================= */
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  border:0;
}

/* =========================================================
   11. MOBILE TUNING
========================================================= */
@media (max-width:520px){
  .links-shell,
  .content-page,
  .booking-page,
  .tour-page{
    padding:24px 14px 40px;
  }

  .links-avatar{
    width:112px;
    height:112px;
  }

  .signup-form,
  .content-card,
  .booking-card,
  .tour-card{
    padding:20px;
  }
}
/* =========================================================
   12. HEART EFFECT (*)SUBTLE)
========================================================= */
.heart{
  position:relative;
  display:inline-block;
  color:var(--text);
  margin-left:6px;
  transform-origin:center;
  animation:heartbeat 4.2s ease-in-out infinite;
  text-shadow:
    0 0 4px rgba(255,255,255,.25),
    0 0 8px rgba(184,92,74,.25);
}

.heart::before,
.heart::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  border:1.2px solid rgba(255,245,240,.55);
  border-bottom:none;
  border-left-color:transparent;
  border-right-color:transparent;
  border-radius:999px 999px 0 0;
  opacity:0;
  pointer-events:none;
  transform-origin:center bottom;
  filter:
    drop-shadow(0 0 4px rgba(255,255,255,.35))
    drop-shadow(0 0 8px rgba(184,92,74,.35));
}

.heart::before{
  width:1.3em;
  height:.75em;
  transform:translate(-50%,-130%) scale(.8);
  animation:heartsignal1 4.2s ease-out infinite;
}

.heart::after{
  width:1.9em;
  height:1.05em;
  transform:translate(-50%,-138%) scale(.8);
  animation:heartsignal2 4.2s ease-out infinite;
  animation-delay:2.1s;
}

@keyframes heartbeat{
  0%   { transform:scale(1); }
  10%  { transform:scale(1.08); }
  18%  { transform:scale(1); }
  24%  { transform:scale(1.05); }
  40%  { transform:scale(1); }
  100% { transform:scale(1); }
}

@keyframes heartsignal1{
  0%{
    transform:translate(-50%,-130%) scale(.8);
    opacity:0;
  }
  14%{
    opacity:.55;
  }
  45%{
    opacity:.22;
  }
  100%{
    transform:translate(-50%,-155%) scale(1.55);
    opacity:0;
  }
}

@keyframes heartsignal2{
  0%{
    transform:translate(-50%,-138%) scale(.8);
    opacity:0;
  }
  18%{
    opacity:.42;
  }
  48%{
    opacity:.16;
  }
  100%{
    transform:translate(-50%,-165%) scale(1.65);
    opacity:0;
  }
}

@media (max-width:768px){
  .heart::before,
  .heart::after{
    border-width:1.4px;
  }
}
/* =========================================================
   13. FOOTER LINK
========================================================= */
.footer-link{
  color: inherit;
  text-decoration: none;
  transition: opacity .2s ease;
}

.footer-link:hover{
  opacity: .8;
}
/* =========================================================
   14. BAND PHOTO
========================================================= */
.links-band-photo {
  width: 100%;
  margin: 1.5rem 0 2rem;
  text-align: center;
}

.links-band-photo img {
  display: block;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}