:root {
      --bg: #050302;
      --gold: #d2a35a;
      --gold-light: #efc67d;
      --gold-soft: #e4bc7c;
      --gold-line: rgba(210, 163, 90, 0.5);
      --text: #f0d8ad;
      --max-width: 1280px;
    }

    * {
      box-sizing: border-box;
    }

    html,
    body {
      margin: 0;
      min-height: 100%;
      background-color: var(--bg);
      color: var(--text);
      font-family: "Cormorant Garamond", serif;
    }

    body {
      overflow-x: hidden;
      background-image:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.18) 22%, rgba(0, 0, 0, 0.42) 100%),
        radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.1) 58%, rgba(0, 0, 0, 0.35) 100%),
        url("./images/maestro-background.png");
      background-position: center top, center center, center top;
      background-repeat: no-repeat, no-repeat, no-repeat;
      background-size: auto, auto, cover;
      background-attachment: scroll;
    }

    a,
    a:visited,
    a:hover,
    a:active {
      color: var(--text);
      text-decoration: none;
    }

    /* MAESTRO HOMEPAGE REFINEMENT */

.maestro-hero-section {
  text-align: center;
  padding: 90px 24px 40px;
}

h1.hero-title {
  margin: 0 0 18px;
  font-family: 'Cinzel', serif;
  font-size: clamp(4.6rem, 11vw, 10.5rem);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: 0.055em;
  color: #f3c978;
  text-shadow:
    0 0 22px rgba(218, 164, 73, 0.18),
    0 12px 50px rgba(0, 0, 0, 0.62);
}

.hero-hook {
  max-width: 760px;
  margin: 0 auto 42px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.55rem, 2.6vw, 2.5rem);
  line-height: 1.3;
  font-weight: 400;
  color: rgba(245, 231, 202, 0.92);
  letter-spacing: 0.04em;
  text-align: center;
  text-shadow: 0 0 22px rgba(0, 0, 0, 0.55);
}

.book-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.book-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(520px, 80vw);
  height: min(520px, 80vw);
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(221, 168, 73, 0.2),
    rgba(221, 168, 73, 0.06) 38%,
    transparent 70%
  );
  filter: blur(36px);
  z-index: 0;
  pointer-events: none;
}

.book-image {
  position: relative;
  z-index: 1;
}

.maestro-story {
  max-width: 920px;
  margin: 70px auto 90px;
  padding: 48px 58px;
  background:
    linear-gradient(
      180deg,
      rgba(20, 9, 3, 0.56),
      rgba(8, 3, 1, 0.38)
    );
  border: 1px solid rgba(213, 166, 82, 0.22);
  border-radius: 24px;
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.35),
    inset 0 0 40px rgba(255, 205, 112, 0.035);
  backdrop-filter: blur(3px);
}

.maestro-story::before,
.maestro-story::after {
  content: "";
  display: block;
  width: 110px;
  height: 1px;
  margin: 0 auto 34px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(214, 166, 82, 0.7),
    transparent
  );
}

.maestro-story::after {
  margin: 34px auto 0;
}

