/* ============================================================
   Liaison Guitars — Main Stylesheet
   ============================================================ */

/* --- Reset & Base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #0b0b0b;
  background: #fdf7f2;
}

@font-face {
  font-family: 'Montserrat';
  src: url('Montserrat-Regular.woff2') format('woff2'),
       url('Montserrat-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('Montserrat-Bold.woff2') format('woff2'),
       url('Montserrat-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

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

ul { list-style: none; }

/* --- Visually Hidden (for SEO headings) ------------------- */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* --- Layout helpers --------------------------------------- */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5%;
  background: rgba(11, 11, 11, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.nav-logo img {
  height: 56px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fdf7f2;
  transition: color 0.2s;
}

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

.nav-links .btn-inquire {
  border: 1px solid #dfc6a9;
  padding: 8px 22px;
  color: #dfc6a9;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}

.nav-links .btn-inquire:hover {
  background: #dfc6a9;
  color: #0b0b0b;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #fdf7f2;
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 70vh;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/lgmainimage-1905.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.hero-tagline {
  font-size: clamp(1.1rem, 3vw, 2rem);
  font-weight: 700;
  color: #fdf7f2;
  letter-spacing: 0.03em;
  line-height: 1.5;
  margin: 0 auto 36px;
}

.tagline-line {
  display: block;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .tagline-line { white-space: normal; }
}

.hero-nav-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-nav-links a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fdf7f2;
  border-bottom: 1px solid #dfc6a9;
  padding-bottom: 3px;
  transition: color 0.2s;
}

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

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */
section { padding: 90px 0; }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #52646f;
  margin-bottom: 14px;
}

.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 32px;
  color: #0b0b0b;
}

.divider {
  width: 48px;
  height: 2px;
  background: #dfc6a9;
  margin-bottom: 32px;
}

/* ============================================================
   OUR STORY
   ============================================================ */
.our-story {
  background: #fdf7f2;
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.story-text p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 18px;
}

.story-text ul {
  margin: 0 0 18px 20px;
}

.story-text ul li {
  font-size: 0.95rem;
  color: #333;
  padding: 4px 0;
  list-style: disc;
}

.story-signature {
  margin-top: 28px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #52646f;
  letter-spacing: 0.06em;
}

.story-aside {
  position: sticky;
  top: 100px;
}

.story-aside img {
  width: 100%;
  border-radius: 2px;
  object-fit: cover;
  cursor: default;
}

.story-aside-sketch {
  margin-top: 28px;
}

.story-aside-sketch img {
  width: 100%;
  border-radius: 2px;
  object-fit: cover;
  cursor: default;
}

.story-aside-caption {
  font-size: 0.75rem;
  color: #52646f;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 12px;
  text-align: center;
}

/* ============================================================
   OUR INSTRUMENTS
   ============================================================ */
.our-instruments {
  background: #0b0b0b;
  color: #fdf7f2;
}

