:root {
  --bg: #0a0908;
  --bg-elev: #12100e;
  --bg-soft: #17140f;
  --text: #f3ebe0;
  --muted: #b9aea0;
  --line: rgba(201, 162, 105, 0.28);
  --copper: #c9a269;
  --copper-strong: #e2bc7a;
  --wa: #25d366;
  --wa-ink: #062214;
  --script: "Great Vibes", cursive;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
  --radius: 0;
  --max: 1140px;
  --header-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background:
    radial-gradient(1000px 520px at 90% -5%, rgba(201, 162, 105, 0.1), transparent 55%),
    radial-gradient(800px 420px at 0% 30%, rgba(80, 50, 20, 0.16), transparent 55%),
    var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

strong {
  font-weight: 500;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--copper);
  color: #111;
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 400;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  margin: 0;
}

h1 {
  font-size: clamp(2.35rem, 5.2vw, 4.15rem);
  letter-spacing: -0.02em;
  font-weight: 600;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
}

h3 {
  font-size: 1.45rem;
  font-weight: 600;
}

.script-inline,
.hero-script,
.brand-script,
.quote-script,
.footer-script {
  font-family: var(--script);
  font-weight: 400;
  color: var(--copper-strong);
  line-height: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.75rem 1.3rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-wa {
  background: var(--wa);
  color: var(--wa-ink);
}

.btn-wa:hover {
  background: #34e07a;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--copper);
  color: var(--copper-strong);
}

.btn-xl {
  min-height: 56px;
  padding-inline: 1.7rem;
  font-size: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 9, 8, 0.88);
  border-bottom: 1px solid rgba(201, 162, 105, 0.14);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: auto;
  line-height: 1;
}

.brand-script {
  font-size: 1.85rem;
  color: var(--copper-strong);
}

.brand-sub {
  margin-top: 0.15rem;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: none;
  gap: 1.4rem;
}

.nav a {
  color: var(--muted);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--copper-strong);
}

.header-wa {
  display: none;
  min-height: 42px;
  padding-inline: 1rem;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  display: grid;
  place-content: center;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
}

.menu-mobile {
  border-top: 1px solid rgba(201, 162, 105, 0.12);
  padding: 1rem 1rem 1.25rem;
  display: grid;
  gap: 0.85rem;
  background: rgba(10, 9, 8, 0.96);
}

.menu-mobile[hidden] {
  display: none !important;
}

.menu-mobile a:not(.btn) {
  color: var(--muted);
  padding: 0.35rem 0;
  font-family: var(--serif);
  font-size: 1.25rem;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
}

.hero-panel {
  position: relative;
  isolation: isolate;
  width: 100%;
  margin: 0;
  padding: 2.4rem 1rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("img/hero-bg.jpg") center 40% / cover no-repeat;
  z-index: -2;
  transform: scale(1.04);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.78) 0%, rgba(8, 7, 6, 0.88) 55%, rgba(8, 7, 6, 0.92) 100%),
    linear-gradient(90deg, rgba(8, 7, 6, 0.55), rgba(8, 7, 6, 0.25));
  z-index: -1;
}

