:root {
  color-scheme: dark;
  --ink: #fff9ef;
  --soft: #e4d6c7;
  --muted: #aa9a8e;
  --night: #110f14;
  --wine: #3b182d;
  --fig: #22172d;
  --gold: #d8b15f;
  --copper: #b86f52;
  --sage: #91a989;
  --blue: #8ba7c4;
  --panel: rgba(255, 249, 239, 0.075);
  --panel-strong: rgba(255, 249, 239, 0.12);
  --line: rgba(255, 249, 239, 0.18);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    radial-gradient(circle at 18% 8%, rgba(184, 111, 82, 0.28), transparent 30rem),
    radial-gradient(circle at 88% 24%, rgba(139, 167, 196, 0.17), transparent 28rem),
    linear-gradient(135deg, #110f14 0%, #231529 48%, #151d1b 100%);
  background-size: 72px 72px, 72px 72px, auto, auto, auto;
  color: var(--ink);
  font-family: "sigurd", Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-style: italic;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    radial-gradient(circle, rgba(255, 249, 239, 0.18) 1px, transparent 1px),
    radial-gradient(circle, rgba(216, 177, 95, 0.2) 1px, transparent 1px);
  background-position: 8% 18%, 74% 12%;
  background-size: 180px 180px, 260px 260px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

a {
  color: inherit;
}

.mystical-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

.nav,
.hero,
.section,
.intro-strip,
.quote-band {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 249, 239, 0.055);
  color: var(--ink);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.brand:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 177, 95, 0.48);
  background: rgba(216, 177, 95, 0.12);
}

.brand svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-links,
.eyebrow,
.section-kicker,
.intro,
.button,
.about-copy,
.service-card p,
.card-number,
.contact-copy p,
.contact-panel,
figcaption {
  font-family: "sigurd", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--soft);
  font-size: 1.46rem;
}

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

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

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 450px);
  align-items: center;
  gap: clamp(36px, 7vw, 92px);
  padding: 48px 0 76px;
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.moon-ring {
  position: absolute;
  width: clamp(280px, 36vw, 520px);
  aspect-ratio: 1;
  right: 13%;
  top: 11%;
  border: 1px solid rgba(216, 177, 95, 0.22);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 34px rgba(216, 177, 95, 0.03),
    0 0 120px rgba(216, 177, 95, 0.08);
}

.star {
  position: absolute;
  color: var(--gold);
  opacity: 0.62;
}

.star-one {
  left: 4%;
  top: 18%;
  font-size: 1.7rem;
}

.star-two {
  right: 3%;
  bottom: 20%;
  color: var(--blue);
  font-size: 2.2rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: clamp(1.22rem, 1.8vw, 1.6rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "altesse-std-64pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: clamp(6rem, 12.2vw, 10rem);
  line-height: 0.84;
}

h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.45rem, 5vw, 4.4rem);
  line-height: 0.98;
}

.intro {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--soft);
  font-size: clamp(1.2rem, 1.65vw, 1.48rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 1.45rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, #f0cf7a, #b86f52);
  border-color: transparent;
  color: #1a1113;
  box-shadow: 0 18px 40px rgba(184, 111, 82, 0.22);
}

.button.secondary {
  background: rgba(255, 249, 239, 0.055);
  color: var(--soft);
}

.portrait-panel {
  position: relative;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 30px 30px 190px 190px;
  background:
    linear-gradient(180deg, rgba(255, 249, 239, 0.13), rgba(255, 249, 239, 0.045)),
    rgba(17, 15, 20, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.portrait-panel::before {
  position: absolute;
  inset: -14px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(216, 177, 95, 0.18);
  border-radius: 36px 36px 210px 210px;
}

.portrait-frame {
  overflow: hidden;
  border-radius: 22px 22px 170px 170px;
  background: #1a1420;
}

.portrait {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5.25;
  object-fit: cover;
}

figcaption {
  margin: 16px 0 6px;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-strip span {
  min-height: 86px;
  display: grid;
  place-items: center;
  color: var(--soft);
  font-family: "altesse-std-64pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  border-right: 1px solid var(--line);
}

.intro-strip span:last-child {
  border-right: 0;
}

.section {
  padding: clamp(76px, 10vw, 128px) 0;
}

.about,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 22px;
  color: var(--soft);
  font-size: 1.48rem;
  line-height: 1.5;
}

.about-copy p,
.contact-copy p,
.service-card p,
.quote-band p {
  margin-bottom: 0;
}

.readings {
  border-top: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 34px;
}

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

.service-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(150deg, rgba(255, 249, 239, 0.12), rgba(255, 249, 239, 0.035)),
    rgba(17, 15, 20, 0.52);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.card-number {
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.service-card h3 {
  max-width: 260px;
  margin-bottom: 18px;
  font-family: "altesse-std-64pt", sans-serif;
  font-size: 1.88rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.1;
}

.service-card p:last-child {
  color: var(--soft);
  font-size: 1.34rem;
  line-height: 1.42;
}

.quote-band {
  padding: clamp(46px, 7vw, 76px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(145, 169, 137, 0.18), rgba(139, 167, 196, 0.11)),
    rgba(255, 249, 239, 0.055);
}

.quote-band p {
  max-width: 820px;
  color: var(--ink);
  font-family: "altesse-std-64pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(2rem, 4.4vw, 4.5rem);
  line-height: 1.05;
}

.contact {
  align-items: end;
}

.contact-copy p {
  max-width: 560px;
  margin-top: 24px;
  color: var(--soft);
  font-size: 1.48rem;
  line-height: 1.5;
}

.contact-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(17, 15, 20, 0.62);
  box-shadow: var(--shadow);
  font-style: normal;
}

.contact-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 24px;
  color: var(--ink);
  font-size: 1.34rem;
  border-bottom: 1px solid var(--line);
}

.contact-item a,
.location-item {
  min-width: 0;
  display: grid;
  gap: 6px;
  color: var(--ink);
  text-decoration: none;
}

.contact-item:last-child {
  border-bottom: 0;
}

.location-item {
  grid-template-columns: 1fr;
}

.contact-panel span {
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-item:has(a:hover) {
  background: rgba(255, 249, 239, 0.055);
}

.copy-button {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 249, 239, 0.06);
  color: var(--ink);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.copy-button:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 177, 95, 0.5);
  background: rgba(216, 177, 95, 0.14);
}

.copy-button.copied {
  border-color: rgba(145, 169, 137, 0.62);
  background: rgba(145, 169, 137, 0.18);
  color: var(--sage);
}

.copy-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 900px) {
  .hero,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .portrait-panel {
    max-width: 440px;
  }

  .intro-strip,
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .intro-strip span:nth-child(2) {
    border-right: 0;
  }

  .intro-strip span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .nav,
  .hero,
  .section,
  .intro-strip,
  .quote-band {
    width: min(100% - 24px, 520px);
  }

  .nav {
    height: auto;
    padding: 20px 0;
    align-items: flex-start;
  }

  .nav-links {
    gap: 12px;
    font-size: 1rem;
  }

  h1 {
    font-size: clamp(5rem, 24vw, 7.5rem);
  }

  .hero-actions,
  .intro-strip,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .intro-strip span,
  .intro-strip span:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-strip span:last-child {
    border-bottom: 0;
  }

  .service-card {
    min-height: 240px;
  }
}