.our-instruments .section-label { color: #dfc6a9; }
.our-instruments .section-heading { color: #fdf7f2; }

.instruments-intro {
  font-size: 1rem;
  color: #c0bfc1;
  max-width: 600px;
  margin-bottom: 64px;
}

/* Individual instrument */
.instrument {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 96px;
}

.instrument:last-child { margin-bottom: 0; }

.instrument.reverse { direction: rtl; }
.instrument.reverse > * { direction: ltr; }

.instrument-name {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #fdf7f2;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

/* Slick Carousel overrides */
.instrument-gallery { position: relative; }

.instrument-gallery .slick-slider { pointer-events: auto; }

.instrument-gallery .slick-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 2px;
}

.instrument-gallery .slick-prev,
.instrument-gallery .slick-next {
  z-index: 10;
  width: 36px; height: 36px;
}

.instrument-gallery .slick-prev { left: 10px; }
.instrument-gallery .slick-next { right: 10px; }

.instrument-gallery .slick-prev:before,
.instrument-gallery .slick-next:before {
  font-size: 24px;
  color: #dfc6a9;
  opacity: 0.85;
}

.instrument-gallery .slick-dots { bottom: -28px; }

.instrument-gallery .slick-dots li button:before {
  color: #dfc6a9;
  opacity: 0.5;
  font-size: 8px;
}

.instrument-gallery .slick-dots li.slick-active button:before {
  opacity: 1;
}

/* Specs */
.specs-accordion { margin-top: 48px; }

.specs-group {
  border-top: 1px solid #333;
  padding: 18px 0;
}

.specs-group:last-child { border-bottom: 1px solid #333; }

.specs-group-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #dfc6a9;
  margin-bottom: 14px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.specs-table tr { border-bottom: 1px solid rgba(255,255,255,0.06); }
.specs-table tr:last-child { border-bottom: none; }

.specs-table td {
  padding: 7px 0;
  vertical-align: top;
  color: #c0bfc1;
  line-height: 1.5;
}

.specs-table td:first-child {
  font-weight: 700;
  color: #fdf7f2;
  width: 44%;
  padding-right: 16px;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: #52646f;
  color: #fdf7f2;
  text-align: center;
  padding: 80px 0;
}

.cta-band h2 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.cta-band p {
  font-size: 0.95rem;
  color: rgba(253,247,242,0.8);
  margin-bottom: 36px;
}

.btn-primary {
  display: inline-block;
  background: #dfc6a9;
  color: #0b0b0b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 42px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #fdf7f2;
  color: #0b0b0b;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0b0b0b;
  color: #fdf7f2;
  padding: 60px 0 36px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo img { height: 64px; width: auto; margin-bottom: 16px; }

.footer-address {
  font-size: 0.82rem;
  color: #c0bfc1;
  line-height: 1.8;
}

.footer-nav-heading {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #dfc6a9;
  margin-bottom: 16px;
}

.footer-nav a {
  display: block;
  font-size: 0.82rem;
  color: #c0bfc1;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-nav a:hover { color: #fdf7f2; }

.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 8px;
}

.footer-social a img {
  width: 22px;
  height: 22px;
  opacity: 0.7;
  transition: opacity 0.2s;
  filter: brightness(0) invert(1);
}

.footer-social a:hover img { opacity: 1; }

.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 0.74rem;
  color: #52646f;
}

.footer-bottom a {
  color: #52646f;
  transition: color 0.2s;
}

.footer-bottom a:hover { color: #dfc6a9; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.page-hero {
  padding-top: 120px;
  padding-bottom: 60px;
  background: #0b0b0b;
  color: #fdf7f2;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 1rem;
  color: #c0bfc1;
  max-width: 540px;
  margin: 0 auto;
}

.contact-section {
  padding: 80px 0 100px;
  background: #fdf7f2;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0b0b0b;
}

.contact-info p {
  font-size: 0.92rem;
  color: #333;
  margin-bottom: 16px;
  line-height: 1.7;
}

.contact-info a {
  color: #52646f;
  font-weight: 700;
  border-bottom: 1px solid #dfc6a9;
  transition: color 0.2s;
}

.contact-info a:hover { color: #0b0b0b; }

.contact-info .contact-note {
  font-size: 0.8rem;
  color: #52646f;
  margin-top: 28px;
  padding: 16px;
  border-left: 3px solid #dfc6a9;
  background: rgba(223,198,169,0.12);
}

/* Form */
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #52646f;
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.88rem;
  color: #0b0b0b;
  background: #fff;
  border: 1px solid #dfc6a9;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #52646f;
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-honeypot { display: none; }

.form-submit { margin-top: 8px; }

.form-submit .btn-primary { width: 100%; text-align: center; font-size: 0.82rem; }

.form-success {
  display: none;
  background: rgba(82,100,111,0.12);
  border: 1px solid #52646f;
  padding: 20px 24px;
  border-radius: 2px;
  color: #52646f;
  font-size: 0.9rem;
  margin-top: 20px;
  text-align: center;
}

/* ============================================================
   LEGAL / PRIVACY PAGES
   ============================================================ */
.legal-section {
  padding: 80px 0 100px;
  background: #fdf7f2;
}

.legal-content {
  max-width: 760px;
}

.legal-content h2 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 36px 0 12px;
  color: #0b0b0b;
}

.legal-content h2:first-of-type { margin-top: 0; }

.legal-content p {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 14px;
  line-height: 1.75;
}

.legal-content ul {
  margin: 0 0 16px 20px;
}

.legal-content ul li {
  font-size: 0.9rem;
  color: #333;
  list-style: disc;
  padding: 3px 0;
  line-height: 1.7;
}

.legal-content a { color: #52646f; border-bottom: 1px solid #dfc6a9; }
.legal-content a:hover { color: #0b0b0b; }

.effective-date {
  font-size: 0.78rem;
  color: #52646f;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .story-inner { grid-template-columns: 1fr; gap: 40px; }
  .story-aside { position: static; }

  .instrument {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr !important;
  }

  .instrument.reverse > * { direction: ltr; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  section { padding: 60px 0; }

  .site-nav { padding: 14px 5%; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(11,11,11,0.97);
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 99;
  }

  .nav-links.open { display: flex; }

  .nav-links a { font-size: 1rem; }

  .nav-toggle { display: flex; z-index: 101; }

  .contact-form .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .instrument-gallery .slick-slide img { height: 280px; }
}

/* ============================================================
   FEATURED AERIAL SHOT + LIGHTBOX
   ============================================================ */
.instrument-featured {
  margin-top: 56px;
  grid-column: 1 / -1;
}

.instrument-featured a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: #0b0b0b;
}

.instrument-featured img {
  width: 100%;
  max-height: 640px;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}

.instrument-featured a:hover img {
  transform: scale(1.02);
}

.featured-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
  background: rgba(0, 0, 0, 0.45);
}

.instrument-featured a:hover .featured-overlay { opacity: 1; }

.instrument-featured-caption {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #dfc6a9;
  text-align: center;
  margin-top: 18px;
}

.instrument.reverse .instrument-name { text-align: right; }

.featured-overlay span {
  color: #fdf7f2;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid #dfc6a9;
  padding: 11px 28px;
  border-radius: 2px;
}

/* ============================================================
   MAGNIFIC POPUP — Image Lightbox
   ============================================================ */
.mfp-bg { top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.88; }
.mfp-wrap { top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:none!important; }
.mfp-container { text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;box-sizing:border-box; }
.mfp-container:before { content:'';display:inline-block;height:100%;vertical-align:middle; }
.mfp-content { position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045; }
.mfp-hide { display:none!important; }
.mfp-close { width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.7;color:#fff;font-size:28px;font-family:Arial,sans-serif;cursor:pointer;background:none;border:none;padding:0; }
.mfp-close:hover { opacity:1; }
.mfp-image-holder .mfp-close { right:-6px;padding-right:6px;width:100%;text-align:right; }
.mfp-figure { line-height:0; }
.mfp-image-holder .mfp-content { max-width:100%; }
img.mfp-img { width:auto;max-width:100%;height:auto;display:block;box-sizing:border-box;padding:40px 0;margin:0 auto; }
.mfp-bottom-bar { margin-top:-36px;position:absolute;top:100%;left:0;width:100%; }
.mfp-title { text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;font-family:'Montserrat',Arial,sans-serif;font-size:.82rem; }
.mfp-preloader { color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1044; }
.mfp-s-ready .mfp-preloader { display:none; }
.mfp-s-error .mfp-content { display:none; }
