* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", "Segoe UI", sans-serif;
}

body {
  background:
    linear-gradient(
      135deg,
      #f8f4ef,
      #efe4d6,
      #e7d8c6
    );

  color: #241b17;
}

/* HEADER */
/* HEADER */
.site-header {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, 92%);
  z-index: 99;
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.72);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(216, 188, 148, 0.42);
  box-shadow: 0 24px 70px rgba(29, 22, 19, 0.18);
}

.container {
  width: 94%;
  margin: auto;
}

.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #d8bc94;
  background: linear-gradient(145deg, #251b17, #5a4030);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
  font-size: 22px;
}

.site-title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 21px;
  letter-spacing: 1px;
  color: #241b17;
}

.site-tag {
  margin: 1px 0 0;
  font-size: 10px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: #746962;
}

/* NAV */
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav .nav-link {
  text-decoration: none;
  color: #46352c;
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.site-nav .nav-link:hover {
  color: #7b5a42;
}

.nav-cta {
  text-decoration: none;
  color: white;
  padding: 13px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d8bc94, #8a623d);
  box-shadow: 0 16px 34px rgba(123, 90, 66, 0.32);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* HERO */

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 8%;
  gap: 50px;
}

.hero-text {
  max-width: 550px;
}

.tag {
  display: inline-block;
  padding: 8px 18px;

  background: rgba(255, 255, 255, 0.55);

  border-radius: 30px;

  color: #9b744b;

  font-size: 14px;

  margin-bottom: 20px;

  box-shadow:
    0 8px 25px rgba(120, 80, 45, 0.12);

  backdrop-filter: blur(10px);
}

h1 {
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #241b17;
  font-family: "Playfair Display", serif;
}

h1 span {
  color: #b88a5a;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #6f6258;
  margin-bottom: 35px;
}

/* BUTTONS */

.buttons a {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  margin-right: 15px;
  font-weight: 600;
}

.btn-main {
  background:
    linear-gradient(
      135deg,
      #c59a6d,
      #8a623d
    );

  color: white;

  box-shadow:
    0 12px 30px rgba(138, 98, 61, 0.28);
}

.btn-soft {
  background: rgba(255,255,255,0.7);
  color: #7b5b42;
  backdrop-filter: blur(10px);
}

/* PIANO CARD */

.piano-card {
  width: 430px;
  padding: 35px;
  border-radius: 35px;

  background:
    rgba(255, 250, 243, 0.6);

  backdrop-filter: blur(18px);

  box-shadow:
    0 25px 60px rgba(70, 45, 25, 0.14);

  border:
    1px solid rgba(190, 155, 120, 0.2);

  text-align: center;
}

/* PIANO */

.piano {
  height: 190px;

  background:
    linear-gradient(
      to bottom,
      #fffaf5,
      #e8d9c7
    );

  border-radius: 25px;

  padding: 25px 20px 10px;

  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;

  position: relative;
}

.key {
  width: 38px;
  height: 120px;

  background: white;

  border-radius: 0 0 10px 10px;

  box-shadow:
    inset 0 -8px 12px rgba(0,0,0,0.08);
}

.black {
  width: 24px;
  height: 78px;

  background: #2a1f19;

  margin: 0 -16px;

  align-self: flex-start;

  z-index: 2;

  border-radius: 0 0 8px 8px;
}

.piano-card h2 {
  margin-top: 28px;
  font-size: 24px;
  color: #3a2921;
  font-family: "Playfair Display", serif;
}

.piano-card p {
  margin-top: 10px;
  color: #76695f;
}

/* PRODUCTS */

.products {
  padding: 70px 8%;
  text-align: center;
}

.products h2 {
  font-size: 38px;
  margin-bottom: 15px;
  color: #2d211c;
  font-family: "Playfair Display", serif;
}

.products > p {
  color: #76695f;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns:
    repeat(auto-fit, minmax(240px, 1fr));

  gap: 28px;
}

.item {
  background:
    rgba(255,255,255,0.58);

  border-radius: 28px;

  padding: 28px;

  border:
    1px solid rgba(190,155,120,0.16);

  backdrop-filter: blur(14px);

  box-shadow:
    0 15px 35px rgba(70, 45, 25, 0.08);

  transition: 0.3s;
}

.item:hover {
  transform: translateY(-8px);

  box-shadow:
    0 24px 50px rgba(70,45,25,0.16);
}

.icon {
  font-size: 42px;
  margin-bottom: 18px;
}

.item h3 {
  color: #3a2921;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

.item p {
  color: #76695f;
  line-height: 1.6;
}

/* FOOTER */

footer {
  text-align: center;
  padding: 35px;
  color: #8c7a6d;
}

/* MOBILE */

@media (max-width: 768px) {

  .site-header {
    top: 500px;
    width: 96%;
    border-radius: 20px;
  }

  .header-inner {
    height: auto;
    min-height: 65px;
    padding: 12px 15px;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .site-title {
    font-size: 15px;
  }

  .site-tag {
    display: none;
  }

  .site-nav {
    gap: 6px;
  }

  .site-nav .nav-link {
    font-size: 9px;
    letter-spacing: 0.5px;
  }

  .nav-cta {
    font-size: 9px;
    padding: 8px 12px;
  }

  .hero {
    padding-top: 120px;
  }
}