:root {
  --obsidian: #070709;
  --obsidian-2: #101014;
  --charcoal: #2a272c;
  --ruby: #9b1b3a;
  --ruby-hot: #c42b4a;
  --violet: #6b3a7a;
  --violet-soft: #a56bb3;
  --gold: #c9a84c;
  --gold-soft: #e8d5a3;
  --petal: #f3e6ea;
  --glass: rgba(255, 255, 255, 0.04);
  --line: rgba(201, 168, 76, 0.28);
  --serif-display: "Cormorant Garamond", "Times New Roman", serif;
  --serif-body: "Source Serif 4", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--petal);
  font-family: var(--serif-body);
  font-size: 1.125rem;
  line-height: 1.7;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(155, 27, 58, 0.22), transparent 55%),
    radial-gradient(900px 420px at 0% 20%, rgba(107, 58, 122, 0.18), transparent 50%),
    var(--obsidian);
}

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='220' height='220' viewBox='0 0 220 220'%3E%3Cpath fill='none' stroke='%23c9a84c' stroke-width='0.6' d='M110 20c8 40 36 68 80 78-44 10-72 38-80 78-8-40-36-68-80-78 44-10 72-38 80-78z'/%3E%3Ccircle cx='110' cy='98' r='3' fill='%239b1b3a'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

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

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

a:hover {
  color: #fff;
}

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

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

.site-header,
main,
.site-footer,
.cookie-banner {
  position: relative;
  z-index: 1;
}

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

.site-header {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(7, 7, 9, 0.92), rgba(16, 16, 20, 0.72));
  backdrop-filter: blur(10px);
}

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

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

.brand-mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--ruby) 0 18%, transparent 19%),
    conic-gradient(from 40deg, var(--gold), var(--violet), var(--ruby), var(--gold));
  box-shadow: 0 0 0 1px var(--line), 0 0 24px rgba(155, 27, 58, 0.35);
}

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

.brand-name {
  font-family: var(--serif-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-place {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-toggle {
  display: none;
  font-family: var(--serif-display);
  font-size: 1rem;
  color: var(--gold-soft);
  background: transparent;
  border: 1px solid var(--line);
  padding: 0.4rem 0.8rem;
  cursor: pointer;
}

.site-nav ul {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--petal);
  text-decoration: none;
  font-size: 1.05rem;
}

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

.hero-edition {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: stretch;
  padding: 3.5rem 0 3rem;
}

.edition-rail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid var(--gold);
  padding-left: 1.4rem;
}

.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}

.hero-edition h1 {
  font-family: var(--serif-display);
  font-weight: 600;
  font-size: clamp(2.3rem, 4.6vw, 4.1rem);
  line-height: 1.12;
  margin: 0 0 1.2rem;
  color: #fff;
}

.lede {
  font-size: 1.22rem;
  color: rgba(243, 230, 234, 0.88);
  max-width: 38rem;
}

.hero-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--gold-soft);
}

.hero-frame {
  position: relative;
  min-height: 28rem;
  border-radius: 1.5rem 0.3rem 1.5rem 0.3rem;
  overflow: hidden;
  box-shadow:
    0 0 0 1px var(--line),
    inset 0 0 60px rgba(155, 27, 58, 0.25),
    0 30px 60px rgba(0, 0, 0, 0.45);
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.05);
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(7, 7, 9, 0.72)),
    radial-gradient(circle at 80% 20%, rgba(201, 168, 76, 0.18), transparent 40%);
  mix-blend-mode: multiply;
}

.hero-caption {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 1;
  font-style: italic;
  color: var(--gold-soft);
}

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  border: 1px solid var(--gold);
  cursor: pointer;
  text-decoration: none;
  color: var(--obsidian);
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  transition: color 0.35s ease, background 0.35s ease, transform 0.35s ease;
}

