:root {
  --obsidian: #09080b;
  --obsidian-2: #121015;
  --charcoal: #2c2a31;
  --ruby: #9b1d3a;
  --ruby-glow: #d13a58;
  --violet: #6b3d8f;
  --petal: #c9a0d4;
  --gold: #c9a227;
  --gold-soft: #e4d5a0;
  --ink: #f4efe6;
  --muted: #b7b0a6;
  --line: rgba(201, 162, 39, 0.28);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --text: "Source Serif 4", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--text);
  font-size: 1.05rem;
  line-height: 1.65;
  background-color: var(--obsidian);
  background-image:
    radial-gradient(ellipse at 12% 8%, rgba(155, 29, 58, 0.22), transparent 42%),
    radial-gradient(ellipse at 88% 12%, rgba(107, 61, 143, 0.2), transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(201, 162, 39, 0.08), transparent 35%),
    linear-gradient(180deg, #0c0a0e 0%, #09080b 40%, #100d14 100%);
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cpath fill='none' stroke='%23c9a227' stroke-width='0.6' d='M90 20c12 18 20 32 20 48s-8 28-20 40c-12-12-20-24-20-40s8-30 20-48z'/%3E%3Cpath fill='none' stroke='%236b3d8f' stroke-width='0.5' d='M48 110c18-8 34-8 50 4 10 8 16 20 16 32-16 4-32 2-50-8-12-8-18-18-16-28z'/%3E%3Cpath fill='none' stroke='%239b1d3a' stroke-width='0.5' d='M130 108c-16-10-32-12-50-2-8 6-12 16-10 26 18 8 36 8 52-2 10-6 14-14 8-22z'/%3E%3C/svg%3E");
}

body > * {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--ink);
}

h1, h2, h3, .brand-name, .footer-brand {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.18;
}

h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  margin: 0.2em 0 0.4em;
}

h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

.shell {
  width: min(1120px, calc(100% - 2.4rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--gold);
  color: var(--obsidian);
  padding: 0.4rem 0.8rem;
  z-index: 20;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(9, 8, 11, 0.92), rgba(9, 8, 11, 0.72));
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 30%, var(--gold-soft), transparent 40%),
    radial-gradient(circle at 70% 70%, var(--ruby-glow), transparent 45%),
    radial-gradient(circle at 30% 80%, var(--violet), transparent 40%),
    #140f16;
  box-shadow: 0 0 0 1px var(--line), 0 0 18px rgba(155, 29, 58, 0.45);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.35rem;
}

.brand-tag {
  font-size: 0.78rem;
  color: var(--muted);
}

.nav-toggle {
  font-family: var(--serif);
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 0.35rem 0.75rem;
  cursor: pointer;
}

.nav-principal ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-principal a {
  color: var(--ink);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.12rem;
}

.nav-principal a[aria-current="page"],
.nav-principal a:hover {
  color: var(--gold);
}

.edition {
  width: min(1120px, calc(100% - 2.4rem));
  margin: 2.4rem auto 0;
}

.masthead {
  max-width: 46rem;
}

.masthead-meta,
.kicker {
  font-family: var(--serif);
  font-style: italic;
  color: var(--petal);
  letter-spacing: 0.04em;
  text-transform: none;
  margin: 0 0 0.4rem;
}

.lead-figure {
  margin: 1.8rem 0;
}

.lead-figure img,
.page-hero img,
.card img,
.offer-row img,
.story-row img,
.service-index-card img,
.team-card img {
  border-radius: 0.4rem;
  box-shadow:
    0 0 0 1px rgba(201, 162, 39, 0.18),
    0 20px 50px rgba(0, 0, 0, 0.45);
  object-fit: cover;
}

.lead-figure figcaption {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 0.5rem;
}

.lead-prose {
  max-width: 42rem;
}

.text-cta {
  font-family: var(--serif);
  font-size: 1.2rem;
}

.band {
  padding: 3.2rem 0;
}

.band-inset {
  background: linear-gradient(90deg, rgba(18, 16, 21, 0.9), rgba(28, 16, 28, 0.75));
  border-block: 1px solid var(--line);
}

.section-lede,
.offer-meta {
  color: var(--muted);
}

.offer-list,
.quotes,
.card-grid,
.team-grid,
.service-index,
.story-list,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offer-row {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 1.6rem;
  align-items: center;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.offer-row img {
  width: 100%;
  height: 220px;
}

.quotes {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, 1fr);
}

