:root {
  --obsidian: #070709;
  --obsidian-2: #101014;
  --charcoal: #2a2a32;
  --ruby: #9b1d3a;
  --ruby-hot: #c42b4e;
  --violet: #5a2a6e;
  --petal: #8e4fa3;
  --gold: #c9a227;
  --gold-soft: #e4d7a5;
  --glass: rgba(255, 255, 255, 0.06);
  --ink: #f4efe8;
  --muted: #b8b0c2;
  --serif-display: "Cormorant Garamond", "Times New Roman", serif;
  --serif-body: "Libre Baskerville", Georgia, serif;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(155, 29, 58, 0.22), transparent 55%),
    radial-gradient(900px 500px at 110% 0%, rgba(90, 42, 110, 0.28), transparent 50%),
    radial-gradient(800px 400px at 50% 120%, rgba(201, 162, 39, 0.08), transparent 45%),
    var(--obsidian);
  font-family: var(--serif-body);
  font-size: 1.02rem;
  line-height: 1.7;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cpath fill='none' stroke='%238b1e3f' stroke-opacity='0.35' d='M110 12c8 28 36 46 36 74 0 22-16 40-36 48-20-8-36-26-36-48 0-28 28-46 36-74z'/%3E%3Cpath fill='none' stroke='%235a2a6e' stroke-opacity='0.3' d='M40 140c20-8 34-4 54 10 14 10 18 28 8 42-18 8-40 2-54-14-10-12-12-28-8-38z'/%3E%3Cpath fill='none' stroke='%23c9a227' stroke-opacity='0.18' d='M168 150c12 10 14 28 4 40-16 10-36 6-48-8 8-14 26-28 44-32z'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

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

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

a {
  color: var(--gold-soft);
}

a:hover {
  color: #fff;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ruby);
  color: #fff;
  padding: 0.5rem 1rem;
}

.skip:focus {
  left: 0.5rem;
  top: 0.5rem;
  z-index: 20;
}

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

.site-head {
  border-bottom: 1px solid rgba(201, 162, 39, 0.18);
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.92), rgba(10, 10, 12, 0.65));
  backdrop-filter: blur(10px);
}

.site-head__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  flex-wrap: wrap;
}

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

.brand__mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, #c9a227 0 12%, transparent 13%),
    radial-gradient(circle at 50% 45%, #c42b4e 0 38%, #3a1020 39% 70%, #070709 71%);
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.45), 0 0 18px rgba(196, 43, 78, 0.35);
}

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

.brand__name {
  font-family: var(--serif-display);
  font-size: 1.15rem;
  font-weight: 600;
}

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

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: var(--ink);
  font-family: var(--serif-display);
  padding: 0.4rem 0.7rem;
  cursor: pointer;
}

.nav-toggle__bars {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin-top: 0.35rem;
  background: var(--gold);
  box-shadow: 0 5px 0 var(--gold), 0 -5px 0 var(--gold);
}

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

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

.site-nav a:hover {
  color: var(--gold-soft);
}

.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 78vh;
}

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

.hero-split__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.08);
}

.hero-split__figure figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  margin: 0;
  padding: 0.35rem 0.7rem;
  background: rgba(7, 7, 9, 0.72);
  border: 1px solid rgba(201, 162, 39, 0.28);
  font-size: 0.8rem;
  color: var(--gold-soft);
}

.hero-split__copy {
  padding: clamp(2rem, 6vw, 5rem) clamp(1.4rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(90, 42, 110, 0.18), transparent 40%),
    linear-gradient(180deg, rgba(16, 16, 20, 0.4), rgba(7, 7, 9, 0.2));
  border-left: 1px solid rgba(201, 162, 39, 0.16);
}

.kicker {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold);
  margin: 0 0 0.8rem;
}