.btn::before,
.btn::after {
  content: "";
  position: absolute;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50% 50% 50% 0;
  background: rgba(155, 27, 58, 0.55);
  z-index: -1;
  opacity: 0;
  transform: scale(0.2) rotate(20deg);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.btn::before {
  left: 0.4rem;
  top: 50%;
}

.btn::after {
  right: 0.4rem;
  top: 30%;
  background: rgba(107, 58, 122, 0.55);
  border-radius: 50% 0 50% 50%;
}

.btn:hover {
  color: #fff;
  background: transparent;
  transform: translateY(-1px);
}

.btn:hover::before,
.btn:hover::after {
  opacity: 1;
  transform: scale(2.4) rotate(0deg);
}

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

.btn-gold {
  color: var(--obsidian);
}

.section {
  padding: 3.2rem 0;
}

.section-title {
  font-family: var(--serif-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 0.4rem;
}

.section-intro {
  max-width: 40rem;
  color: rgba(243, 230, 234, 0.82);
}

.offer-grid,
.card-grid,
.team-grid {
  display: grid;
  gap: 1.4rem;
  margin-top: 1.8rem;
}

.offer-grid {
  grid-template-columns: 1.35fr 1fr;
}

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

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

.glass-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.glass-card img {
  width: 100%;
  height: 12.5rem;
  object-fit: cover;
  filter: saturate(0.8);
}

.card-body,
.pad {
  padding: 1.25rem 1.35rem 1.5rem;
}

.card-body h3,
.pad h2,
.pad h3 {
  font-family: var(--serif-display);
  margin: 0 0 0.5rem;
  font-size: 1.55rem;
}

.muted {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
}

.quote-block {
  margin: 3rem auto;
  width: min(800px, calc(100% - 2.4rem));
  padding: 2rem 2.2rem;
  border-top: 1px solid var(--ruby);
  border-bottom: 1px solid var(--violet);
  font-family: var(--serif-display);
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.4;
}

.quote-block cite {
  display: block;
  margin-top: 0.8rem;
  font-size: 1rem;
  font-style: normal;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

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

.prose h2,
.prose h3 {
  font-family: var(--serif-display);
  margin: 1.8rem 0 0.7rem;
}

.service-hero,
.page-hero {
  padding: 2.8rem 0 1.5rem;
}

.page-hero h1,
.service-hero h1 {
  font-family: var(--serif-display);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.15;
  margin: 0.3rem 0 1rem;
}

.price-line {
  color: var(--gold-soft);
  font-family: var(--serif-display);
  font-size: 1.35rem;
}

.includes {
  margin: 1rem 0 0;
  padding: 0 0 0 1.1rem;
}

.journal-list {
  display: grid;
  gap: 1.6rem;
}

.journal-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.3rem;
}

.journal-item img {
  height: 9.5rem;
  width: 100%;
  object-fit: cover;
  border-radius: 0.8rem;
}

form {
  display: grid;
  gap: 0.9rem;
  max-width: 36rem;
}

label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.95rem;
}

input,
textarea,
select {
  font: inherit;
  color: var(--petal);
  background: rgba(7, 7, 9, 0.6);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  padding: 0.65rem 0.75rem;
}

.field-error {
  color: #f0a0b0;
  font-size: 0.9rem;
  min-height: 1.1em;
}

.form-status {
  margin: 0.6rem 0 0;
}

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

.form-status.is-err {
  color: #f0a0b0;
}

.site-footer {
  margin-top: 3rem;
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(155, 27, 58, 0.08));
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.5rem;
}

.footer-brand {
  font-family: var(--serif-display);
  font-size: 1.6rem;
  margin: 0 0 0.4rem;
}

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

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

.footer-links a {
  text-decoration: none;
}

.footer-copy {
  width: min(1120px, calc(100% - 2.4rem));
  margin: 2rem auto 0;
  font-size: 0.9rem;
  color: rgba(243, 230, 234, 0.55);
}

.cookie-banner {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: min(28rem, calc(100% - 2.4rem));
  padding: 1.1rem 1.2rem;
  background: rgba(16, 16, 20, 0.94);
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  z-index: 20;
}

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

.edition-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

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

.not-found {
  min-height: 60vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 3rem 1rem;
}

.not-found h1 {
  font-family: var(--serif-display);
  font-size: 3.2rem;
  margin: 0 0 0.6rem;
}

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

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

  .site-nav:not(.is-open) {
    display: none;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0.6rem;
  }

  .hero-edition,
  .offer-grid,
  .split,
  .card-grid,
  .team-grid,
  .journal-item,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-frame {
    min-height: 18rem;
  }

  .header-inner {
    flex-wrap: wrap;
  }
}
