body {
  margin: 0;
  font-family: "Georgia", serif;
  background-color: #111;
  color: #f2f2f2;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

.hero {
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
              url('images/guitarheader.png');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;

  z-index: 1000;

  background-color: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(8px);

  padding: 20px 0;
}

.home-page .top-nav {
  left: auto;
  position: sticky;
  top: 0;
  width: 100%;
}

.logo {
  width: 460px;
  max-width: 90%;
  height: auto;
  margin-bottom: 24px;
}

.logo-link {
  display: inline-block;
}

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

.nav-links a {
  color: #d6b37a;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
  transition: 0.3s;
}

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

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 90px;
  max-width: 700px;
}

.home-page .hero-content {
  justify-content: flex-start;
}

.hero-content h1,
.hero-content h2 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: #ddd;
}

.button {
  display: inline-block;
  width: fit-content;
  background-color: #c49b63;
  color: #111;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: 0.3s;
}

.button:hover {
  background-color: #e0bb84;
}

section {
  padding: 80px 60px;
}

section {
  scroll-margin-top: 180px;
}

section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #d6b37a;
}

.content-page {
  padding-top: 220px;
}

.page-header,
.intro-section,
.text-section,
.model-list,
.contact-grid {
  max-width: 1120px;
  margin: 0 auto;
}

.page-header {
  padding-bottom: 50px;
}

.page-header h1 {
  color: #d6b37a;
  font-size: 4rem;
  line-height: 1.05;
  margin: 0 0 24px;
}

.page-header p,
.intro-copy p,
.text-section p {
  color: #d0d0d0;
  font-size: 1.16rem;
  line-height: 1.9;
}

.eyebrow {
  color: #e0c08d;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.split-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: center;
}

.split-header img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #333;
  object-fit: cover;
}

.intro-section {
  display: grid;
  gap: 46px;
}

.intro-copy {
  max-width: 820px;
}

.feature-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.feature-card,
.contact-card {
  background-color: #1a1a1a;
  border: 1px solid #2d2d2d;
  border-radius: 10px;
  color: #f2f2f2;
  overflow: hidden;
  text-decoration: none;
}