.hero-script {
  margin: 0 0 0.15rem;
  font-size: clamp(3.2rem, 12vw, 5.5rem);
  color: var(--copper-strong);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.hero h1 {
  max-width: 12ch;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}

.hero-ornament {
  margin: 0.7rem 0 0.9rem;
  color: var(--copper);
  letter-spacing: 0.4em;
  font-size: 0.75rem;
}

.hero-lead {
  margin: 0;
  max-width: 34rem;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.hero-visual {
  width: 100%;
  overflow: hidden;
  background: #14110e;
  border-top: 1px solid rgba(201, 162, 105, 0.12);
}

.hero-visual img {
  width: 100%;
  max-height: 480px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 32% 16%;
}

/* Mobile-first layout fixes */
@media (max-width: 759.98px) {
  .hero {
    display: flex;
    flex-direction: column;
  }

  .hero-visual {
    order: -1;
    border-top: none;
    border-bottom: 1px solid rgba(201, 162, 105, 0.12);
  }

  .hero-visual img {
    max-height: min(62vw, 420px);
    aspect-ratio: 4 / 5;
    object-position: 42% 14%;
  }

  /* No stage bg on mobile: photo already carries the visual */
  .hero-panel::before,
  .hero-panel::after {
    display: none;
  }

  .hero-panel {
    background: var(--bg);
    padding: 1.6rem 1rem 1.8rem;
  }

  .hero-script {
    font-size: clamp(2.6rem, 11vw, 3.6rem);
  }

  .hero h1 {
    font-size: clamp(1.85rem, 7vw, 2.4rem);
    max-width: none;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .quote-band {
    padding: 1.4rem 0;
  }

  .quote-script {
    font-size: clamp(1.35rem, 6.5vw, 1.9rem);
    line-height: 1.25;
    padding-inline: 0.5rem;
  }

  .section {
    padding: 3.2rem 0;
  }

  .section-head {
    margin-bottom: 1.6rem;
  }

  .section-head h2 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .sobre-media {
    justify-self: stretch;
  }

  .sobre-media img {
    max-width: none;
  }

  .sobre-copy h2 .script-inline {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .gallery {
    gap: 0.75rem;
  }

  .g-wide img {
    aspect-ratio: 16 / 10;
  }

  .contato-card {
    padding: 1.4rem 1rem;
  }

  .contato-card .btn-xl {
    width: 100%;
  }

  .contato-title .script-inline {
    font-size: clamp(2.1rem, 10vw, 2.8rem);
  }

  .brand-script {
    font-size: 1.55rem;
  }

  .site-footer {
    padding-bottom: 6rem;
  }

  .fab-wa {
    right: 0.85rem;
    bottom: 0.85rem;
  }
}

.quote-band {
  padding: 2.2rem 0;
  border-block: 1px solid rgba(201, 162, 105, 0.14);
  text-align: center;
  background: linear-gradient(180deg, rgba(201, 162, 105, 0.05), transparent);
}

.quote-script {
  margin: 0;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  color: var(--copper-strong);
}

.section {
  padding: 4.6rem 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.4rem;
}

.section-head p:last-child {
  color: var(--muted);
  margin: 0.95rem 0 0;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.feature-row {
  display: grid;
  gap: 1.6rem;
}

.feature {
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
}

.feature-num {
  display: block;
  font-family: var(--script);
  color: var(--copper);
  font-size: 1.8rem;
  margin-bottom: 0.35rem;
}

.feature h3 {
  margin-bottom: 0.45rem;
}

.feature p {
  margin: 0;
  color: var(--muted);
  max-width: 34rem;
  font-family: var(--serif);
  font-size: 1.08rem;
}

.sobre {
  background: linear-gradient(180deg, transparent, rgba(23, 20, 15, 0.9));
}

.sobre-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.sobre-media {
  overflow: hidden;
  border: 1px solid rgba(201, 162, 105, 0.22);
  justify-self: start;
}

.sobre-media img {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 12%;
}

.sobre-copy {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.sobre-copy h2 .script-inline {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  display: inline-block;
  margin-bottom: 0.15rem;
}

.sobre-copy p {
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.sobre-meta {
  list-style: none;
  margin: 0.4rem 0 0.2rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.sobre-meta li {
  padding-left: 1rem;
  position: relative;
}

.sobre-meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--copper);
}

.sobre-copy .btn {
  justify-self: start;
  margin-top: 0.35rem;
}

.gallery {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr;
}

.g-item {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 105, 0.16);
  background: #14110e;
}

.g-item picture {
  display: block;
  width: 100%;
}

.g-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.g-wide img,
.g-item.g-wide img {
  aspect-ratio: 16 / 10;
}

.g-item figcaption {
  padding: 0.8rem 0.95rem;
  color: var(--muted);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  border-top: 1px solid rgba(201, 162, 105, 0.12);
}

.contato {
  padding-bottom: 5.5rem;
}

.contato-card {
  display: grid;
  gap: 1.75rem;
  padding: 2rem 1.25rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(201, 162, 105, 0.08), transparent 42%),
    var(--bg-elev);
}

.contato-title .script-inline {
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  display: inline-block;
  margin-right: 0.25rem;
}

.contato-card > div {
  display: grid;
  gap: 0.85rem;
}

.contato-card > div > p {
  margin: 0;
  color: var(--muted);
  max-width: 34rem;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.contato-list {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.95rem;
}

.contato-list li {
  display: grid;
  gap: 0.15rem;
}

.contato-list span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
}

.contato-list a,
.contato-list p {
  margin: 0;
  color: var(--text);
  word-break: break-word;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.contato-list a:hover {
  color: var(--copper-strong);
}

.maps-link {
  text-decoration: underline;
  text-decoration-color: rgba(201, 162, 105, 0.45);
  text-underline-offset: 0.2em;
}

.maps-link:hover {
  text-decoration-color: var(--copper-strong);
}

.site-footer {
  border-top: 1px solid rgba(201, 162, 105, 0.12);
  padding: 1.8rem 0 5.5rem;
}

.footer-inner {
  display: grid;
  gap: 0.45rem;
  justify-items: start;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-script {
  margin: 0;
  font-size: 2rem;
}

.footer-inner p {
  margin: 0;
}

.fab-wa {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa);
  color: var(--wa-ink);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  z-index: 60;
}

.fab-wa svg {
  width: 28px;
  height: 28px;
}

@media (min-width: 760px) {
  .nav {
    display: flex;
  }

  .header-wa {
    display: inline-flex;
  }

  .nav-toggle,
  .menu-mobile {
    display: none !important;
  }

  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.85fr);
    align-items: stretch;
    min-height: min(680px, calc(100svh - var(--header-h)));
  }

  .hero-panel {
    padding: 3.6rem 2.2rem 3rem max(1rem, calc((100vw - var(--max)) / 2));
    width: auto;
    margin-left: 0;
    margin-right: 0;
    justify-content: center;
    max-width: none;
  }

  .hero-panel::before {
    background-position: center 45%;
  }

  .hero-panel::after {
    background:
      linear-gradient(105deg, rgba(8, 7, 6, 0.9) 0%, rgba(8, 7, 6, 0.82) 58%, rgba(8, 7, 6, 0.72) 100%);
  }

  .hero-panel > * {
    max-width: 36rem;
  }

  .hero-visual {
    border-top: none;
    border-left: 1px solid rgba(201, 162, 105, 0.14);
    max-height: min(680px, calc(100svh - var(--header-h)));
  }

  .hero-visual img {
    height: 100%;
    max-height: min(680px, calc(100svh - var(--header-h)));
    min-height: 520px;
    aspect-ratio: auto;
    object-position: 32% 16%;
  }

  .feature-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
  }

  .feature {
    border-top: none;
    border-left: 1px solid var(--line);
    padding: 0 0 0 1.35rem;
  }

  .feature:first-child {
    border-left: none;
    padding-left: 0;
  }

  .sobre-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3.2rem;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .g-item,
  .g-tall,
  .g-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .g-wide {
    grid-column: 1 / -1;
  }

  .g-item img,
  .g-tall img,
  .g-wide img {
    height: auto;
    min-height: 0;
  }

  .g-wide img {
    aspect-ratio: 21 / 9;
    object-position: center 40%;
  }

  .contato-card {
    grid-template-columns: 1.25fr auto;
    align-items: end;
    padding: 2.6rem;
  }
}

@media (min-width: 980px) {
  .hero-panel {
    padding-right: 3rem;
  }

  .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .g-wide {
    grid-column: span 2;
  }

  .g-wide img {
    aspect-ratio: 16 / 9;
    height: 100%;
    object-fit: cover;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .btn:hover {
    transition: none;
    transform: none;
  }
}
