:root {
  --ink: #191b17;
  --paper: #f4f0e8;
  --gold: #c9a165;
  --muted: #a5a79a;
  --line: #f4f0e830;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
img {
  display: block;
  width: 100%;
}
svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
h1,
h2,
h3,
p {
  margin: 0;
}
em {
  font-family: var(--serif);
  font-weight: 400;
}
::selection {
  background: var(--gold);
  color: var(--ink);
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 6px;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  background: var(--paper);
  color: var(--ink);
  padding: 14px;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
/* Marca e navegacao. */
.site-header {
  height: 96px;
  margin: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.brand > span {
  font-size: 10px;
  letter-spacing: 2px;
  line-height: 1.6;
}
.navigation {
  display: flex;
  gap: 40px;
  align-items: center;
  font-size: 12px;
}
.navigation a {
  padding: 12px 0;
}
.navigation a:hover,
.text-link:hover {
  color: var(--gold);
}
.nav-contact {
  border-bottom: 1px solid var(--gold);
}
.nav-contact span {
  margin-left: 18px;
}
.menu-toggle {
  display: none;
}
/* Abertura editorial com enquadramento independente no celular. */
.hero {
  padding: 0 5%;
}
.hero-topline {
  display: flex;
  justify-content: space-between;
  padding: 27px 0;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
}
.hero-stage {
  position: relative;
  height: 590px;
  max-height: 55vw;
  min-height: 470px;
}
.hero-photo {
  position: absolute;
  left: 35%;
  right: 9%;
  top: 0;
  bottom: 0;
  overflow: hidden;
  background: #6d6b62;
}
.hero-photo img {
  height: 100%;
  object-fit: cover;
  object-position: 38% center;
  filter: brightness(0.78) saturate(0.65);
}
.photo-caption {
  position: absolute;
  bottom: 23px;
  right: 25px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
h1 {
  position: absolute;
  z-index: 2;
  left: -0.5%;
  top: 15px;
  font-family: var(--serif);
  font-size: clamp(90px, 10.8vw, 174px);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: -7px;
}
h1 > span {
  display: block;
  font-style: italic;
  margin-top: 12px;
  color: #e1c59c;
}
.name-dot {
  color: var(--gold);
}
.hero-note {
  position: absolute;
  bottom: 28px;
  left: 0;
  z-index: 3;
}
.small-rule {
  display: block;
  width: 34px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 18px;
}
.hero-note p {
  font-size: 17px;
  line-height: 1.65;
}
.hero-note p em {
  font-size: 23px;
}
.text-link {
  display: inline-flex;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid currentColor;
  padding: 10px 0;
  font-size: 11px;
  font-weight: 500;
  transition: color 0.2s;
}
.hero-note .text-link {
  margin-top: 18px;
}
.hero-side {
  position: absolute;
  right: 1%;
  top: 45%;
  writing-mode: vertical-rl;
  letter-spacing: 4px;
  font-size: 9px;
  color: var(--muted);
}
.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0 42px;
  gap: 20px;
}
.hero-bottom p {
  font-size: 12px;
  line-height: 1.8;
}
.hero-bottom p span {
  color: var(--muted);
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  padding: 16px 23px;
  font-size: 12px;
  font-weight: 600;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  transform: translateY(-3px);
}
.button-gold {
  background: var(--gold);
  color: var(--ink);
}
.button-gold:hover {
  background: #e1c59c;
}
.button > span:last-child {
  margin-left: 22px;
  font-size: 20px;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.social-links a:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.social-links svg {
  width: 17px;
  height: 17px;
}
/* Repertorio sem cards repetidos. */
.section-shell {
  padding: 55px 8% 85px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding-bottom: 26px;
  border-bottom: 1px solid currentColor;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.section-aside {
  font-size: 10px;
  opacity: 0.65;
}
.music-section {
  background: var(--paper);
  color: var(--ink);
}
.music-section .section-heading {
  border-color: #d6d3ca;
}
.music-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 10%;
  padding-top: 60px;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 4.5vw, 70px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -2px;
}
.music-intro > p {
  font-size: 13px;
  line-height: 1.8;
  max-width: 275px;
  margin-top: 24px;
  color: #64665b;
}
.music-art {
  position: relative;
  margin-top: 32px;
  max-width: 330px;
  height: 215px;
  overflow: hidden;
}
.music-art img {
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  filter: saturate(0.65);
}
.music-art:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, #0006);
}
.music-art > span {
  position: absolute;
  bottom: 16px;
  left: 20px;
  z-index: 1;
  color: white;
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
}
.repertoire-label {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 0 18px;
  color: #686b5e;
}
.repertoire ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.track {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 15px;
  align-items: center;
  min-height: 88px;
  border-top: 1px solid #d6d3ca;
  transition:
    padding 0.25s,
    background 0.25s;
}
.repertoire li:last-child .track {
  border-bottom: 1px solid #d6d3ca;
}
.track:hover {
  padding-left: 12px;
  padding-right: 12px;
  background: #eae5da;
}
.track-number {
  font-size: 10px;
  color: #77796d;
}
.track h3 {
  font-family: var(--serif);
  font-size: clamp(21px, 2.1vw, 32px);
  font-weight: 400;
  letter-spacing: -0.5px;
}
.track-listen {
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.track-listen > span {
  font-size: 23px;
}
.music-platforms {
  margin-top: 25px;
}
.music-section .text-link:hover {
  color: #826035;
}
.listening-note {
  font-size: 10px;
  line-height: 1.7;
  color: #727466;
  margin-top: 16px;
}
/* Biografia e assinatura tipografica. */
.about-section {
  background: #e6e5dc;
  color: var(--ink);
  padding-bottom: 35px;
}
.about-section .section-heading {
  border-color: #c7c9bc;
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12%;
  align-items: center;
  padding: 60px 4% 65px;
}
.about-image {
  position: relative;
  height: 510px;
}
.about-image img {
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(0.65);
}
.image-index {
  position: absolute;
  left: -28px;
  bottom: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 8px;
  letter-spacing: 2px;
  color: #696d5f;
}
.about-copy h2 {
  margin-bottom: 32px;
}
.about-copy p {
  font-size: 13px;
  line-height: 1.9;
  color: #606456;
  margin-top: 18px;
  max-width: 360px;
}
.about-copy .about-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
}
.about-copy .text-link {
  margin-top: 23px;
}
.about-copy .text-link:hover {
  color: #826035;
}
.about-signoff {
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(24px, 3.8vw, 60px);
  letter-spacing: -1px;
  border-top: 1px solid #c7c9bc;
  padding-top: 30px;
}
.about-signoff em {
  color: #767f64;
}
.contact-section {
  padding-top: 55px;
  padding-bottom: 85px;
}
.contact-section .section-heading {
  border-color: var(--line);
  color: var(--muted);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12%;
  align-items: center;
  padding-top: 62px;
}
.contact-layout h2 {
  font-size: clamp(48px, 6.5vw, 98px);
  letter-spacing: -3px;
}
.contact-layout h2 em {
  color: var(--gold);
}
.contact-copy {
  max-width: 315px;
}
.contact-star {
  display: block;
  color: var(--gold);
  font-size: 50px;
  margin-bottom: 24px;
  line-height: 1;
}
.contact-copy p {
  font-size: 15px;
  line-height: 1.9;
  color: #c3c5b9;
  margin-bottom: 28px;
}
.contact-note {
  display: block;
  margin-top: 14px;
  font-size: 10px;
  color: var(--muted);
}
.site-footer {
  margin: 0 5%;
  border-top: 1px solid var(--line);
  padding: 38px 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer-name {
  font-family: var(--serif);
  font-size: 29px;
  letter-spacing: -1px;
}
.footer-name em {
  color: var(--gold);
}
.footer-social {
  display: flex;
  gap: 25px;
  font-size: 11px;
}
.footer-social a:hover {
  color: var(--gold);
}
.footer-bottom {
  width: 100%;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 9px;
  color: var(--muted);
}
.elyontec {
  font-weight: 700;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #65a1ff, #59d9f3);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
@media (min-width: 1600px) {
  .hero,
  .section-shell,
  .site-footer,
  .site-header {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-stage {
    max-height: none;
    height: 640px;
  }
}
@media (max-width: 1000px) {
  .hero-stage {
    height: 520px;
    min-height: 460px;
  }
  .hero-photo {
    left: 30%;
    right: 5%;
  }
  .hero-side {
    right: 0;
  }
  .hero-note p {
    font-size: 14px;
  }
  .music-layout {
    gap: 6%;
  }
  .section-shell {
    padding-left: 6%;
    padding-right: 6%;
  }
  .about-layout {
    gap: 9%;
    padding-left: 2%;
    padding-right: 0;
  }
  .about-image {
    height: 460px;
  }
  .contact-layout {
    gap: 7%;
  }
  h1 {
    letter-spacing: -5px;
  }
}
@media (max-width: 700px) {
  .site-header {
    height: 80px;
    margin: 0 6%;
  }
  .brand img {
    width: 40px;
    height: 40px;
  }
  .brand > span {
    font-size: 9px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--paper);
    cursor: pointer;
  }
  .menu-toggle span {
    width: 18px;
    height: 1px;
    background: currentColor;
    align-self: center;
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .navigation {
    display: none;
    position: absolute;
    top: 79px;
    left: -7%;
    right: -7%;
    background: var(--ink);
    padding: 24px 7% 30px;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
    font-size: 15px;
  }
  .navigation.is-open {
    display: flex;
  }
  .navigation a {
    padding: 15px 0;
  }
  .hero {
    padding: 0 6%;
  }
  .hero-topline {
    font-size: 8px;
    letter-spacing: 1.3px;
    padding: 22px 0;
  }
  .hero-topline > span:last-child {
    display: none;
  }
  .hero-stage {
    height: 560px;
    min-height: 0;
    max-height: none;
  }
  .hero-photo {
    left: 14%;
    right: 0;
    top: 84px;
    bottom: 83px;
  }
  .hero-photo img {
    object-position: 34% center;
    filter: brightness(0.8) saturate(0.65);
  }
  h1 {
    top: 1px;
    font-size: clamp(64px, 16vw, 112px);
    letter-spacing: -3px;
    line-height: 0.95;
    left: -1%;
  }
  h1 > span {
    margin-top: 2px;
  }
  .photo-caption {
    font-size: 7px;
    right: 12px;
    bottom: 14px;
    letter-spacing: 1px;
  }
  .hero-note {
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 15px;
  }
  .hero-note .small-rule {
    display: none;
  }
  .hero-note p {
    font-size: 12px;
    line-height: 1.5;
  }
  .hero-note p em {
    font-size: 18px;
  }
  .hero-note .text-link {
    font-size: 9px;
    gap: 12px;
    margin-top: 0;
    padding: 8px 0;
  }
  .hero-side {
    top: 230px;
    right: auto;
    left: 0;
    font-size: 7px;
    letter-spacing: 2px;
  }
  .hero-bottom {
    flex-wrap: wrap;
    padding: 25px 0 34px;
    gap: 22px;
  }
  .hero-bottom > p {
    display: none;
  }
  .hero-bottom > .button {
    flex: 1;
    font-size: 10px;
    padding: 14px;
    gap: 10px;
    min-height: 48px;
  }
  .hero-bottom > .button > span:last-child {
    margin-left: 0;
  }
  .social-links {
    gap: 8px;
  }
  .social-links a {
    width: 34px;
    height: 44px;
    border: 0;
  }
  .social-links svg {
    width: 16px;
    height: 16px;
  }
  .section-shell {
    padding: 32px 6% 48px;
  }
  .section-heading {
    padding-bottom: 18px;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.6px;
  }
  .section-aside {
    font-size: 8px;
  }
  .music-layout {
    grid-template-columns: 1fr;
    padding-top: 32px;
    gap: 35px;
  }
  .music-intro {
    position: relative;
    padding-right: 29%;
  }
  .music-intro h2 {
    font-size: 38px;
    letter-spacing: -1.6px;
  }
  .music-intro > p {
    font-size: 11px;
    line-height: 1.7;
    margin-top: 18px;
    max-width: 200px;
  }
  .music-art {
    position: absolute;
    right: 0;
    top: 7px;
    width: 25%;
    height: 156px;
    margin: 0;
  }
  .music-art img {
    object-position: 48% center;
  }
  .music-art > span {
    display: none;
  }
  .track {
    min-height: 77px;
    grid-template-columns: 23px 1fr auto;
    gap: 10px;
  }
  .track h3 {
    font-size: 25px;
  }
  .track-listen {
    font-size: 9px;
    gap: 10px;
  }
  .repertoire-label {
    font-size: 8px;
    padding-top: 0;
  }
  .music-platforms {
    margin-top: 20px;
  }
  .about-layout {
    grid-template-columns: 1fr;
    padding: 30px 0 35px;
    gap: 32px;
  }
  .about-image {
    height: 360px;
    margin-right: 14%;
    margin-left: 5%;
  }
  .about-image img {
    object-position: center 36%;
  }
  .image-index {
    left: -18px;
  }
  .about-copy {
    padding-left: 5%;
  }
  .about-copy h2 {
    font-size: 49px;
    margin-bottom: 24px;
  }
  .about-copy p {
    font-size: 12px;
    max-width: 100%;
  }
  .about-copy .about-lead {
    font-size: 17px;
  }
  .about-signoff {
    font-size: 25px;
    line-height: 1.4;
    letter-spacing: -0.7px;
    padding-top: 24px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    padding-top: 32px;
    gap: 30px;
  }
  .contact-layout h2 {
    font-size: 57px;
    letter-spacing: -2px;
  }
  .contact-copy {
    max-width: none;
    padding-left: 15%;
    position: relative;
  }
  .contact-star {
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 31px;
  }
  .contact-copy p {
    font-size: 12px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  .contact-copy .button {
    width: 100%;
    font-size: 11px;
    padding: 15px;
  }
  .contact-copy .button > span:last-child {
    margin-left: auto;
  }
  .contact-note {
    font-size: 9px;
  }
  .site-footer {
    margin: 0 6%;
    padding-top: 27px;
    gap: 24px;
  }
  .footer-name {
    font-size: 27px;
  }
  .footer-social {
    width: 100%;
    gap: 26px;
    font-size: 10px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    font-size: 8px;
    gap: 16px;
  }
  .footer-bottom > span:nth-child(2) {
    order: 3;
    width: 100%;
  }
  .footer-bottom > a {
    margin-left: auto;
  }
}
@media (max-width: 360px) {
  .hero-stage {
    height: 515px;
  }
  .hero-bottom {
    gap: 7px;
  }
  .hero-bottom > .button {
    padding: 12px 10px;
  }
  .hero-note .text-link {
    font-size: 8px;
    gap: 8px;
  }
  .music-intro h2 {
    font-size: 33px;
  }
  .contact-layout h2 {
    font-size: 51px;
  }
  .track h3 {
    font-size: 23px;
  }
  .about-signoff {
    font-size: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
