:root {
  --obsidian: #0a0a0c;
  --obsidian-2: #121214;
  --charcoal: #2a2a2e;
  --charcoal-2: #3a3a40;
  --ruby: #9b1b3a;
  --ruby-glow: #c41e4a;
  --petal: #6b3a7a;
  --petal-light: #a56bb8;
  --gold: #c9a227;
  --gold-soft: #e4c56a;
  --ivory: #f3ead8;
  --mist: #cfc6b8;
  --glass: rgba(18, 18, 22, 0.72);
  --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;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(155, 27, 58, 0.18), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(107, 58, 122, 0.16), transparent 50%),
    var(--obsidian);
  color: var(--ivory);
  font-family: var(--serif-body);
  font-size: 1.125rem;
  line-height: 1.7;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  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='%236b3a7a' stroke-opacity='0.55' stroke-width='0.8' d='M90 12c8 22 22 36 40 42-18 6-32 20-40 42-8-22-22-36-40-42 18-6 32-20 40-42z'/%3E%3Cpath fill='none' stroke='%23c9a227' stroke-opacity='0.28' stroke-width='0.6' d='M30 90c4 12 12 20 22 24-10 4-18 12-22 24-4-12-12-20-22-24 10-4 18-12 22-24z'/%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-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  background: var(--gold);
  color: var(--obsidian);
  padding: 0.4rem 0.8rem;
  z-index: 50;
}

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

.site-header {
  border-bottom: 1px solid rgba(201, 162, 39, 0.22);
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.92), rgba(10, 10, 12, 0.7));
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 20;
}

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

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

.brand-mark {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 40%, var(--gold) 0 18%, transparent 19%),
    radial-gradient(circle at 50% 50%, var(--ruby) 0 42%, var(--petal) 43% 70%, transparent 71%);
  box-shadow: 0 0 16px rgba(196, 30, 74, 0.45);
}

.brand-name {
  font-family: var(--serif-display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
}

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

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

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

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

@media (max-width: 860px) {
  .header-row {
    flex-wrap: wrap;
  }
  .site-nav {
    width: 100%;
  }
  .site-nav[hidden] {
    display: none;
  }
  .site-nav ul {
    flex-direction: column;
    padding-bottom: 0.8rem;
  }
}

@media (min-width: 861px) {
  .nav-toggle {
    display: none;
  }
  .site-nav[hidden] {
    display: block;
  }
}

.masthead {
  padding: 3.2rem 0 1.2rem;
}

.kicker {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.kicker::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--gold);
}

.masthead h1 {
  font-family: var(--serif-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.12;
  margin: 0.7rem 0 1rem;
  max-width: 18ch;
}

.lead {
  max-width: 62ch;
  color: var(--mist);
  font-size: 1.2rem;
}

.hero-frame {
  margin: 2rem 0 3rem;
  position: relative;
}

.hero-frame img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border: 1px solid rgba(201, 162, 39, 0.25);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.hero-caption {
  font-size: 0.95rem;
  color: var(--mist);
  margin-top: 0.6rem;
  font-style: italic;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  font-family: var(--serif-display);
  font-size: 1.15rem;
  padding: 0.7rem 1.4rem;
  text-decoration: none;
  color: var(--ivory);
  background: linear-gradient(180deg, #3a1420, var(--ruby));
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn::before,
.btn::after {
  content: "";
  position: absolute;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 60% 40% 70% 30%;
  background: radial-gradient(circle at 30% 30%, rgba(228, 197, 106, 0.7), rgba(165, 107, 184, 0.15) 55%, transparent 70%);
  opacity: 0;
  transform: scale(0.2);
  transition: opacity 0.35s ease, transform 0.45s ease;
  z-index: -1;
  pointer-events: none;
}

.btn::before {
  left: -0.4rem;
  top: -0.5rem;
}

.btn::after {
  right: -0.5rem;
  bottom: -0.6rem;
  border-radius: 40% 60% 30% 70%;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(196, 30, 74, 0.45);
  color: var(--ivory);
}

.btn:hover::before,
.btn:hover::after,
.btn:focus-visible::before,
.btn:focus-visible::after {
  opacity: 1;
  transform: scale(1.35);
}

.btn-gold {
  background: linear-gradient(180deg, #e4c56a, #8a7014);
  color: var(--obsidian);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(201, 162, 39, 0.45);
  color: var(--ivory);
}

.section {
  padding: 2.4rem 0 3rem;
}

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

.panel {
  background: var(--glass);
  border: 1px solid rgba(107, 58, 122, 0.35);
  padding: 1.4rem 1.5rem;
  box-shadow: inset 0 1px 0 rgba(243, 234, 216, 0.06);
}

.primary-offer {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.primary-offer img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border: 1px solid rgba(201, 162, 39, 0.2);
}

.offer-grid,
.post-grid,
.team-grid,
.quote-grid {
  display: grid;
  gap: 1.2rem;
}

.offer-grid,
.post-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: linear-gradient(180deg, rgba(42, 42, 46, 0.75), rgba(10, 10, 12, 0.9));
  border: 1px solid rgba(201, 162, 39, 0.16);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

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

.card-body {
  padding: 1rem 1.1rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card h3 {
  font-family: var(--serif-display);
  margin: 0 0 0.4rem;
  font-size: 1.45rem;
}

.muted {
  color: var(--mist);
  font-size: 0.98rem;
}

.price {
  color: var(--gold-soft);
  margin: 0.4rem 0 0.8rem;
}

.card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.quote-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

blockquote {
  margin: 0;
  font-style: italic;
  font-size: 1.15rem;
}

.cite {
  margin-top: 0.8rem;
  color: var(--gold);
  font-style: normal;
  font-size: 0.95rem;
}

.team-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.portrait {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.prose {
  max-width: 68ch;
}

.prose h2,
.prose h3 {
  font-family: var(--serif-display);
}

.prose p + p {
  margin-top: 1rem;
}

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

.page-hero img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border: 1px solid rgba(201, 162, 39, 0.22);
}

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

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

input,
textarea,
select {
  font: inherit;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(201, 162, 39, 0.28);
  background: rgba(10, 10, 12, 0.7);
  color: var(--ivory);
  border-radius: 0;
}

.field-error,
.form-error {
  color: #f0a0b0;
  font-size: 0.95rem;
  margin: 0;
}

.form-success {
  color: var(--gold-soft);
}

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid rgba(201, 162, 39, 0.22);
  background: #08080a;
  padding: 2.4rem 0 1.4rem;
}

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

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

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

address {
  font-style: normal;
}

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

.footer-links li {
  margin: 0.2rem 0;
}

.legal-line {
  margin-top: 2rem;
  color: var(--mist);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  background: linear-gradient(180deg, #16141a, #0c0c0e);
  border: 1px solid rgba(201, 162, 39, 0.35);
  padding: 1rem 1.2rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  max-width: 720px;
  margin-inline: auto;
}

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

.meta-row {
  color: var(--mist);
  font-size: 0.95rem;
}

ul.plain {
  padding-left: 1.1rem;
}

.not-found {
  min-height: 50vh;
  padding: 4rem 0;
}

@media (max-width: 800px) {
  .primary-offer,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