h1,
h2,
h3 {
  font-family: var(--serif-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.8rem;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.lede {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 40rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0.72rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.45);
  text-decoration: none;
  font-family: var(--serif-display);
  font-size: 1.15rem;
  cursor: pointer;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(155, 29, 58, 0.55), rgba(20, 10, 16, 0.9));
  transition: transform 0.35s ease, box-shadow 0.35s ease, color 0.2s;
}

.btn--petal::before,
.btn--petal::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 1.6rem;
  height: 2.4rem;
  background: radial-gradient(circle at 50% 30%, rgba(201, 162, 39, 0.9), rgba(196, 43, 78, 0.1) 70%);
  border-radius: 80% 80% 40% 40%;
  opacity: 0;
  transform: scale(0.2) rotate(0deg);
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.btn--petal::before {
  left: 18%;
  top: -40%;
}

.btn--petal::after {
  right: 16%;
  bottom: -45%;
  transform: scale(0.2) rotate(180deg);
}

.btn--petal:hover,
.btn--petal:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.4), 0 0 28px rgba(196, 43, 78, 0.45);
  color: #fff;
}

.btn--petal:hover::before,
.btn--petal:focus-visible::before,
.btn--petal:hover::after,
.btn--petal:focus-visible::after {
  opacity: 0.85;
}

.btn--petal:hover::before,
.btn--petal:focus-visible::before {
  transform: scale(1.4) rotate(-18deg);
}

.btn--petal:hover::after,
.btn--petal:focus-visible::after {
  transform: scale(1.3) rotate(160deg);
}

.btn--ghost {
  background: transparent;
  color: var(--gold-soft);
}

.band {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.band--bloom {
  background:
    linear-gradient(90deg, rgba(90, 42, 110, 0.16), rgba(155, 29, 58, 0.08) 40%, transparent);
  border-block: 1px solid rgba(201, 162, 39, 0.12);
}

.band--tight {
  padding-top: 0;
}

.intro-pair {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.5rem;
  margin-bottom: 2.2rem;
}

.feature-service {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
  padding: 1.2rem;
  background: var(--glass);
  border: 1px solid rgba(201, 162, 39, 0.16);
  box-shadow: inset 0 0 40px rgba(155, 29, 58, 0.08);
}

.feature-service img {
  border-radius: 2px;
  object-fit: cover;
  max-height: 360px;
  width: 100%;
}

.meta-line {
  color: var(--gold);
  font-size: 0.92rem;
}

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

.offer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.offer-list a {
  display: grid;
  gap: 0.35rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.14);
  text-decoration: none;
  color: inherit;
}

.offer-list__title {
  font-family: var(--serif-display);
  font-size: 1.6rem;
  color: var(--ink);
}

.offer-list__sum {
  color: var(--muted);
}

.offer-list__meta {
  color: var(--gold);
  font-size: 0.9rem;
}

.band-cta {
  margin-top: 1.8rem;
}

.quote-stack blockquote {
  margin: 0 0 1.8rem;
  padding: 1.2rem 0 1.2rem 1.2rem;
  border-left: 2px solid var(--ruby-hot);
  background: linear-gradient(90deg, rgba(155, 29, 58, 0.12), transparent 70%);
}

.quote-stack blockquote p {
  font-family: var(--serif-display);
  font-size: 1.45rem;
  font-style: italic;
  margin: 0 0 0.6rem;
}

.quote-stack footer {
  color: var(--muted);
  font-size: 0.9rem;
}

.visit-row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  padding: 1.5rem;
  border: 1px solid rgba(201, 162, 39, 0.2);
  background: rgba(16, 16, 20, 0.55);
}

.page-hero {
  padding: clamp(2.4rem, 6vw, 4.5rem) 0 0;
}

.page-hero--offset h1 {
  max-width: 18ch;
}

