:root {
  --black: #050303;
  --near-black: #0c0607;
  --panel: rgba(16, 7, 8, 0.84);
  --panel-strong: rgba(8, 4, 5, 0.92);
  --ruby: #8f0018;
  --ruby-bright: #b60020;
  --ruby-deep: #2c0008;
  --wine: #25070c;
  --ivory: #f7efe8;
  --soft: #dec9c1;
  --muted: #b99e96;
  --line: rgba(185, 24, 44, 0.38);
  --gold-muted: #b99661;
  --script: "Great Vibes", "Segoe Script", "Brush Script MT", "Lucida Handwriting", cursive;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ivory);
  background:
    linear-gradient(180deg, rgba(5, 3, 3, 0.76), rgba(5, 3, 3, 0.94)),
    url("assets/main-background-rose-candle.png") center / cover fixed no-repeat,
    var(--black);
  font-family: var(--sans);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 12px 32px;
  background: rgba(5, 3, 3, 0.86);
  border-bottom: 1px solid rgba(185, 24, 44, 0.24);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand-photo,
.profile-photo {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border: 1px solid rgba(215, 51, 72, 0.72);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 3px rgba(5, 3, 3, 0.8), 0 12px 28px rgba(0, 0, 0, 0.45);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 700;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--soft);
  font-size: 0.9rem;
}

.nav-links a {
  padding: 10px 11px;
  border-radius: 8px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ivory);
  background: rgba(185, 24, 44, 0.12);
  outline: none;
}

.header-action,
.btn,
.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(215, 51, 72, 0.78);
  border-radius: 8px;
  color: var(--ivory);
  background: transparent;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(247, 239, 232, 0.04);
}

.btn-primary,
.btn-secondary,
.footer-btn-secondary {
  background: transparent;
}

.header-action:hover,
.header-action:focus-visible,
.btn:hover,
.btn:focus-visible,
.footer-btn:hover,
.footer-btn:focus-visible {
  color: #fff;
  border-color: var(--ruby-bright);
  background: rgba(185, 24, 44, 0.13);
  outline: none;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 128px 32px 72px;
  border-bottom: 1px solid rgba(185, 24, 44, 0.28);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 3, 3, 0.96) 0%, rgba(5, 3, 3, 0.82) 42%, rgba(5, 3, 3, 0.45) 100%),
    linear-gradient(180deg, rgba(5, 3, 3, 0.36), rgba(5, 3, 3, 0.9));
}

.hero-content {
  position: relative;
  width: min(1080px, 100%);
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ruby-bright);
  font-family: var(--script);
  font-weight: 400;
  letter-spacing: 0;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.55);
}

h1 {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(3.6rem, 6.2vw, 4.8rem);
  line-height: 0.92;
  white-space: nowrap;
}

.hero-subtitle {
  margin: 14px 0 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-video-frame {
  position: relative;
  width: min(460px, 100%);
  margin: 28px auto 0;
  padding: 8px;
  border: 1px solid rgba(182, 0, 32, 0.48);
  border-radius: 8px;
  background: rgba(5, 3, 3, 0.34);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(3px);
}

.hero-video-frame::before,
.hero-video-frame::after {
  content: "";
  position: absolute;
  top: 8%;
  width: clamp(92px, 13vw, 170px);
  height: 84%;
  pointer-events: none;
  opacity: 0.82;
}

.hero-video-frame::before {
  right: calc(100% + 18px);
  background:
    linear-gradient(180deg, transparent, rgba(185, 150, 97, 0.72) 18%, rgba(185, 150, 97, 0.28) 50%, rgba(185, 150, 97, 0.72) 82%, transparent) right center / 1px 100% no-repeat,
    radial-gradient(ellipse at 78% 18%, rgba(182, 0, 32, 0.24), transparent 42%),
    radial-gradient(ellipse at 72% 78%, rgba(143, 0, 24, 0.3), transparent 46%),
    radial-gradient(ellipse at 50% 50%, rgba(185, 150, 97, 0.12), transparent 52%);
  border-right: 1px solid rgba(185, 150, 97, 0.22);
}

.hero-video-frame::after {
  left: calc(100% + 18px);
  background:
    linear-gradient(180deg, transparent, rgba(185, 150, 97, 0.72) 18%, rgba(185, 150, 97, 0.28) 50%, rgba(185, 150, 97, 0.72) 82%, transparent) left center / 1px 100% no-repeat,
    radial-gradient(ellipse at 20% 25%, rgba(255, 255, 255, 0.16), transparent 30%),
    radial-gradient(ellipse at 36% 52%, rgba(255, 255, 255, 0.11), transparent 38%),
    radial-gradient(ellipse at 28% 76%, rgba(182, 0, 32, 0.22), transparent 46%);
  border-left: 1px solid rgba(185, 150, 97, 0.22);
  filter: blur(0.2px);
}

.hero-video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  height: auto;
  max-height: min(72vh, 780px);
  margin: 0 auto;
  border-radius: 6px;
  object-fit: contain;
  background: #050303;
}