blockquote {
  margin: 0;
  padding: 1.2rem 1.3rem;
  background: linear-gradient(160deg, rgba(255,255,255,0.03), rgba(107, 61, 143, 0.12));
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

blockquote footer {
  color: var(--gold-soft);
  font-size: 0.92rem;
  margin-top: 0.8rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.card, .team-card, .service-index-card, .contact-form, .contact-aside {
  background: linear-gradient(165deg, rgba(20, 16, 22, 0.95), rgba(12, 10, 14, 0.92));
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  overflow: hidden;
}

.card-body, .team-card, .contact-form, .contact-aside {
  padding: 1rem 1.1rem 1.2rem;
}

.card img {
  width: 100%;
  height: 180px;
}

.band-foot {
  margin-top: 1.6rem;
}

.page {
  padding-bottom: 3rem;
}

.page-hero {
  width: min(1120px, calc(100% - 2.4rem));
  margin: 2.2rem auto 1.8rem;
}

.page-hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.page-hero-split img {
  width: 100%;
  height: 340px;
}

.prose {
  max-width: 44rem;
}

.prose h2 {
  margin-top: 1.8rem;
}

.service-index, .story-list {
  display: grid;
  gap: 1.4rem;
}

.service-index-card, .story-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.2rem;
  color: inherit;
  text-decoration: none;
  padding: 0.8rem;
}

.service-index-card img,
.story-row img {
  width: 100%;
  height: 180px;
}

.service-index-card h2,
.story-row h2 {
  margin: 0.2rem 0 0.5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.team-card img {
  width: 100%;
  height: 280px;
  border-radius: 0.4rem 0.4rem 0 0;
}

.band-tight {
  padding-top: 1rem;
}

.obs-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(12, 10, 14, 0.7);
}

.obs-table caption {
  text-align: left;
  font-family: var(--serif);
  font-style: italic;
  color: var(--muted);
  padding-bottom: 0.8rem;
}

.obs-table th,
.obs-table td {
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0.7rem;
  text-align: left;
  vertical-align: top;
}

.status {
  font-family: var(--serif);
  color: var(--gold-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}

.field {
  margin-bottom: 1rem;
}

label {
  display: block;
  font-family: var(--serif);
  margin-bottom: 0.3rem;
}

input, select, textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: rgba(9, 8, 11, 0.8);
  border: 1px solid var(--line);
  border-radius: 0.3rem;
  padding: 0.55rem 0.7rem;
}

.field-error, .form-status {
  color: var(--ruby-glow);
  font-size: 0.92rem;
  margin: 0.3rem 0 0;
}

.form-status.is-ok {
  color: var(--gold-soft);
}

.btn {
  font-family: var(--serif);
  font-size: 1.1rem;
  border: 0;
  cursor: pointer;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.btn-gold {
  background: linear-gradient(180deg, #e8d48a, var(--gold));
  color: #1a1208;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-gold::before,
.btn-gold::after {
  content: "";
  position: absolute;
  inset: auto;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 60% 40% 50% 50%;
  background: radial-gradient(circle, rgba(209, 58, 88, 0.85), transparent 70%);
  opacity: 0;
  transform: scale(0.3);
  z-index: -1;
}

.btn-gold::before { left: 0.4rem; top: -0.4rem; }
.btn-gold::after { right: 0.5rem; bottom: -0.35rem; background: radial-gradient(circle, rgba(107, 61, 143, 0.9), transparent 70%); }

.btn-gold:hover {
  box-shadow: 0 0 24px rgba(201, 162, 39, 0.55);
  color: #140c08;
}

.btn-gold:hover::before,
.btn-gold:hover::after {
  opacity: 1;
  transform: scale(1.4);
  transition: transform 0.45s ease, opacity 0.35s ease;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.4rem 0 1.4rem;
  background: rgba(8, 7, 10, 0.85);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 0.8fr;
  gap: 1.4rem;
}

.footer-brand {
  font-size: 1.4rem;
  margin: 0 0 0.4rem;
}

.footer-label {
  font-family: var(--serif);
  color: var(--gold);
  margin: 0 0 0.4rem;
}

address {
  font-style: normal;
}

.footer-copy {
  margin-top: 1.6rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-banner {
  position: sticky;
  bottom: 0;
  z-index: 15;
  background: linear-gradient(180deg, rgba(18, 12, 18, 0.96), rgba(9, 8, 11, 0.98));
  border-top: 1px solid var(--line);
  padding: 1rem 0;
}

.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-inner p {
  margin: 0;
  max-width: 46rem;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
}

.page-404 {
  min-height: 50vh;
}

@media (max-width: 900px) {
  .nav-principal {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--obsidian-2);
    border-bottom: 1px solid var(--line);
    padding: 0.8rem 1.2rem 1rem;
  }

  .nav-principal ul {
    flex-direction: column;
  }

  .offer-row,
  .page-hero-split,
  .service-index-card,
  .story-row,
  .contact-layout,
  .footer-grid,
  .quotes,
  .card-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-block;
  }
}

@media (min-width: 901px) {
  .nav-toggle {
    display: none;
  }

  .nav-principal {
    display: block !important;
  }
}
