/* =========================================================
   GLOBAL FOUNDATION
========================================================= */
/* @font-face { */
/* font-family: "Siche";
  src: url("fonts/Siche-Text-v.0.3-Regular-Trial.otf ") format("opentype");
  font-weight: 300;
  font-style: normal;
} */
:root {
  --forest: #33422e;
  --moss: #5f6f45;
  --jade: #b8c6a5;

  --earth: #4b4330;

  --bronze: #8d6f3f;
  --brass: #b7924a;

  --parchment: #ece6d7;

  --charcoal: #181714;
  --deep-green: #1f2a20;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  line-height: 1.7;
}

.content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
}

section {
  margin-bottom: 32px;
}

h1 {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 12px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 80;
}
p {
  margin: 0 0 16px;
}

/* =========================================================
   NAVIGATION
========================================================= */

.nav {
  display: flex;
  justify-content: center;
  gap: 28px;

  position: sticky;
  top: 0;
  z-index: 100;

  padding: 18px;

  backdrop-filter: blur(12px);
}

.nav a {
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
}

/* =========================================================
   ABOUT PAGE
========================================================= */

body.home-body {
  background:
    linear-gradient(
      180deg,
      #152019 0%,
      #233227 40%,
      #324536 100%
    );

  color: var(--parchment);
  min-height: 100vh;
}

/* subtle pattern overlay */

body.home-body::before {
  content: "";

  position: fixed;
  inset: 0;

  background-image:
    linear-gradient(
      45deg,
      rgba(255,255,255,.015) 25%,
      transparent 25%,
      transparent 75%,
      rgba(255,255,255,.015) 75%
    );

  background-size: 80px 80px;

  pointer-events: none;
  z-index: -1;
}

/* =========================================================
   NAV
========================================================= */

.home-body .nav {
  background: rgba(24, 23, 20, 0.85);
  border-bottom: 1px solid rgba(183,146,74,.20);
}

.home-body .nav a {
  color: var(--jade);
}

.home-body .nav a:hover {
  color: var(--brass);
}

/* =========================================================
   PAGE LAYOUT
========================================================= */

.about-page {
  width: min(1200px, 92%);
  margin: 60px auto 80px;
}

.about-header {
  margin-bottom: 48px;
}

.about-header h1 {
  margin-bottom: 12px;
  letter-spacing: -2px;
  color: var(--parchment);
  font-size: clamp(3rem, 6vw, 4.5rem);
}

.about-header .tagline {
  font-size: 1.25rem;
  max-width: 650px;
  color: rgba(236,230,215,.85);
}

.about-content {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  align-items: start;
}

.about-photo {
  align-self: start;
}

.profile-photo {
  width: 100%;
  display: block;

  border-radius: 18px;

  box-shadow:
    0 16px 40px rgba(0,0,0,.35);

  border: 2px solid rgba(183,146,74,.25);
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* =========================================================
   CONTENT CARDS
========================================================= */

.card {
  padding: 32px;

  border-radius: 16px;

  backdrop-filter: blur(8px);

  transition: transform .3s ease;
}

.card:hover {
  transform: translateY(-3px);
}

/* moss */

.green-card {
  background: rgba(51,66,46,.75);
  border: 1px solid rgba(184,198,165,.12);
}

/* stained glass */

.blue-card {
  background: rgba(31,42,32,.75);
  border: 1px solid rgba(184,198,165,.12);
}

/* aged wood */

.brown-card {
  background: rgba(75,67,48,.75);
  border: 1px solid rgba(183,146,74,.12);

  margin-top: 42px;
}

/* brass accent */

.accent-card {
  background: rgba(141,111,63,.18);
  border: 1px solid rgba(183,146,74,.30);

  margin-top: 42px;
}
/* =========================================================
   SNAPSHOTS
========================================================= */

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.snapshot {
  aspect-ratio: 4 / 3;
  overflow: hidden;

  border-radius: 12px;

  background:
    linear-gradient(
      135deg,
      rgba(184,198,165,.15),
      rgba(183,146,74,.08)
    );

  border: 1px solid rgba(184,198,165,.10);
}

.snapshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition: transform .35s ease;
}

