:root {
  color-scheme: light;
  --ink: #1b1020;
  --deep: #120b17;
  --plum: #3a1d3e;
  --plum-2: #2a1730;
  --emerald: #0e3a2c;
  --emerald-2: #0a2c24;
  --gold: #c99445;
  --gold-2: #e4b768;
  --cream: #fbf5ec;
  --paper: #fffaf3;
  --muted: #6f6070;
  --line: rgba(94, 59, 31, 0.18);
  --shadow: 0 18px 54px rgba(36, 18, 35, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 12%, rgba(201, 148, 69, 0.08), transparent 32%),
    linear-gradient(180deg, #fffaf4, #fbf3e8 58%, #fffaf4);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.svg-icon {
  display: block;
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 86px;
  padding: 18px clamp(22px, 5vw, 76px);
  color: #fff;
}

.brand img,
.footer-brand img {
  display: block;
  width: 190px;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.28));
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 650;
}

.nav a,
.header-cta,
.button {
  border-radius: 8px;
}

.nav a {
  padding: 9px 0;
  transition: color 160ms ease;
}

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

.nav a.is-active {
  color: var(--gold-2);
}

.nav a.is-active::after {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 5px;
  background: var(--gold-2);
  content: "";
}

.header-cta.is-active {
  background: rgba(201, 148, 69, 0.28);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(228, 183, 104, 0.75);
  background: rgba(14, 58, 44, 0.74);
  color: #fff7e7;
  font-weight: 850;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.hero {
  position: relative;
  min-height: 570px;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.9fr);
  align-items: end;
  gap: 34px;
  padding: 132px clamp(22px, 6vw, 78px) 62px;
  overflow: hidden;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(16, 9, 18, 0.96) 0%, rgba(16, 9, 18, 0.78) 40%, rgba(16, 9, 18, 0.28) 72%),
    linear-gradient(180deg, rgba(16, 9, 18, 0.1), rgba(16, 9, 18, 0.68)),
    url("/assets/hero-fal.png") center / cover no-repeat;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 130px;
  background: linear-gradient(180deg, rgba(16, 9, 18, 0), rgba(16, 9, 18, 0.48));
  content: "";
}

.hero-copy {
  max-width: 720px;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 6vw, 5.85rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--gold-2);
}

.hero p {
  max-width: 555px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 26px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 880;
  letter-spacing: 0;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button .svg-icon,
.header-cta .svg-icon {
  width: 1.05rem;
  height: 1.05rem;
}

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

.button.primary {
  border-color: rgba(228, 183, 104, 0.82);
  background: rgba(14, 58, 44, 0.9);
  color: #fff8e8;
  box-shadow: 0 16px 36px rgba(14, 58, 44, 0.32);
}

.button.gold {
  background: linear-gradient(180deg, #e6b96e, #c99142);
  color: #fff;
  box-shadow: 0 16px 38px rgba(201, 148, 69, 0.28);
}

.button.plum {
  width: 100%;
  background: linear-gradient(180deg, #4a2851, #35193d);
  color: #fff;
}

.button.submit {
  width: 100%;
  background: linear-gradient(180deg, #15513e, #0d372b);
  color: #fff;
}

.status-panel {
  align-self: end;
  justify-self: end;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(630px, 100%);
  border: 1px solid rgba(228, 183, 104, 0.24);
  border-radius: 8px;
  background: rgba(28, 16, 32, 0.72);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
}

.status-panel div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 84px;
  padding: 14px 18px;
}

.status-panel div + div {
  border-left: 1px solid rgba(228, 183, 104, 0.18);
}

.panel-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid rgba(228, 183, 104, 0.58);
  border-radius: 999px;
  color: var(--gold-2);
}

.panel-icon .svg-icon {
  width: 1.35rem;
  height: 1.35rem;
}

.status-panel strong,
.status-panel small {
  display: block;
}

.status-panel strong {
  color: #fff;
  line-height: 1.15;
}

.status-panel small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.82);
}

.status-panel i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 5px;
  border-radius: 999px;
  background: #3bd46c;
  vertical-align: middle;
}

.reader-wrap,
.services-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px clamp(18px, 5vw, 70px) 0;
}

.reader-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(340px, 1.05fr);
  gap: 18px;
}

.reader-form,
.message-card,
.booking-form {
  border: 1px solid rgba(180, 132, 76, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 250, 242, 0.94)),
    var(--paper);
  box-shadow: var(--shadow);
}

.reader-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 28px);
}