.maestro-story p {
  margin: 0 auto 30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.75;
  font-weight: 400;
  text-align: center;
  color: rgba(249, 238, 220, 0.92);
  letter-spacing: 0.018em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

.maestro-story p:last-child {
  margin-bottom: 0;
}

.maestro-story em,
.maestro-newsletter em {
  color: rgba(247, 204, 126, 0.96);
  font-style: italic;
}

.maestro-newsletter {
  max-width: 980px;
  margin: 0 auto 70px;
  padding: 58px 34px 46px;
  text-align: center;
  border-top: 1px solid rgba(213, 166, 82, 0.22);
  border-bottom: 1px solid rgba(213, 166, 82, 0.16);
}

.maestro-newsletter h3 {
  margin-bottom: 18px;
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  font-weight: 400;
  color: #dcae58;
  letter-spacing: 0.07em;
}

.maestro-newsletter > p {
  margin: 0 auto 38px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  color: rgba(250, 238, 218, 0.9);
}

.maestro-newsletter form {
  display: flex;
  justify-content: center;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}

.maestro-newsletter input {
  width: 100%;
  max-width: 320px;
  height: 62px;
  padding: 0 24px;
  background: rgba(13, 6, 2, 0.55);
  border: 1px solid rgba(221, 171, 79, 0.46);
  color: rgba(255, 244, 224, 0.96);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.maestro-newsletter input::placeholder {
  color: rgba(205, 170, 115, 0.72);
}

.maestro-newsletter input:focus {
  background: rgba(18, 8, 3, 0.72);
  border-color: rgba(247, 202, 121, 0.8);
  box-shadow: 0 0 24px rgba(220, 168, 73, 0.15);
}

.maestro-newsletter button {
  height: 62px;
  min-width: 150px;
  padding: 0 34px;
  background: rgba(17, 7, 2, 0.6);
  border: 1px solid rgba(221, 171, 79, 0.64);
  color: #f1c978;
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.maestro-newsletter button:hover {
  background: rgba(86, 48, 12, 0.38);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

.closing-text {
  max-width: 760px;
  margin: 20px auto 52px;
  padding: 0 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.6vw, 2.55rem);
  line-height: 1.35;
  text-align: center;
  color: rgba(248, 237, 218, 0.92);
  letter-spacing: 0.04em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

/* Reduce Life Craft dominance on Maestro page */
.lifecraft-banner,
.life-craft-banner {
  max-width: 92%;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile */
@media (max-width: 768px) {
  .maestro-hero-section {
    padding: 58px 18px 24px;
  }

  .hero-hook {
    margin-bottom: 38px;
    font-size: 1.45rem;
  }

  .maestro-story {
    margin: 46px 18px 68px;
    padding: 34px 24px;
    border-radius: 18px;
  }

  .maestro-story p {
    font-size: 1.25rem;
    line-height: 1.65;
  }

  .maestro-newsletter {
    margin: 0 18px 56px;
    padding: 42px 18px 38px;
  }

  .maestro-newsletter form {
    flex-direction: column;
    gap: 14px;
  }

  .maestro-newsletter input,
  .maestro-newsletter button {
    max-width: none;
    width: 100%;
  }

  .closing-text {
    font-size: 1.55rem;
  }
}

    .page {
      position: relative;
      width: min(var(--max-width), calc(100% - 48px));
      margin: 0 auto;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      padding: 28px 0 72px;
    }

    .page::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 14% 77%, rgba(207, 111, 37, 0.14), transparent 16%),
        radial-gradient(circle at 85% 78%, rgba(207, 111, 37, 0.18), transparent 18%),
        radial-gradient(circle at 50% 90%, rgba(117, 56, 17, 0.16), transparent 26%);
      filter: blur(18px);
      opacity: 0.88;
      z-index: 0;
    }

    .topbar,
    .hero {
      position: relative;
      z-index: 1;
    }

    .topbar {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 24px;
      padding: 4px 0 22px;
      border-bottom: 1px solid var(--gold-line);
    }

    .logo {
      display: flex;
      align-items: center;
      justify-self: start;
    }

    .logo img {
      width: 34px;
      height: auto;
      display: block;
      filter: drop-shadow(0 0 8px rgba(200, 120, 40, 0.18));
    }

    .nav {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 24px;
    }

    .nav a,
    .begin-btn {
      font-family: "Cinzel", serif;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--text);
    }

    .nav a {
      position: relative;
      font-size: 1rem;
      opacity: 0.75;
      transition: opacity 0.2s ease;
    }

    .nav a:hover {
      opacity: 1;
    }

    .nav a + a::before {
      content: "|";
      position: absolute;
      left: -14px;
      color: rgba(210, 163, 90, 0.26);
    }

    .begin-btn {
      justify-self: end;
      font-size: 0.95rem;
      padding: 12px 26px;
      border: 1px solid rgba(210, 163, 90, 0.65);
      background: rgba(10, 6, 4, 0.18);
      box-shadow: inset 0 0 0 1px rgba(255, 211, 145, 0.03);
      transition: 0.2s ease;
    }

    .begin-btn:hover,
    .cta:hover {
      border-color: rgba(239, 198, 125, 0.95);
      box-shadow:
        0 0 24px rgba(196, 107, 36, 0.18),
        inset 0 0 10px rgba(255, 210, 145, 0.04);
      transform: translateY(-1px);
    }

    .hero {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding-top: clamp(36px, 6vw, 88px);
    }

    .hero::before {
      content: "";
      position: absolute;
      top: 6%;
      right: 7%;
      width: min(680px, 52vw);
      height: 44vh;
      background: radial-gradient(circle at center, rgba(215, 127, 50, 0.1), transparent 66%);
      filter: blur(20px);
      pointer-events: none;
      z-index: -1;
    }

    .hero::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 34%;
      transform: translate(-50%, -50%);
      width: min(760px, 72vw);
      height: 320px;
      background: radial-gradient(ellipse at center, rgba(215, 127, 50, 0.22), transparent 70%);
      filter: blur(42px);
      pointer-events: none;
      z-index: -1;
    }

    .hero-title {
      margin: 0;
      font-family: "Cinzel", serif;
      font-weight: 500;
      font-size: clamp(4.2rem, 8vw, 7.2rem);
      line-height: 0.95;
      letter-spacing: 0.06em;
      color: var(--gold-light);
      text-shadow: 0 0 24px rgba(128, 70, 20, 0.16);
    }

    .hero-subtitle {
      margin: 28px auto 0;
      max-width: 980px;
      font-size: clamp(1.9rem, 2.7vw, 3rem);
      line-height: 1.12;
      color: var(--gold-soft);
      text-shadow: 0 0 10px rgba(80, 40, 10, 0.08);
    }

    .cta {
      margin-top: 34px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      min-width: min(100%, 420px);
      padding: 18px 32px;
      font-family: "Cinzel", serif;
      font-size: clamp(1rem, 1.45vw, 1.32rem);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border: 1px solid rgba(210, 163, 90, 0.8);
      background: linear-gradient(
        to bottom,
        rgba(40, 20, 10, 0.5),
        rgba(10, 5, 3, 0.7)
      );
      box-shadow:
        0 0 20px rgba(200, 120, 40, 0.2),
        inset 0 0 10px rgba(255, 200, 120, 0.05);
      transition: 0.2s ease;
    }

    .cta .arrow {
      color: #e0a524;
      font-size: 1.2em;
      line-height: 1;
    }

    .book-wrap {
      position: relative;
      margin-top: clamp(50px, 7vw, 82px);
      width: min(470px, 42vw, 100%);
      filter: drop-shadow(0 24px 56px rgba(0, 0, 0, 0.42));
    }

    .book-wrap::before {
      content: "";
      position: absolute;
      bottom: -20px;
      left: 50%;
      transform: translateX(-50%);
      width: 70%;
      height: 40px;
      background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.62),
        transparent 70%
      );
      filter: blur(12px);
      z-index: -1;
      pointer-events: none;
    }

    .book-wrap::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 3%;
      transform: translateX(-50%);
      width: 82%;
      height: 14%;
      background: radial-gradient(ellipse at center, rgba(216, 128, 50, 0.18), transparent 70%);
      filter: blur(16px);
      pointer-events: none;
      z-index: -1;
    }

    .book-image {
      display: block;
      width: 100%;
      height: auto;
    }

    .divider {
      margin-top: clamp(36px, 5vw, 56px);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      width: 100%;
    }

    .divider-line {
      width: min(320px, 28vw);
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(210, 163, 90, 0.56), transparent);
      position: relative;
    }

    .divider-line::after {
      content: "";
      position: absolute;
      left: 38%;
      right: 38%;
      top: -6px;
      bottom: -6px;
      border-top: 1px solid rgba(210, 163, 90, 0.28);
      border-bottom: 1px solid rgba(210, 163, 90, 0.16);
      opacity: 0.75;
    }

    .divider-rose {
      width: clamp(54px, 5vw, 76px);
      height: auto;
      display: block;
      filter: drop-shadow(0 0 10px rgba(180, 101, 34, 0.14));
    }

    .closing-text {
      margin: 24px auto 0;
      max-width: 1100px;
      font-size: clamp(2.25rem, 4.7vw, 4.85rem);
      line-height: 1.08;
      color: var(--gold-soft);
      text-shadow: 0 0 12px rgba(80, 40, 10, 0.08);
    }

    .bottom-space {
      height: clamp(80px, 12vw, 150px);
    }

    @media (max-width: 980px) {
      .page {
        width: min(calc(100% - 32px), var(--max-width));
        padding-top: 22px;
      }

      .topbar {
        grid-template-columns: auto 1fr auto;
        gap: 16px;
      }

      .nav {
        gap: 18px;
      }

      .nav a {
        font-size: 0.84rem;
      }

      .nav a + a::before {
        left: -12px;
      }

      .hero-subtitle {
        max-width: 760px;
      }

      .book-wrap {
        width: min(420px, 58vw);
      }
    }

    @media (max-width: 640px) {
      body {
        background-position: center top, center center, center center;
      }

      .page {
        width: min(calc(100% - 24px), var(--max-width));
        padding-bottom: 46px;
      }

      .topbar {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding-bottom: 16px;
      }

      .logo {
        justify-content: center;
      }

      .logo img {
        width: 36px;
      }

      .nav {
        justify-content: center;
        gap: 10px 16px;
        flex-wrap: wrap;
      }

      .nav a {
        font-size: 0.72rem;
        letter-spacing: 0.1em;
        opacity: 0.82;
      }

      .nav a + a::before {
        display: none;
      }

      .begin-btn {
        align-self: center;
        padding: 10px 18px;
        font-size: 0.8rem;
      }

      .hero {
        padding-top: 34px;
      }

      .hero::after {
        width: 88vw;
        height: 240px;
        top: 28%;
      }

      .hero-subtitle {
        font-size: 1.45rem;
        line-height: 1.18;
        max-width: 92%;
      }

      .cta {
        min-width: 100%;
        padding: 15px 18px;
        font-size: 0.92rem;
      }

      .book-wrap {
        width: min(88vw, 360px);
      }

      .divider {
        gap: 10px;
      }

      .divider-line {
        width: 24vw;
      }

      .closing-text {
        font-size: 2rem;
      }
    }

    

