:root {
  --obsidian: #0a0a0c;
  --obsidian-2: #121216;
  --charcoal: #2a2a32;
  --ruby: #9b1b30;
  --ruby-bright: #c41e3a;
  --violet: #6b2d5c;
  --violet-soft: #8b4d7a;
  --gold: #d4af37;
  --gold-dim: #a6862a;
  --paper: #f3ece3;
  --muted: #c4b8ad;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --text: "Libre Baskerville", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(155, 27, 48, 0.18), transparent 55%),
    radial-gradient(900px 400px at 100% 0%, rgba(107, 45, 92, 0.22), transparent 50%),
    var(--obsidian);
  color: var(--paper);
  font-family: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
  min-height: 100vh;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.09;
  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='%23d4af37' stroke-width='0.6' d='M90 20c8 28 36 42 36 70 0 28-20 48-36 70-16-22-36-42-36-70 0-28 28-42 36-70z'/%3E%3Cpath fill='none' stroke='%238b4d7a' stroke-width='0.5' d='M40 90c20-14 28-40 50-48 22 8 30 34 50 48-20 14-28 40-50 48-22-8-30-34-50-48z'/%3E%3C/svg%3E");
  z-index: 0;
}

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

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

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

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

h1,
h2,
h3,
.brand-text strong,
.footer-brand,
.kicker {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  line-height: 1.12;
  margin: 0 0 0.6em;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 0 0.5em;
}

h3 {
  font-size: 1.45rem;
  margin: 0 0 0.3em;
}

.kicker {
  color: var(--ruby-bright);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  margin: 0 0 0.6em;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 42rem;
}

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

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

.site-header {
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.92), rgba(18, 18, 22, 0.78));
  backdrop-filter: blur(10px);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.brand-mark {
  width: 28px;
  height: 40px;
  background: radial-gradient(circle at 50% 30%, var(--gold), transparent 40%),
    linear-gradient(180deg, var(--ruby-bright), var(--violet));
  clip-path: polygon(50% 0, 100% 38%, 78% 100%, 22% 100%, 0 38%);
  box-shadow: 0 0 18px rgba(196, 30, 58, 0.45);
}

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

.brand-text strong {
  font-size: 1.35rem;
}

.brand-text span {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--paper);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.15rem;
}

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

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--gold-dim);
  font-family: var(--serif);
  font-size: 1rem;
  padding: 0.35rem 0.8rem;
}