.reader-form h2,
.section-title h2,
.section-heading h2,
.flow-section h2,
.booking-visual h2,
.about-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.reader-form h2 {
  font-size: 1.5rem;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  position: relative;
  display: grid;
  gap: 8px;
  color: #25172a;
  font-size: 0.88rem;
  font-weight: 720;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(147, 95, 54, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
}

input,
select {
  min-height: 48px;
  padding: 0 14px;
}

textarea {
  min-height: 118px;
  padding: 14px;
  resize: vertical;
}

.char-count {
  position: absolute;
  right: 14px;
  bottom: 10px;
  color: #736477;
  font-size: 0.8rem;
  font-weight: 700;
}

.message-card {
  display: grid;
  align-content: start;
  gap: 24px;
  padding: clamp(22px, 3vw, 34px);
}

.section-title,
.section-heading {
  display: grid;
  grid-template-columns: auto minmax(30px, 1fr);
  align-items: center;
  gap: 10px;
}

.section-title h2,
.section-heading h2 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  text-transform: uppercase;
}

.section-title span,
.section-heading span {
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 148, 69, 0.72), transparent);
}

.card-reading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 26px;
  align-items: center;
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(201, 148, 69, 0.26);
  border-radius: 8px;
  background: #fffaf3;
  box-shadow: inset 0 0 34px rgba(201, 148, 69, 0.08);
}

.card-reading em {
  display: block;
  margin-bottom: 12px;
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 700;
}

.card-reading p {
  color: #302337;
}

.tarot-card {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  aspect-ratio: 0.68;
  border: 4px solid #d7b17a;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 25%, rgba(228, 183, 104, 0.62), transparent 18%),
    linear-gradient(160deg, #17392f, #20445c 58%, #d4a353);
  color: #fbe8b8;
  box-shadow: 0 14px 28px rgba(31, 19, 30, 0.2);
}

.tarot-card span .svg-icon {
  width: 3.4rem;
  height: 3.4rem;
}

.tarot-card strong {
  color: #2c1930;
  background: #e5c38b;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
}

.quote-link {
  justify-self: center;
  color: #b8783e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-style: italic;
}

.services-section {
  padding-top: 20px;
  padding-bottom: 18px;
}

.section-heading {
  grid-template-columns: minmax(30px, 1fr) auto minmax(30px, 1fr);
  max-width: 560px;
  margin: 0 auto 18px;
  text-align: center;
}

.section-heading span:first-child {
  background: linear-gradient(270deg, rgba(201, 148, 69, 0.72), transparent);
}

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

.service-card {
  overflow: hidden;
  border: 1px solid rgba(180, 132, 76, 0.28);
  border-radius: 8px;
  background: #fffaf3;
  box-shadow: 0 14px 36px rgba(36, 18, 35, 0.1);
}

.service-image {
  position: relative;
  height: 145px;
  background:
    linear-gradient(180deg, rgba(18, 11, 23, 0.05), rgba(18, 11, 23, 0.42)),
    url("/assets/hero-fal.png") center / cover no-repeat;
}

.service-card.coffee .service-image {
  background-position: 68% center;
}

.service-card.love .service-image {
  background-position: 80% center;
}

.service-card.career .service-image {
  background-position: 32% center;
}

.service-image span {
  position: absolute;
  left: 18px;
  bottom: -23px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(228, 183, 104, 0.7);
  border-radius: 999px;
  background: var(--plum);
  color: var(--gold-2);
}

.service-image .svg-icon {
  width: 1.45rem;
  height: 1.45rem;
}

.service-body {
  display: grid;
  gap: 10px;
  padding: 28px 18px 16px;
}

.service-body h3 {
  font-size: 1.35rem;
  font-weight: 760;
}

.service-body p {
  min-height: 76px;
  color: #3a2c3e;
}

.service-body a {
  display: inline-flex;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(180, 132, 76, 0.34);
  border-radius: 6px;
  font-weight: 760;
}

.flow-section {
  margin-top: 10px;
  padding: 22px clamp(18px, 5vw, 70px) 30px;
  background:
    linear-gradient(90deg, rgba(7, 42, 32, 0.98), rgba(11, 56, 44, 0.94)),
    url("/assets/hero-fal.png") center / cover no-repeat;
  color: #fff7e8;
}

.flow-section h2 {
  text-align: center;
  color: #f9e7c6;
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
  text-transform: uppercase;
}

.flow-steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  max-width: 980px;
  margin: 16px auto 0;
}

.flow-steps div {
  display: grid;
  grid-template-columns: 70px 26px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.flow-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(228, 183, 104, 0.7);
  border-radius: 999px;
  color: #f2d292;
}

.flow-icon .svg-icon {
  width: 1.9rem;
  height: 1.9rem;
}

.flow-steps small {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(228, 183, 104, 0.7);
  border-radius: 999px;
  color: #f2d292;
}

.flow-steps p,
.booking-visual small {
  color: rgba(255, 255, 255, 0.88);
}

