:root {
  --ink: #23181c;
  --muted: #d8c4c9;
  --paper: #fff8ed;
  --soft: #ead7c8;
  --plum: #2f1d2c;
  --plum-soft: #3d2538;
  --wine: #782f45;
  --wine-dark: #4f1f31;
  --teal: #1b6a66;
  --gold: #c99a45;
  --line: rgba(255, 248, 237, 0.16);
  --shadow: 0 24px 70px rgba(18, 10, 17, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #fff8ed;
  background: var(--plum);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 5vw, 64px);
  color: #fffdf8;
  background: linear-gradient(180deg, rgba(35, 24, 28, 0.74), rgba(35, 24, 28, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 58px;
  width: 58px;
  max-width: 58px;
  height: 58px;
  max-height: 58px;
  overflow: hidden;
}

.brand-logo,
.brand img {
  display: block;
  width: 58px;
  max-width: 58px;
  height: 58px;
  max-height: 58px;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.9;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-cta {
  min-width: 112px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 253, 248, 0.7);
  border-radius: 999px;
  text-align: center;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 253, 248, 0.5);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.12);
  color: #fffdf8;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 112px clamp(22px, 6vw, 80px) 76px;
  color: #fffdf8;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("assets/tarot-hero.png");
  background-size: cover;
  background-position: center right;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(28, 18, 23, 0.91) 0%, rgba(39, 22, 29, 0.72) 42%, rgba(39, 22, 29, 0.18) 100%),
    linear-gradient(180deg, rgba(35, 24, 28, 0.18), rgba(35, 24, 28, 0.42));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.95;
}

h1 {
  max-width: 640px;
  font-size: clamp(72px, 12vw, 148px);
}

h2 {
  max-width: 760px;
  font-size: clamp(42px, 7vw, 82px);
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
}

.hero-copy {
  max-width: 610px;
  margin: 26px 0 0;
  color: rgba(255, 253, 248, 0.84);
  font-size: clamp(18px, 2.2vw, 24px);
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: #fffdf8;
  background: var(--wine);
  box-shadow: 0 16px 32px rgba(120, 47, 69, 0.28);
}

.button.primary:hover {
  background: var(--wine-dark);
}

.button.secondary {
  border: 1px solid rgba(255, 253, 248, 0.55);
  color: #fffdf8;
  background: rgba(255, 253, 248, 0.1);
}

.button.full {
  width: 100%;
}

.intro-band {
  padding: 22px clamp(18px, 5vw, 64px);
  background: var(--wine-dark);
  color: #fffdf8;
}

.intro-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 253, 248, 0.18);
}

.intro-grid article {
  min-height: 120px;
  padding: 26px;
  background: var(--wine-dark);
}

.intro-grid strong,
.intro-grid span {
  display: block;
}

.intro-grid strong {
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1;
}

.intro-grid span {
  color: rgba(255, 253, 248, 0.74);
}

.section {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(72px, 11vw, 132px) clamp(22px, 5vw, 40px);
  gap: clamp(34px, 5vw, 72px);
}

.work-section,
.consultation-section {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
}

.section-copy p,
.consultation-copy p,
.booking-box p,
.quote-panel p {
  color: var(--muted);
  font-size: 17px;
}

.section-copy p {
  max-width: 700px;
}