.btn {
  display: inline-block;
  font-family: var(--serif);
  font-size: 1.1rem;
  border: 1px solid transparent;
  padding: 0.7rem 1.35rem;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.btn-gold {
  background: linear-gradient(180deg, #e3c96a, var(--gold) 40%, var(--gold-dim));
  color: var(--obsidian);
  box-shadow: 0 0 0 0 rgba(155, 27, 48, 0.3);
}

.btn-gold:hover {
  color: var(--obsidian);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 6px rgba(155, 27, 48, 0.12),
    12px -8px 0 -6px rgba(107, 45, 92, 0.45),
    -12px -8px 0 -6px rgba(196, 30, 58, 0.4),
    0 14px 28px rgba(212, 175, 55, 0.25);
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(212, 175, 55, 0.45);
}

.btn-ghost:hover {
  color: var(--gold);
  border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.2rem 1.4rem 4.5rem;
}

.hero-editorial {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 4rem;
}

.hero-figure {
  margin: 0;
  position: relative;
}

.hero-figure img {
  width: 100%;
  height: min(72vh, 640px);
  object-fit: cover;
  filter: saturate(0.85) contrast(1.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: inset 0 0 80px rgba(10, 10, 12, 0.35), 0 20px 50px rgba(0, 0, 0, 0.45);
}

.hero-figure figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(10, 10, 12, 0.72);
  border: 1px solid rgba(212, 175, 55, 0.28);
  padding: 0.4rem 0.7rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-copy blockquote {
  margin: 0 0 1.4rem;
  padding-left: 1rem;
  border-left: 2px solid var(--ruby);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.35;
}

.hero-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-link a {
  font-family: var(--serif);
  font-size: 1.3rem;
}

.band,
.split-quote,
.team-band,
.closing-cta {
  margin: 4rem 0;
}

.offer-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.offer-list li + li {
  margin-top: 1.5rem;
}

.offer-list a {
  display: grid;
  grid-template-columns: auto 200px 1fr;
  gap: 1.4rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 1rem;
  background: linear-gradient(90deg, rgba(42, 42, 50, 0.55), rgba(18, 18, 22, 0.3));
  border: 1px solid rgba(107, 45, 92, 0.35);
}

.offer-list a:hover {
  border-color: var(--gold-dim);
}

.offer-index {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 2rem;
}

.offer-list img {
  width: 200px;
  height: 140px;
  object-fit: cover;
}

.price {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.quotes figure {
  margin: 0;
  padding: 1.5rem;
  background: rgba(18, 18, 22, 0.8);
  border: 1px solid rgba(155, 27, 48, 0.35);
}

.quotes blockquote {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
}

.quotes figcaption {
  color: var(--muted);
  font-size: 0.9rem;
}

.team-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.team-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: grayscale(0.25) contrast(1.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 0.8rem;
}

.role {
  color: var(--violet-soft);
  font-family: var(--serif);
  margin-top: 0;
}

.closing-cta {
  text-align: center;
  padding: 2.5rem 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  background: radial-gradient(600px 120px at 50% 0%, rgba(155, 27, 48, 0.2), transparent);
}

.page-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.page-head img {
  height: 320px;
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.page-head--plain {
  display: block;
}

.service-stack {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.service-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.6rem;
  align-items: center;
}

.service-row img {
  height: 190px;
  width: 100%;
  object-fit: cover;
}

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

.detail-image {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  margin: 1.2rem 0 2rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.prose {
  max-width: 42rem;
}

.prose p {
  margin: 0 0 1.1rem;
}

.detail-next {
  margin-top: 2rem;
}

.carnet-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.carnet-list a {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.4rem;
  text-decoration: none;
  color: inherit;
}

.carnet-list img {
  height: 170px;
  width: 100%;
  object-fit: cover;
}

.carnet-list time {
  color: var(--gold-dim);
  font-size: 0.9rem;
}

.calendar {
  list-style: none;
  padding: 0;
  margin: 0;
}

.calendar li {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.2rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(107, 45, 92, 0.4);
}

.calendar time {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.25rem;
}

.calendar .place {
  color: var(--violet-soft);
  margin: 0.2rem 0;
}

.calendar .note {
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
}

.field {
  margin-bottom: 1rem;
}

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

.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(10, 10, 12, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--paper);
  padding: 0.6rem 0.7rem;
  font-family: var(--text);
  font-size: 1rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 1px solid var(--gold);
}

.field-error,
.island-error {
  color: #f0b4b8;
  font-size: 0.9rem;
  margin: 0.3rem 0 0;
}

.form-status.is-success {
  color: #d4e0c4;
}

.form-status.is-error,
.island-error {
  color: #f0b4b8;
}

.contact-aside {
  padding: 1.4rem;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: rgba(18, 18, 22, 0.65);
}

.legal {
  max-width: 44rem;
}

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

.legal-meta {
  color: var(--muted);
}

.missing {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 36rem;
}

.site-footer {
  border-top: 1px solid rgba(212, 175, 55, 0.22);
  padding: 2.5rem 1.4rem 5.5rem;
  background: #08080a;
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand {
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}

.site-footer address {
  font-style: normal;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-note {
  max-width: 1180px;
  margin: 2rem auto 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  background: linear-gradient(180deg, rgba(18, 18, 22, 0.96), rgba(10, 10, 12, 0.98));
  border-top: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.45);
}

.cookie-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.4rem 1.2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}

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

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #0e0e12;
    flex-direction: column;
    padding: 1rem 1.4rem 1.4rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-editorial,
  .quotes,
  .team-grid,
  .page-head,
  .service-row,
  .carnet-list a,
  .calendar li,
  .contact-layout,
  .footer-grid,
  .cookie-inner,
  .offer-list a {
    grid-template-columns: 1fr;
  }

  .offer-list img,
  .carnet-list img,
  .hero-figure img {
    width: 100%;
    height: 220px;
  }
}