.page-hero__with-img {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.page-hero__with-img img {
  border: 1px solid rgba(201, 162, 39, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.service-board {
  display: grid;
  gap: 1.6rem;
}

.service-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.4rem;
  background: rgba(16, 16, 20, 0.5);
  border: 1px solid rgba(142, 79, 163, 0.2);
}

.service-card img {
  height: 100%;
  object-fit: cover;
  min-height: 180px;
}

.service-card__body {
  padding: 1.1rem 1.1rem 1.1rem 0;
}

.service-card h2 a {
  text-decoration: none;
  color: var(--ink);
}

.detail__head {
  padding: 3rem 0 1.5rem;
}

.detail__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  padding-bottom: 4rem;
}

.detail__figure img {
  border: 1px solid rgba(201, 162, 39, 0.2);
}

.prose {
  max-width: 42rem;
}

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

.legal {
  padding-bottom: 3rem;
}

.drill-agenda {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.drill-agenda li {
  display: grid;
  grid-template-columns: 8rem 1fr;
  column-gap: 1.2rem;
  padding: 1.1rem 1.2rem;
  background: rgba(16, 16, 20, 0.55);
  border: 1px solid rgba(201, 162, 39, 0.14);
}

.drill-agenda li h2,
.drill-agenda li .meta-line,
.drill-agenda li p:last-child {
  grid-column: 2;
}

.drill-agenda__day {
  grid-row: 1 / span 4;
  font-family: var(--serif-display);
  font-size: 1.3rem;
  color: var(--gold);
  margin: 0;
}

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

.portrait img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: contrast(1.05);
  border-bottom: 2px solid var(--ruby);
}

.journal-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.journal-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.3rem;
  align-items: center;
}

.journal-row h2 a {
  text-decoration: none;
  color: var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  padding-bottom: 3rem;
}

.studio-form {
  display: grid;
  gap: 1rem;
}

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

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.65rem 0.7rem;
  border: 1px solid rgba(201, 162, 39, 0.28);
  background: rgba(7, 7, 9, 0.7);
  color: var(--ink);
  font: inherit;
}

.field-error,
.form-banner {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
}

.field-error,
.form-banner--error {
  color: #f3b4c2;
}

.form-banner--ok {
  color: #d8ecb8;
}

.contact-aside {
  padding: 1.2rem;
  border: 1px solid rgba(201, 162, 39, 0.18);
  background: rgba(90, 42, 110, 0.12);
  height: fit-content;
}

.site-foot {
  margin-top: 2rem;
  border-top: 1px solid rgba(201, 162, 39, 0.18);
  background: #050506;
  padding: 2.4rem 0 1.2rem;
}

.site-foot__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
}

.foot-name {
  font-family: var(--serif-display);
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
}

.foot-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

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

.foot-links a {
  text-decoration: none;
  color: var(--muted);
}

.site-foot__base {
  margin-top: 1.8rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: linear-gradient(180deg, rgba(16, 16, 20, 0.96), rgba(7, 7, 9, 0.98));
  border-top: 1px solid rgba(201, 162, 39, 0.3);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.45);
}

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

.cookie-banner__inner p {
  margin: 0;
  flex: 1 1 20rem;
  color: var(--muted);
}

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

@media (max-width: 900px) {
  .hero-split,
  .intro-pair,
  .feature-service,
  .page-hero__with-img,
  .service-card,
  .detail__grid,
  .team-grid,
  .journal-row,
  .contact-grid,
  .site-foot__grid,
  .drill-agenda li {
    grid-template-columns: 1fr;
  }

  .drill-agenda li h2,
  .drill-agenda li .meta-line,
  .drill-agenda li p:last-child,
  .drill-agenda__day {
    grid-column: 1;
    grid-row: auto;
  }

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

  .site-nav {
    flex-basis: 100%;
    flex-direction: column;
    gap: 0.5rem;
    padding-bottom: 0.8rem;
  }

  .site-nav[hidden] {
    display: none !important;
  }

  .visit-row {
    flex-direction: column;
    align-items: start;
  }
}

@media (min-width: 901px) {
  .site-nav[hidden] {
    display: flex !important;
  }
}