h2 {
  font-size: 4rem;
  line-height: 0.98;
}

.single-line-title {
  white-space: nowrap;
}

h3 {
  font-size: 2.7rem;
  line-height: 1;
}

p {
  color: var(--soft);
  line-height: 1.72;
}

.hero-copy {
  width: min(1040px, 100%);
  margin: 18px auto 0;
  color: #f0dfd8;
  font-family: var(--serif);
  font-size: 1.16rem;
  line-height: 1.42;
  text-align: center;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-actions {
  justify-content: center;
}

.section {
  position: relative;
  padding: 92px 32px;
  background: rgba(5, 3, 3, 0.52);
}

.section-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.split,
.consultation,
.proof-grid,
.profile-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
}

.image-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.32;
  background-position: center;
  background-size: cover;
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(5, 3, 3, 0.88), rgba(5, 3, 3, 0.64)),
    linear-gradient(180deg, rgba(76, 7, 18, 0.18), rgba(5, 3, 3, 0.84));
}

.image-panel-ruby::before {
  background-image: url("assets/main-background-rose-candle.png");
}

.image-panel-candles::before {
  background-image: url("assets/main-background-rose-candle.png");
}

.intro-layout {
  display: grid;
  gap: 30px;
}

.intro-heading {
  max-width: 1180px;
}

.intro-content {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.intro-profile {
  width: min(430px, 100%);
  margin: 0;
}

.intro-profile img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(182, 0, 32, 0.34);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.lead-block {
  display: grid;
  gap: 14px;
  align-self: start;
  padding: 28px;
  border: 1px solid rgba(185, 24, 44, 0.24);
  border-radius: 8px;
  background: rgba(8, 4, 5, 0.66);
  backdrop-filter: blur(8px);
}

.lead-block p,
.consult-copy p,
.profile-inner p,
.contact-content p {
  margin: 0;
  font-size: 1.03rem;
}

.dark-band {
  background:
    linear-gradient(180deg, rgba(5, 3, 3, 0.18), rgba(5, 3, 3, 0.46)),
    rgba(5, 3, 3, 0.18);
  border-top: 1px solid rgba(230, 0, 35, 0.16);
  border-bottom: 1px solid rgba(230, 0, 35, 0.16);
}

.section-heading {
  max-width: 1180px;
}

.section-heading h2 {
  white-space: nowrap;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.service-card {
  min-height: 228px;
  padding: 23px;
  border: 1px solid rgba(230, 0, 35, 0.24);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(8, 4, 5, 0.58), rgba(5, 3, 3, 0.42));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(3px);
}

.service-card h3 {
  margin-top: 16px;
  color: var(--ruby-bright);
  font-size: 2.38rem;
}

.service-card p {
  margin: 10px 0 0;
}

.card-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  width: 34px;
  border: 1px solid rgba(185, 24, 44, 0.55);
  color: var(--soft);
  font-size: 0.8rem;
  font-weight: 900;
}