.quote-panel {
  position: relative;
  padding: 34px;
  border-left: 5px solid var(--teal);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.quote-mark {
  display: block;
  height: 34px;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 86px;
  line-height: 0.7;
}

.quote-panel p {
  color: #5f5055;
  margin: 16px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.tarot-section {
  max-width: none;
  background:
    linear-gradient(180deg, rgba(79, 31, 49, 0.22), rgba(47, 29, 44, 0.96)),
    var(--plum-soft);
}

.tarot-section .section-heading,
.tarot-carousel {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.tarot-section .section-heading {
  color: #fff8ed;
}

.tarot-carousel {
  display: grid;
  gap: 22px;
}

.carousel-viewport {
  position: relative;
  min-height: 560px;
}

.tarot-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(35, 24, 28, 0.36);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateX(16px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.tarot-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.tarot-slide img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.slide-copy {
  display: grid;
  align-content: center;
  min-height: 560px;
  padding: clamp(28px, 5vw, 56px);
  background:
    linear-gradient(135deg, rgba(79, 31, 49, 0.94), rgba(47, 29, 44, 0.94)),
    var(--wine-dark);
}

.slide-copy h3 {
  margin-top: 0;
  color: #fff8ed;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 0.95;
}

.slide-copy p {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 248, 237, 0.78);
  font-size: 17px;
}

.carousel-controls {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  gap: 16px;
}

.carousel-arrow {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 248, 237, 0.35);
  border-radius: 50%;
  color: #fff8ed;
  background: rgba(255, 248, 237, 0.08);
  font-size: 22px;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.carousel-arrow:hover {
  background: rgba(255, 248, 237, 0.16);
  transform: translateY(-1px);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.carousel-dots button {
  width: 42px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 248, 237, 0.28);
  cursor: pointer;
}

.carousel-dots button.is-active {
  background: var(--gold);
}

.booking-box {
  padding: 34px;
  border: 1px solid rgba(201, 154, 69, 0.35);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(27, 106, 102, 0.1), rgba(120, 47, 69, 0.08)),
    var(--paper);
  box-shadow: var(--shadow);
}

.booking-box h3 {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 36px;
}

.booking-box p {
  color: #6e5f63;
}

.site-footer {
  padding: 24px clamp(22px, 5vw, 64px);
  color: #fffdf8;
  background: var(--ink);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

.site-footer a {
  color: rgba(255, 253, 248, 0.78);
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 253, 248, 0.74);
  font-size: 14px;
  white-space: nowrap;
}

.instagram-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.06);
  font-weight: 800;
  transition: background 180ms ease, transform 180ms ease;
}

.instagram-link:hover {
  background: rgba(255, 253, 248, 0.12);
  transform: translateY(-1px);
}

.instagram-link svg {
  flex: 0 0 20px;
  width: 20px;
  max-width: 20px;
  height: 20px;
  max-height: 20px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

@media (max-width: 840px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(255, 253, 248, 0.22);
    border-radius: 8px;
    background: rgba(35, 24, 28, 0.96);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .nav-cta {
    border-radius: 8px;
  }

  .hero {
    min-height: 84svh;
    padding-top: 104px;
  }

  .hero-bg {
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(28, 18, 23, 0.92) 0%, rgba(39, 22, 29, 0.8) 58%, rgba(39, 22, 29, 0.36) 100%),
      linear-gradient(180deg, rgba(35, 24, 28, 0.14), rgba(35, 24, 28, 0.5));
  }

  .intro-grid,
  .work-section,
  .consultation-section {
    grid-template-columns: 1fr;
  }

  .intro-grid article {
    min-height: auto;
  }

  .carousel-viewport {
    min-height: 830px;
  }

  .tarot-slide {
    grid-template-columns: 1fr;
  }

  .tarot-slide img {
    height: 330px;
    min-height: 330px;
  }

  .slide-copy {
    min-height: 500px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    flex-basis: 52px;
    width: 52px;
    max-width: 52px;
    height: 52px;
    max-height: 52px;
  }

  .brand-logo,
  .brand img {
    width: 52px;
    max-width: 52px;
    height: 52px;
    max-height: 52px;
  }

  .hero {
    min-height: 82svh;
    padding: 96px 20px 52px;
  }

  h1 {
    font-size: clamp(58px, 18vw, 84px);
  }

  h2 {
    font-size: clamp(38px, 13vw, 56px);
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 64px 20px;
  }

  .quote-panel,
  .booking-box,
  .slide-copy {
    padding: 24px;
  }

  .carousel-viewport {
    min-height: 900px;
  }

  .tarot-slide img {
    height: 260px;
    min-height: 260px;
  }

  .slide-copy {
    min-height: 640px;
  }

  .carousel-controls {
    grid-template-columns: 46px 1fr 46px;
    gap: 10px;
  }

  .carousel-arrow {
    width: 46px;
    height: 46px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-social {
    flex-direction: column;
    align-items: flex-start;
    white-space: normal;
  }
}

footer.site-footer {
  display: block;
  padding-top: 18px;
  padding-bottom: 18px;
  min-height: 0;
}

footer.site-footer .footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

footer.site-footer .footer-social {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

footer.site-footer .instagram-link svg {
  width: 20px;
  max-width: 20px;
  height: 20px;
  max-height: 20px;
}

@media (max-width: 560px) {
  footer.site-footer .footer-inner,
  footer.site-footer .footer-social {
    flex-direction: column;
    align-items: flex-start;
  }
}
