/* the long spell - a pragmatic grimoire */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red: #ff0000;
  --red-light: rgba(255, 0, 0, 0.2);
  --white: #fff;
  --black: #000;
}

html {
  height: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  background: var(--white);
  font-family: "Times New Roman", Times, serif;
  color: var(--red);
  font-size: 16px;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 4rem;
  min-height: 100vh;
}

/* header - left aligned & compact */
header {
  text-align: left;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
}

h1 {
  font-size: 2rem;
  font-style: italic;
  font-weight: normal;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.tagline {
  font-size: 1rem;
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: var(--red-light);
  text-underline-offset: 6px;
  opacity: 0.8;
  letter-spacing: 0.3px;
}

/* intro section - left aligned & compact */
.intro {
  text-align: left;
  margin-bottom: 3rem;
  max-width: 700px;
}

.intro p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.game-line {
  font-style: italic;
  font-size: 1rem;
  opacity: 0.7;
  color: var(--black) !important;
}

/* offerings sections - horizontal layout */
.offerings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.category {
  border-top: 1px solid var(--red-light);
  padding-top: 2rem;
}

.category h2 {
  font-size: 1.8rem;
  font-style: italic;
  font-weight: normal;
  margin-bottom: 2rem;
  text-decoration: underline;
  text-decoration-color: var(--red-light);
  text-underline-offset: 8px;
  letter-spacing: 0.3px;
}

.category-intro {
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 3rem;
  opacity: 0.85;
  max-width: 600px;
}

/* services */
.service {
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 0, 0, 0.1);
}

.service:last-child {
  border-bottom: none;
}

.service h3 {
  font-size: 1.3rem;
  font-style: italic;
  font-weight: normal;
  margin-bottom: 0.5rem;
}

.duration {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-bottom: 1rem;
  font-style: italic;
}

.description {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  max-width: 700px;
}

/* tiers */
.tier {
  margin-bottom: 4rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255, 0, 0, 0.1);
}

.tier:last-child {
  border-bottom: none;
}

.tier-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.tier h3 {
  font-size: 1.4rem;
  font-style: italic;
  font-weight: normal;
}

.tier-details {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
}

.tier-stats {
  font-size: 0.9rem;
  opacity: 0.7;
  font-style: italic;
}

.tier-price {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--red);
}

.tier-description {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 700px;
}

.tier-includes {
  margin-bottom: 2rem;
}

.tier-includes h4 {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 1rem;
  opacity: 0.8;
  font-weight: normal;
}

.tier-includes ul {
  list-style: none;
  margin-left: 1.5rem;
}

.tier-includes li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  opacity: 0.8;
  position: relative;
}

.tier-includes li:before {
  content: "→";
  position: absolute;
  left: -1.5rem;
  color: var(--red);
}

/* ad-hoc service */
.ad-hoc {
  background: rgba(255, 0, 0, 0.02);
  padding: 2rem;
  border: 1px solid var(--red-light);
  border-bottom: 1px solid var(--red-light) !important;
}

.price {
  font-size: 1.3rem;
  font-style: italic;
  margin: 1.5rem 0;
  color: var(--red);
}

/* call to action buttons */
.cta {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--red);
  background: transparent;
  text-decoration: underline;
  text-decoration-color: var(--red-light);
  text-underline-offset: 4px;
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
}

.cta:hover {
  text-decoration-color: var(--red);
  opacity: 0.7;
  transform: translateY(-1px);
}

/* responsive */
@media (max-width: 900px) {
  .container {
    padding: 2rem 2rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  .tagline {
    font-size: 0.95rem;
  }

  .tier-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .tier-details {
    align-items: flex-start;
  }

  .offerings {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .category {
    padding-top: 1.5rem;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }

  .container {
    padding: 2rem 1.5rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  .category h2 {
    font-size: 1.5rem;
  }

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

  .ad-hoc {
    padding: 1.5rem;
  }
}