.consultation-section {
  padding-top: 72px;
  padding-bottom: 72px;
  background:
    linear-gradient(90deg, rgba(5, 3, 3, 0.9) 0%, rgba(5, 3, 3, 0.72) 44%, rgba(5, 3, 3, 0.2) 100%),
    url("assets/ritual-rose-table.png") right center / auto min(100%, 680px) no-repeat,
    rgba(5, 3, 3, 0.32);
}

.consultation {
  gap: 44px;
}

.steps {
  display: grid;
  gap: 10px;
}

.step {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-left: 3px solid var(--ruby);
  background: rgba(12, 6, 7, 0.78);
}

.step strong {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.22rem;
}

.step span {
  color: var(--muted);
}

.ritual-gallery-section {
  background:
    linear-gradient(180deg, rgba(5, 3, 3, 0.78), rgba(5, 3, 3, 0.9)),
    rgba(5, 3, 3, 0.52);
  border-top: 1px solid rgba(182, 0, 32, 0.18);
  border-bottom: 1px solid rgba(182, 0, 32, 0.18);
}

.gallery-heading {
  width: min(860px, 100%);
  margin-bottom: 28px;
}

.gallery-heading h2 {
  white-space: normal;
}

.ritual-gallery {
  display: grid;
  width: min(1020px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.28fr) minmax(190px, 0.68fr) minmax(190px, 0.68fr);
  gap: 12px;
  align-items: stretch;
}

.gallery-card {
  position: relative;
  min-height: 310px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(182, 0, 32, 0.28);
  border-radius: 8px;
  background: rgba(5, 3, 3, 0.5);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.34);
}