.lifecraft-footer {
  margin-top: 120px;
  padding: 60px 0 80px;
  display: flex;
  justify-content: center;
  align-items: center;

  /* subtle separation from content above */
  border-top: 1px solid rgba(210, 163, 90, 0.15);
}

.lifecraft-link {
  display: inline-block;
  position: relative;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.lifecraft-link img {
  display: block;
  width: 150px;
  height: auto;

  /* slight glow to match your aesthetic */
  filter: drop-shadow(0 0 8px rgba(200, 120, 40, 0.15));
}

/* hover = activation */
.lifecraft-link:hover {
  opacity: 1;
  transform: translateY(-2px) scale(1.03);
}

.lifecraft-link:hover img {
  filter: drop-shadow(0 0 14px rgba(220, 130, 40, 0.35));
}


.newsletter {
  width: 100%;
  max-width: 760px;
  margin: 55px auto 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.newsletter h3 {
  margin: 0 0 10px 0;
  color: #e3bb72;
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.04em;
}

.newsletter p {
  margin: 0 0 28px 0;
  color: rgba(236, 204, 142, 0.88);
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.35;
}

.newsletter form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.newsletter form input[type="text"],
.newsletter form input[type="email"] {
  width: 260px;
  height: 54px;
  padding: 0 18px;
  margin: 0;
  border: 1px solid rgba(214, 167, 91, 0.65);
  background: rgba(8, 5, 3, 0.72);
  color: #f2ddb0;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  line-height: 54px;
  box-sizing: border-box;
  outline: none;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: inset 0 0 0 1px rgba(255, 220, 150, 0.03),
              0 0 20px rgba(0, 0, 0, 0.16);
  transition: all 0.25s ease;
}

.newsletter form input[type="text"]::placeholder,
.newsletter form input[type="email"]::placeholder {
  color: rgba(231, 200, 145, 0.56);
}

.newsletter form input[type="text"]:focus,
.newsletter form input[type="email"]:focus {
  border-color: rgba(236, 190, 103, 0.95);
  background: rgba(8, 5, 3, 0.86);
  box-shadow: inset 0 0 0 1px rgba(255, 220, 150, 0.06),
              0 0 24px rgba(180, 110, 35, 0.18);
}

.newsletter form button,
.newsletter form input[type="submit"] {
  height: 54px;
  padding: 0 28px;
  margin: 0;
  border: 1px solid rgba(214, 167, 91, 0.8);
  background: linear-gradient(to bottom, rgba(58, 33, 14, 0.9), rgba(24, 12, 5, 0.95));
  color: #e8c37d;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-sizing: border-box;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: inset 0 1px 0 rgba(255, 223, 157, 0.08),
              0 0 18px rgba(0, 0, 0, 0.18);
  transition: all 0.2s ease;
}

.newsletter form button:hover,
.newsletter form input[type="submit"]:hover {
  border-color: rgba(240, 197, 114, 1);
  color: #f4dba2;
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 223, 157, 0.12),
              0 0 24px rgba(180, 110, 35, 0.22);
}

@media (max-width: 768px) {
  .newsletter h3 {
    font-size: 30px;
  }

  .newsletter p {
    font-size: 22px;
    margin-bottom: 22px;
  }

  .newsletter form {
    gap: 12px;
  }

  .newsletter form input[type="text"],
  .newsletter form input[type="email"],
  .newsletter form button,
  .newsletter form input[type="submit"] {
    width: 100%;
    max-width: 420px;
  }
}

.thank-you-message {
  max-width: 900px;
  margin: 40px auto 70px;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.thank-you-message h2 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #e5be75;
  text-shadow: 0 0 14px rgba(191, 120, 33, 0.12);
}

.thank-you-message p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.2;
  color: rgba(243, 221, 176, 0.95);
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.18);
}