.flow-steps strong {
  display: block;
  margin-bottom: 4px;
  color: #fff7e8;
  font-size: 1.1rem;
}

.flow-steps b {
  display: grid;
  place-items: center;
  color: var(--gold-2);
}

.flow-arrow .svg-icon {
  width: 2.2rem;
  height: 2.2rem;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(360px, 1fr);
  gap: 28px;
  padding: 34px clamp(18px, 5vw, 70px);
  background:
    linear-gradient(90deg, rgba(45, 24, 48, 0.96), rgba(45, 24, 48, 0.8)),
    url("/assets/hero-fal.png") 60% center / cover no-repeat;
}

.booking-visual {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  min-height: 260px;
  color: #fff5df;
  text-align: center;
}

.booking-visual p {
  color: #fff5df;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
  line-height: 1.08;
  text-transform: uppercase;
}

.booking-visual h2 {
  max-width: 360px;
  color: #fff5df;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.booking-visual span {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 30px);
}

.privacy {
  color: #6b5e66;
  font-size: 0.82rem;
  text-align: center;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 36px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 54px clamp(18px, 5vw, 70px) 0;
}

.about-section > div {
  display: grid;
  gap: 8px;
}

.about-section > div p {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.about-section h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
}

.reviews-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px clamp(18px, 5vw, 70px) 58px;
}

.reviews-section article {
  min-height: 120px;
  padding: 22px;
  border: 1px solid rgba(180, 132, 76, 0.26);
  border-radius: 8px;
  background: #fffaf3;
  color: #3b2b3e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  line-height: 1.55;
  box-shadow: 0 14px 34px rgba(36, 18, 35, 0.08);
}

.subpage-hero {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: end;
  padding: 132px clamp(22px, 6vw, 78px) 56px;
  overflow: hidden;
  color: #fff;
}

.subpage-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(16, 9, 18, 0.96), rgba(16, 9, 18, 0.7), rgba(16, 9, 18, 0.45)),
    url("/assets/hero-fal.png") center / cover no-repeat;
  content: "";
}

.subpage-hero h1 {
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  font-weight: 500;
  line-height: 1;
}

.subpage-hero p {
  max-width: 660px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.06rem;
}

.subpage-content {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 70px) clamp(18px, 5vw, 70px);
}

.content-panel {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(180, 132, 76, 0.28);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.96);
  box-shadow: var(--shadow);
}

.content-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 500;
}

.content-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: #3a2c3e;
  line-height: 1.65;
}

footer {
  display: grid;
  grid-template-columns: auto minmax(230px, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: 22px clamp(18px, 5vw, 70px) 28px;
  background: linear-gradient(90deg, #0a211c, #121018);
  color: rgba(255, 255, 255, 0.76);
}

footer p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(228, 183, 104, 0.5);
  border-radius: 8px;
  color: #ffe3ad;
  font-weight: 820;
}

footer small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.58);
}

.button:focus-visible,
.header-cta:focus-visible,
.nav a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(228, 183, 104, 0.5);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .site-header {
    position: relative;
    grid-template-columns: 1fr auto;
    background: var(--deep);
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .reader-shell,
  .booking-section,
  .about-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 70px;
  }

  .subpage-hero {
    padding: 54px 20px 42px;
  }

  .status-panel {
    justify-self: stretch;
  }

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

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    gap: 14px;
    padding: 16px 18px;
  }

  .brand img,
  .footer-brand img {
    width: 158px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.9rem;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 8px 14px;
    font-size: 0.9rem;
  }

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

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(16, 9, 18, 0.92), rgba(16, 9, 18, 0.68) 58%, rgba(16, 9, 18, 0.9)),
      url("/assets/hero-fal.png") 60% center / cover no-repeat;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 12vw, 3.75rem);
    line-height: 1.02;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .status-panel {
    grid-template-columns: 1fr;
  }

  .status-panel div + div {
    border-left: 0;
    border-top: 1px solid rgba(228, 183, 104, 0.18);
  }

  .reader-wrap,
  .services-section {
    padding-inline: 14px;
  }

  .form-row,
  .card-reading,
  .service-grid,
  .flow-steps,
  .reviews-section,
  footer {
    grid-template-columns: 1fr;
  }

  .card-reading {
    justify-items: center;
  }

  .tarot-card {
    width: min(160px, 72%);
  }

  .flow-steps {
    gap: 16px;
  }

  .flow-steps b {
    display: none;
  }

  .flow-steps div {
    grid-template-columns: 62px 24px minmax(0, 1fr);
  }

  .flow-icon {
    width: 62px;
    height: 62px;
  }

  .booking-section {
    padding-inline: 14px;
  }
}