.snapshot:hover img {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .snapshot-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   TYPOGRAPHY
========================================================= */

.home-body h2 {
  color: var(--parchment);
  margin-bottom: 16px;
}

.home-body p {
  color: rgba(236,230,215,.85);
  line-height: 1.8;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

  .about-page {
    width: min(92%, 700px);
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-photo {
    position: static;
  }

  .about-header {
    text-align: center;
  }

  .about-header .tagline {
    margin: 0 auto;
  }

}
/* =========================================================
   PROFESSIONAL PAGE
========================================================= */

.professional-body {
  background:
    linear-gradient(
      180deg,
      #173548 0%,
      #23485c 40%,
      #35576d 100%
    );

  color: #eef6f8;
}

.professional-body .hero {
  text-align: center;
  padding-top: 100px;
}

.professional-body .nav {
  background: rgba(20, 40, 52, .85);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.professional-body .nav a {
  color: #dbeff4;
}

.professional-body .nav a:hover {
  color: #9ed8e5;
}
.prof-card {
  padding: 32px;
  border-radius: 18px;

  backdrop-filter: blur(10px);

  margin-bottom: 24px;
}

.prof-card-light {
  background: rgba(168,198,207,.12);
  border: 1px solid rgba(168,198,207,.15);
}

.prof-card-ocean {
  background: rgba(53,87,109,.35);
  border: 1px solid rgba(168,198,207,.12);
}

.prof-card-mist {
  background: rgba(220,231,234,.08);
  border: 1px solid rgba(220,231,234,.10);
}

.blog-feed {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.blog-card {
  display: block;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  background: rgba(255,255,255,0.05);
}

.blog-content {
  line-height: 1.6;
}

.blog-post-full {
  max-width: 700px;
  margin: 40px auto;
}
/* =========================================================
   MUSIC PAGE
========================================================= */

.music-body {

    background:
        radial-gradient(circle at top, #17345a 0%, #091322 45%, #040608 100%);

    color: #f6f3eb;
}
.music-body .nav a {
  color: #f6f3eb;
}
.music-body .nav {

  background: rgba(10, 18, 30, 0.65);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.music-body .nav a:hover {
  color: var(--brass);
}

.music-hero {
  padding-top: 20px;
}

.music-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
}

.music-tagline {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.15rem;
}

.music-cta {
  margin-top: 24px;
}

.music-intro {
  max-width: 750px;
  margin: 60px auto;
  text-align: center;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.track {
  background: rgba(10, 18, 30, 0.72);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(184, 198, 165, 0.15);

  padding: 24px;
  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.25);

  transition: 0.25s ease;
}

.track h3 {
  color: #f6f3eb;
  margin-top: 0;
}

.track p {
  color: rgba(246, 243, 235, 0.75);
}

.track:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 198, 165, 0.35);
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}
/* logo */

.logo {
  display: block;
  margin: 20px auto 8px auto;
  width: 200px;
  height: auto;
}

/* checkerboard */

.checkerboard {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 0;
}

.checkerboard.left,
.checkerboard.right {
  width: 160px;

  background-image:

    radial-gradient(circle, #111 2px, transparent 2px),
    radial-gradient(circle, #111 2px, transparent 2px);

  background-size:
    28px 28px,
    28px 28px;

  background-position:
    0 0,
    14px 14px;

  opacity: 0.18;
}

.checkerboard {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 0;
}

.checkerboard.left {
  left: 0;

  background-image:
    radial-gradient(circle, rgba(183,146,74,.45) 2px, transparent 2px),
    radial-gradient(circle, rgba(183,146,74,.45) 2px, transparent 2px),
    radial-gradient(circle, rgba(183,146,74,.25) 2px, transparent 2px),
    radial-gradient(circle, rgba(183,146,74,.25) 2px, transparent 2px);

  background-size: 28px 56px;
  background-position:
    0 0,
    14px 28px,
    14px 0,
    0 28px;

  opacity: .6;
}

.checkerboard.right {
  right: 0;

  background-image:
    radial-gradient(circle, rgba(183,146,74,.45) 2px, transparent 2px),
    radial-gradient(circle, rgba(183,146,74,.45) 2px, transparent 2px),
    radial-gradient(circle, rgba(183,146,74,.25) 2px, transparent 2px),
    radial-gradient(circle, rgba(183,146,74,.25) 2px, transparent 2px);

  background-size: 28px 56px;
  background-position:
    0 0,
    14px 28px,
    14px 0,
    0 28px;

  opacity: .6;
}

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

/* hero */

.music-body .hero {
  text-align: center;
}

/* about */

.about {
  text-align: center;
}

.about p {
  font-size: 1.15rem;
}

/* music catalog */

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



iframe {
  width: 100%;
  border-radius: 12px;
}

/* contact */

.contact {
  background: #111;
  color: white;

  text-align: center;

  border-radius: 20px;
  padding: 40px;
}

.contact p {
  color: #ccc;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

  h1 {
    font-size: 2.8rem;
  }

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

  .nav {
    gap: 14px;
    flex-wrap: wrap;
  }
}

@media (max-width: 1023px) {

  .checkerboard {
    display: none;
  }
}
/* =========================================================
   SHOP PAGE
========================================================= */

.shop-body {

    background:
        radial-gradient(circle at top, #17345a 0%, #091322 45%, #040608 100%);

    color: #f6f3eb;
}

.shop-body .nav {
    background: rgba(10,18,30,.65);
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.shop-body .nav a {
    color: #f6f3eb;
}

.shop-body .nav a:hover {
    color: var(--brass);
}

.shop-hero{
    text-align:center;
    padding-top:100px;
}

.shop-hero p{
    max-width:650px;
    margin:auto;
    color:rgba(246,243,235,.75);
}

.shop-grid{
    display:flex;
    justify-content:center;
    margin-top:60px;
}

.product-card {
    width: 360px;

    background: rgba(10, 18, 30, 0.72);
    border: 1px solid rgba(184, 198, 165, 0.15);
    border-radius: 18px;

    overflow: hidden;

    backdrop-filter: blur(12px);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);

    display: flex;
    flex-direction: column;

    transition: all 0.25s ease;
}

/* hover state */
.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(183, 146, 74, 0.4);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

/* IMAGE */
.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* CONTENT WRAPPER (THIS IS THE KEY FIX) */
.product-info {
    padding: 20px 20px 22px;

    display: flex;
    flex-direction: column;

    gap: 10px; /* fixes squished layout */
}

/* TEXT */
.product-info h3 {
    margin: 0;
    text-align: left;
}

.product-info p {
    margin: 0;
    text-align: left;
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.4;
}

/* PRICE */
.product-price {
    margin-top: 6px;
    font-size: 1.4rem;
    color: var(--brass);
    font-family: "Cormorant Garamond", serif;
}

/* BUTTON */
.buy-button {
    align-self: flex-start;

    margin-top: 12px;

    padding: 12px 18px;

    border: none;
    border-radius: 10px;

    background: var(--brass);
    color: var(--charcoal);

    font-size: 1rem;
    font-weight: 700;

    cursor: pointer;

    transition: all 0.25s ease;

    letter-spacing: 0.3px;
    text-transform: uppercase;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* BUTTON HOVER */
.buy-button:hover {
    background: #caa861;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}
/* =========================================================
   OTHER INTERESTS PAGE
========================================================= */

.other-body {
  background:
    radial-gradient(
      circle at top,
      rgba(201, 28, 38, 0.12),
      transparent 35%
    ),
    linear-gradient(
      180deg,
      #050505 0%,
      #0f0f0f 100%
    );

  color: #f2ece1;
}

/* NAV */

.other-body .nav {
  background: rgba(0,0,0,.75);
  border-bottom: 1px solid rgba(199,164,93,.15);
}

.other-body .nav a {
  color: #e6e0d4;
}

.other-body .nav a:hover {
  color: #d7b979;
}

/* HERO */

.other-body .hero {
  text-align: center;
  padding-top: 100px;
}

.other-body h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 1px;

  margin-bottom: 10px;
}

.other-body .hero p {
  max-width: 700px;
  margin: auto;

  color: rgba(242,236,225,.75);

  font-size: 1.1rem;
}

/* SECTION DIVIDER */

.section-divider {
  width: 140px;
  height: 1px;

  margin: 50px auto;

  background: linear-gradient(
    to right,
    transparent,
    rgba(199,164,93,.6),
    transparent
  );
}

/* CARDS */

.other-card {
  background: rgba(255,255,255,.03);

  border: 1px solid rgba(199,164,93,.10);

  border-radius: 18px;

  padding: 32px;

  margin-bottom: 24px;

  backdrop-filter: blur(10px);

  transition: all .25s ease;
}

.other-card:hover {
  transform: translateY(-4px);

  border-color: rgba(215,185,121,.30);

  box-shadow:
    0 8px 24px rgba(0,0,0,.25);
}

.other-card h2 {
  font-family: "Cormorant Garamond", serif;

  color: #d7b979;

  font-size: 2rem;

  margin-top: 0;
}

.other-card p {
  color: rgba(242,236,225,.80);
}

/* OPTIONAL SUBTLE RED GLOW */

.other-body::before {
  content: "";

  position: fixed;

  top: -250px;
  left: 50%;

  transform: translateX(-50%);

  width: 600px;
  height: 600px;

  background:
    radial-gradient(
      circle,
      rgba(201,28,38,.08),
      transparent 70%
    );

  pointer-events: none;

  z-index: -1;
}