.thank-you-message p em {
  font-style: italic;
  color: #efcc88;
}

.continue-link {
  display: inline-block;
  margin-top: 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #f0d291;
  text-decoration: none;
  position: relative;
  transition: color 0.25s ease, text-shadow 0.25s ease, transform 0.25s ease;
}

.continue-link span {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.25s ease;
}

.continue-link::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  margin: 8px auto 0;
  background: rgba(240, 210, 145, 0.75);
  transition: width 0.3s ease;
}

.continue-link:hover {
  color: #f7dda7;
  text-shadow: 0 0 14px rgba(191, 120, 33, 0.22);
  transform: translateY(-1px);
}

.continue-link:hover span {
  transform: translateX(5px);
}

.continue-link:hover::after {
  width: 100%;
}

.subtle-line {
  margin-top: 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(228, 190, 117, 0.72);
  text-transform: uppercase;
}

.fade-in {
  opacity: 0;
  transform: translateY(12px);
  animation: maestroFadeIn 1.2s ease forwards;
}

@keyframes maestroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .thank-you-message {
    margin: 30px auto 55px;
  }

  .thank-you-message h2 {
    font-size: 3.1rem;
  }

  .thank-you-message p {
    font-size: 1.8rem;
  }

  .continue-link {
    font-size: 1.8rem;
  }

  .subtle-line {
    font-size: 1.1rem;
  }
}

@media (max-width: 640px) {
  .thank-you-message {
    padding: 0 18px;
    margin: 24px auto 44px;
  }

  .thank-you-message h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }

  .thank-you-message p {
    font-size: 1.4rem;
    line-height: 1.28;
  }

  .continue-link {
    margin-top: 18px;
    font-size: 1.45rem;
  }

  .subtle-line {
    margin-top: 18px;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
  }
}

/* Maestro TopBar */

.maestro-topbar-simple {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 22px 24px 20px;
  border-bottom:1px solid rgba(214,166,82,.14);
}

.maestro-topbar-simple .maestro-top-rose {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.maestro-topbar-simple img {
  width: 64px;
  height: auto;
  opacity: 0.96;
  filter:
    drop-shadow(0 0 16px rgba(223,169,72,.22))
    drop-shadow(0 0 34px rgba(223,169,72,.08));
}

.maestro-topbar-simple img:hover {
  transform: scale(1.06);
  opacity: 1;
}

@media (max-width:768px){
.maestro-topbar-simple img{
width:54px;
}
}


