:root {
  --obsidian: #0a090c;
  --obsidian-2: #141218;
  --charcoal: #2a272c;
  --ruby: #9b1d2e;
  --ruby-hot: #c41e3a;
  --violet: #6b3a7a;
  --petal: #8b4d9a;
  --gold: #d4af37;
  --gold-dim: #c9a227;
  --paper: #f4efe6;
  --muted: #b8b0b4;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--paper);
  background:
    radial-gradient(ellipse at 12% 0%, rgba(155, 29, 46, 0.18), transparent 42%),
    radial-gradient(ellipse at 88% 18%, rgba(107, 58, 122, 0.2), transparent 46%),
    linear-gradient(180deg, var(--obsidian) 0%, var(--obsidian-2) 48%, #0d0b10 100%);
  font-family: "Source Serif 4", "Times New Roman", serif;
  font-size: 1.125rem;
  line-height: 1.65;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.22;
  background-image:
    radial-gradient(circle at 18% 72%, rgba(212, 175, 55, 0.09) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 40%, rgba(139, 77, 154, 0.16) 0 18px, transparent 19px),
    radial-gradient(circle at 40% 20%, rgba(155, 29, 46, 0.12) 0 28px, transparent 30px);
  background-size: 220px 220px, 480px 480px, 640px 640px;
  mix-blend-mode: screen;
}

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.22em;
}

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

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

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

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

.wordmark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 1.65rem;
  letter-spacing: 0.04em;
  color: var(--paper);
  text-decoration: none;
}

.wordmark--foot {
  margin: 0 0 0.4rem;
}

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 6vw;
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  background: linear-gradient(180deg, rgba(10, 9, 12, 0.92), rgba(20, 18, 24, 0.65));
  backdrop-filter: blur(8px);
}

.masthead__place {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

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

.nav a {
  color: var(--paper);
  text-decoration: none;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
}

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

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(212, 175, 55, 0.45);
  padding: 0.4rem 0.8rem;
  font-family: inherit;
  cursor: pointer;
}

main {
  padding: 0 0 4rem;
}

.issue {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 78vh;
}

.issue__copy {
  padding: 4.5rem 6vw 3rem 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(139, 77, 154, 0.28);
}

.issue h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 1.2rem;
}

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

.issue__meta {
  font-style: italic;
  color: var(--petal);
}

.issue__plate {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.issue__plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 78vh;
  filter: saturate(0.72) contrast(1.08);
}

.issue__plate figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  margin: 0;
  padding: 0.35rem 0.7rem;
  background: rgba(10, 9, 12, 0.72);
  color: var(--paper);
  font-size: 0.9rem;
}

.text-link {
  align-self: flex-start;
  margin-top: 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
}

.band {
  padding: 3.2rem 6vw;
}

.band h2,
.page-head h1,
.detail h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
}

.feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
  padding: 1.2rem;
  background: linear-gradient(135deg, rgba(42, 39, 44, 0.75), rgba(10, 9, 12, 0.4));
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(212, 175, 55, 0.12);
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 380px;
}

.offer-list,
.service-index,
.card-grid,
.portraits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}

.offer-list a {
  display: block;
  color: inherit;
  text-decoration: none;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(155, 29, 46, 0.35);
}

.offer-list img,
.service-index img,
.card-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  margin-bottom: 0.8rem;
  filter: contrast(1.05);
}

.quote-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: rgba(155, 29, 46, 0.08);
  border-block: 1px solid rgba(139, 77, 154, 0.3);
}

blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.35;
}

blockquote footer {
  margin-top: 0.8rem;
  font-size: 1rem;
  font-style: normal;
  color: var(--muted);
}

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

.journal li {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(42, 39, 44, 0.9);
}

.page-head {
  padding: 3.2rem 6vw 1rem;
  max-width: 48rem;
}

.page-head--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: end;
}

.page-head--split figure {
  margin: 0;
}

.page-head h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin: 0 0 1rem;
}

.service-index,
.card-grid {
  padding: 0 6vw 3rem;
}

.price-line {
  color: var(--gold-dim);
}

.detail {
  max-width: 44rem;
  padding: 3rem 6vw;
}

.detail figure {
  margin: 1.4rem 0;
}

.prose {
  max-width: 44rem;
  padding: 0 6vw 3rem;
}

.wide-figure {
  margin: 0 6vw 2rem;
}

.wide-figure img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.portraits {
  padding: 0;
}

.portraits img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.05);
}

.portraits figcaption {
  margin-top: 0.6rem;
}

.portraits span {
  display: block;
  color: var(--petal);
  font-size: 0.95rem;
}

.revue-table {
  width: calc(100% - 12vw);
  margin: 0 6vw 2rem;
  border-collapse: collapse;
  font-size: 1rem;
}

.revue-table caption {
  caption-side: bottom;
  padding-top: 0.8rem;
  color: var(--muted);
  text-align: left;
}

.revue-table th,
.revue-table td {
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  padding: 0.9rem 0.6rem;
  text-align: left;
  vertical-align: top;
}

.revue-table td span {
  display: block;
  color: var(--muted);
  font-weight: 400;
  margin-top: 0.3rem;
}

.contact-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  padding: 0 6vw 3rem;
}

.letter,
.cookie-banner {
  background: linear-gradient(160deg, rgba(42, 39, 44, 0.9), rgba(10, 9, 12, 0.75));
  border: 1px solid rgba(139, 77, 154, 0.35);
  box-shadow: inset 0 1px 0 rgba(212, 175, 55, 0.16);
}

.letter {
  padding: 1.5rem;
}

.field {
  margin-bottom: 1rem;
}

label {
  display: block;
  margin-bottom: 0.3rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.65rem 0.7rem;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(10, 9, 12, 0.7);
  color: var(--paper);
  font: inherit;
}

.field-error,
.form-status {
  color: #f3c6cc;
  font-size: 0.95rem;
}

.form-status[data-ok="true"] {
  color: var(--gold);
}

.btn {
  appearance: none;
  display: inline-block;
  border: 0;
  cursor: pointer;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  padding: 0.7rem 1.35rem;
  color: var(--obsidian);
  background: radial-gradient(circle at 30% 20%, #f0d36a, var(--gold) 42%, var(--ruby-hot) 100%);
  box-shadow: 0 0 0 0 rgba(139, 77, 154, 0);
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
  text-decoration: none;
}

.btn:hover {
  color: var(--obsidian);
  transform: translateY(-2px) scale(1.03);
  filter: saturate(1.15);
  box-shadow:
    -18px -8px 0 -10px rgba(139, 77, 154, 0.45),
    18px -8px 0 -10px rgba(155, 29, 46, 0.45),
    0 16px 28px rgba(155, 29, 46, 0.28);
}

.btn:active {
  transform: scale(0.98);
  box-shadow: none;
}

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

.site-foot {
  padding: 2.4rem 6vw 5.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.22);
  background: #08070a;
  color: var(--muted);
}

.site-foot__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

address {
  font-style: normal;
}

.legal-links {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
}

.cookie-banner {
  position: fixed;
  z-index: 30;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  max-width: 42rem;
  padding: 1rem 1.1rem;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.7rem;
}

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

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--obsidian);
    padding: 1rem 6vw 1.4rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  }

  .nav.is-open {
    display: block;
  }

  .nav ul {
    flex-direction: column;
  }

  .masthead {
    position: relative;
  }

  .issue,
  .feature-card,
  .quote-band,
  .page-head--split,
  .contact-split,
  .site-foot__grid,
  .journal li {
    grid-template-columns: 1fr;
  }

  .issue__plate img {
    min-height: 42vh;
  }
}