.gallery-card-wide {
  min-height: 430px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.distance-box {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 42px;
  margin-top: 56px;
  padding: 30px;
  border: 1px solid rgba(230, 0, 35, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(5, 3, 3, 0.42), rgba(5, 3, 3, 0.58)),
    url("assets/main-background-rose-candle.png") center / cover no-repeat;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(3px);
}

.distance-box p {
  margin: 0;
}

.distance-box .btn {
  margin-top: 22px;
}

.reviews-section {
  overflow: hidden;
  padding-top: 54px;
  padding-bottom: 54px;
  background:
    linear-gradient(180deg, rgba(5, 3, 3, 0.8), rgba(76, 7, 18, 0.82)),
    url("assets/main-background-rose-candle.png") center / cover fixed no-repeat;
}

.reviews-carousel {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.reviews-viewport {
  overflow: hidden;
  border-radius: 8px;
}

.reviews-track {
  display: flex;
  transition: transform 900ms cubic-bezier(0.7, 0, 0.2, 1);
  will-change: transform;
}

.reviews-page {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  gap: 8px;
}

.review-card {
  min-height: 224px;
  display: flex;
  flex-direction: column;
  padding: 11px;
  border: 1px solid rgba(185, 24, 44, 0.3);
  border-radius: 8px;
  background: rgba(9, 4, 5, 0.88);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
}

.stars {
  color: var(--gold-muted);
  font-size: 0.82rem;
  letter-spacing: 0;
}

.review-card p {
  flex: 1;
  margin: 8px 0 10px;
  color: #eadbd7;
  font-family: var(--serif);
  font-size: 0.87rem;
  line-height: 1.32;
}

.review-card strong {
  margin-top: auto;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 0.96rem;
}

.review-card span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.review-dot {
  width: 36px;
  height: 7px;
  padding: 0;
  border: 1px solid rgba(185, 24, 44, 0.46);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.review-dot.is-active {
  background: var(--ruby);
}

.profile-strip {
  position: relative;
  padding: 76px 32px;
  overflow: hidden;
  border-top: 1px solid rgba(185, 24, 44, 0.22);
  border-bottom: 1px solid rgba(185, 24, 44, 0.22);
  background: rgba(5, 3, 3, 0.78);
}

.profile-inner {
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 34px;
}

.profile-photo {
  width: 112px;
  height: 112px;
}

.profile-inner h2 {
  overflow-wrap: anywhere;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.proof-content {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.proof-figure {
  margin: 0;
  width: min(430px, 100%);
}

.proof-figure img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(182, 0, 32, 0.34);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.38);
}

.proof-figure figcaption {
  margin-top: 10px;
  color: var(--soft);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  text-align: center;
}

.proof-list {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  gap: 12px;
  align-self: start;
  height: 430px;
  padding-top: 0;
}

.proof-list p {
  margin: 0;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(230, 0, 35, 0.2);
  border-radius: 8px;
  background: rgba(5, 3, 3, 0.34);
  backdrop-filter: blur(2px);
}

.contact-section {
  padding: 74px 32px;
  background:
    linear-gradient(90deg, rgba(5, 3, 3, 0.92), rgba(5, 3, 3, 0.66) 48%, rgba(5, 3, 3, 0.28)),
    linear-gradient(180deg, rgba(5, 3, 3, 0.34), rgba(5, 3, 3, 0.9)),
    url("assets/agenda-roses-candle.png") center / cover no-repeat;
  text-align: center;
}

.contact-content {
  width: min(980px, 100%);
  margin: 0 auto;
}

.contact-content h2 {
  font-size: 3.9rem;
}

.contact-content p {
  margin-top: 16px;
}

.contact-actions {
  justify-content: center;
  margin-top: 24px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  color: var(--muted);
  background: rgba(5, 3, 3, 0.94);
  border-top: 1px solid rgba(185, 24, 44, 0.18);
  font-size: 0.88rem;
}

.site-footer div:first-child {
  display: grid;
  gap: 8px;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
    min-height: 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  h1 {
    font-size: clamp(3.2rem, 9vw, 4rem);
  }

  h2,
  .contact-content h2 {
    font-size: 3.45rem;
  }

  .section-heading h2 {
    white-space: normal;
  }

  .single-line-title {
    white-space: normal;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ritual-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-card-wide {
    grid-column: 1 / -1;
    min-height: 360px;
  }

  .split,
  .consultation,
  .proof-grid,
  .distance-box {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .intro-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .intro-profile {
    width: min(430px, 100%);
  }

  .proof-content {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .proof-figure {
    width: min(430px, 100%);
  }

  .proof-figure img {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .proof-list {
    height: auto;
    grid-template-rows: none;
    padding-top: 0;
  }

  .review-card {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  body {
    background-attachment: scroll;
  }

  .site-header {
    padding: 12px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand-photo {
    width: 46px;
    height: 46px;
  }

  .brand small {
    display: none;
  }

  .header-action {
    min-height: 40px;
    padding: 0 12px;
  }

  .hero {
    min-height: 90vh;
    padding: 126px 20px 58px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 3, 3, 0.95), rgba(5, 3, 3, 0.62)),
      linear-gradient(180deg, rgba(5, 3, 3, 0.3), rgba(5, 3, 3, 0.92));
  }

  h1 {
    font-size: clamp(1.9rem, 8.7vw, 2.1rem);
    white-space: nowrap;
  }

  .hero-subtitle {
    margin-top: 10px;
    font-size: 0.88rem;
  }

  .hero-video-frame {
    width: min(100%, 400px);
    margin-top: 18px;
    padding: 6px;
  }

  .hero-video-frame::before,
  .hero-video-frame::after {
    display: none;
  }

  .hero-video {
    height: auto;
    max-height: min(64vh, 620px);
  }

  h2,
  .contact-content h2 {
    font-size: 2.95rem;
  }

  h3 {
    font-size: 2.25rem;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.45;
  }

  .section,
  .profile-strip,
  .contact-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-grid,
  .reviews-page {
    grid-template-columns: 1fr;
  }

  .ritual-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card-wide {
    min-height: 300px;
  }

  .reviews-page {
    gap: 12px;
  }

  .review-card {
    min-height: 0;
  }

  .service-card {
    min-height: 0;
  }

  .profile-inner {
    grid-template-columns: 1fr;
  }

  .profile-photo {
    width: 86px;
    height: 86px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
  }

  .footer-actions {
    justify-content: flex-start;
  }
}