.feature-card {
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.feature-card:hover {
  border-color: #c49b63;
  transform: translateY(-4px);
}

.feature-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.feature-card h3,
.contact-card h2 {
  color: #e0c08d;
  margin: 0;
  padding: 24px 24px 8px;
}

.feature-card p,
.contact-card p {
  color: #ccc;
  margin: 0;
  padding: 0 24px 24px;
}

.contact-card {
  padding-bottom: 28px;
}

.contact-card a {
  color: #f0d3a2;
}

.contact-card .button {
  margin: 0 24px;
  color: #111;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 24px;
}

.button-row .button {
  margin: 0;
}

.secondary-button {
  background-color: transparent;
  border: 1px solid #c49b63;
  color: #f0d3a2 !important;
}

.secondary-button:hover {
  background-color: rgba(196, 155, 99, 0.12);
  color: #fff4dc !important;
}

.text-section {
  padding-top: 20px;
}

.model-list {
  display: grid;
  gap: 30px;
}

.model-list .horizontal-card {
  align-items: center;
}

.model-list .horizontal-card img {
  background-color: #101010;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  padding: 10px;
  width: 38%;
}

.cta-band {
  max-width: 980px;
  margin: 30px auto 0;
  text-align: center;
}

.cta-band p {
  color: #ccc;
  font-size: 1.12rem;
  margin: 0 auto 26px;
  max-width: 720px;
}

.about-container {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-top: 40px;
}

.about-image img {
  width: 420px;
  max-width: 100%;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  margin-top: 0;
}

.about-text p {
  margin-bottom: 24px;
  color: #d0d0d0;
  line-height: 1.9;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.gallery-item {
  background-color: #1a1a1a;
  border: 1px solid #2d2d2d;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.gallery-item h2,
.gallery-item h3 {
  padding: 20px 20px 10px;
  margin: 0;
  color: #e0c08d;
  font-size: 1.45rem;
}

.gallery-item p {
  padding: 0 20px 24px;
  margin: 0;
  color: #ccc;
  line-height: 1.6;
}

.horizontal-card {
  display: flex;
  gap: 30px;
  align-items: center;
}

.horizontal-card {
  background-color: #1b1b1b;
  padding: 24px;
  border: 1px solid #333;
  border-radius: 8px;
}

.horizontal-card h3 {
  color: #f0d3a2;
}

.horizontal-card img {
  width: 30%;
  height: 30%;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.card-content {
  flex: 1;
}

.price {
  color: #e0c08d;
  font-size: 1.35rem;
  font-weight: 600;
  margin: 18px 0 10px;
}

.spec-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.spec-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  color: #d6d6d6;
  line-height: 1.6;
}

.spec-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d6b37a;
}

.commission-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 260px 20px 120px;
}

.commission-page h1 {
  font-size: 4rem;
  margin-bottom: 30px;
  color: #d6b37a;
}

.commission-intro {
  font-size: 1.2rem;
  line-height: 1.9;
  color: #ccc;
  margin-bottom: 50px;
}

.inquiry-form {
  background-color: #151515;
  border: 1px solid #2d2d2d;
  border-radius: 12px;
  padding: 40px;
  max-width: 900px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  margin-bottom: 8px;
  color: #d6b37a;
  font-weight: bold;
  letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  background-color: #0f0f0f;
  border: 1px solid #333;
  color: #f2f2f2;
  font-family: inherit;
  font-size: 1rem;
  border-radius: 6px;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c49b63;
}

.turnaround-note {
  margin-top: 30px;
  color: #cfcfcf;
  line-height: 1.7;
}

.faq-section {
  margin-bottom: 46px;
}

.faq-section h2 {
  color: #d6b37a;
  font-size: 2rem;
  margin-bottom: 18px;
}

.faq-section details {
  background-color: #151515;
  border: 1px solid #2d2d2d;
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 18px 20px;
}

.faq-section summary {
  color: #f0d3a2;
  cursor: pointer;
  font-weight: bold;
}

.faq-section p {
  color: #ccc;
  margin: 12px 0 0;
}

.inquiry-form button {
  margin-top: 24px;
  background-color: #c49b63;
  color: #111;
  border: none;
  padding: 14px 32px;
  font-weight: bold;
  font-family: inherit;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
}

.inquiry-form button:hover {
  background-color: #e0bb84;
}

@media (max-width: 768px) {
  .inquiry-form {
    padding: 24px;
  }

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

  .content-page {
    padding-top: 190px;
  }

  .page-header h1,
  .commission-page h1 {
    font-size: 2.6rem;
  }

  .split-header {
    grid-template-columns: 1fr;
  }
}

footer {
  background-color: #0a0a0a;
  border-top: 1px solid #222;
  padding: 50px 60px;
}



.footer-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.footer-left h3 {
  margin-top: 0;
  color: #d6b37a;
}

.footer-left p {
  margin: 8px 0;
  color: #ccc;
}

.footer-center {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-center a {
  color: #d6b37a;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
  transition: 0.3s;
}

.footer-center a:hover {
  color: #f0d3a2;
}

.footer-right {
  display: flex;
  justify-content: flex-end;
}

.footer-right img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #333;
}

/* Mobile */

@media (max-width: 768px) {

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-right {
    justify-content: center;
  }

  .copyright {
  width: 100%;
  text-align: center;
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid #222;
  color: #777;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

  .horizontal-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .horizontal-card img {
    width: 100%;
    height: auto;
  }

  .model-list .horizontal-card img {
    max-height: none;
    width: 100%;
  }

}

@media (max-width: 768px) {

  nav {
    padding: 20px;
  }

  .hero-content {
    padding: 56px 20px 60px;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 2.5rem;
  }

  section {
    padding: 60px 20px;
  }

  .about-container {
    flex-direction: column;
  }

  .about-image img {
    width: 100%;
  }


}
