body.guides-page {
  background: #FAF4ED;
  color: #1a1210;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  --guides-accent: #a84f2f;
  --guides-text-soft: rgba(26, 18, 16, 0.72);
  --guides-ink-line: rgba(26, 18, 16, 0.16);
}

.guides-page h1,
.guides-page h2,
.guides-page h3 {
  font-family: 'Cormorant Garamond', serif;
  color: #1a1210;
  line-height: 1.15;
}

.guides-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  background:
    radial-gradient(circle at top left, rgba(180, 60, 60, 0.18), transparent 32%),
    radial-gradient(circle at bottom right, rgba(60, 20, 80, 0.22), transparent 40%),
    #0a0a0a;
  color: #f0ece5;
  overflow: hidden;
  text-align: left;
}

.guides-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: 32px;
}

.guides-hero__content {
  position: relative;
  z-index: 2;
}

.guides-hero__figure {
  position: relative;
  z-index: 1;
  margin: -10px -44px -24px 0;
}

.guides-hero__figure::before {
  content: "";
  position: absolute;
  inset: 13% 10% 9% 6%;
  border-radius: 48% 52% 46% 54%;
  background: rgba(255, 180, 140, 0.16);
  filter: blur(28px);
}

.guides-hero__figure img {
  position: relative;
  width: min(34vw, 360px);
  min-width: 260px;
  height: auto;
  display: block;
}

.guides-page .section-eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--guides-accent);
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

.guides-hero h1,
.guides-hero h2,
.guides-hero h3 {
  color: #f0ece5;
}

.guides-hero h1 {
  max-width: 11.5ch;
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  font-weight: 300;
  line-height: 1.08;
}

.guides-hero h1 em {
  font-style: italic;
}

.guides-hero__copy {
  max-width: 62ch;
  margin: 18px 0 0;
  font-size: 1rem;
  color: rgba(240, 236, 229, 0.9);
  font-weight: 300;
  line-height: 1.65;
}

.guides-hero__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: nowrap;
}

/* Button Standard Override */
.guides-page .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  background: rgba(180, 60, 60, 0.85);
  color: #ffffff;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.guides-page .btn-primary:hover {
  background: rgba(200, 70, 70, 1);
  box-shadow: 0 0 18px rgba(200, 70, 70, 0.4);
}

.guides-hero__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  color: #f0ece5;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(240, 236, 229, 0.28);
  border-radius: 2px;
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.guides-hero__link:hover {
  background: rgba(240, 236, 229, 0.08);
  border-color: rgba(240, 236, 229, 0.7);
  box-shadow: 0 0 18px rgba(200, 70, 70, 0.24);
}

.guides-section {
  padding: 104px 24px;
}

.guides-section--white {
  background: #FFFFFF;
  position: relative;
}

.guides-section--white::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

.guides-shell {
  max-width: 1000px;
  margin: 0 auto;
}

.guides-panel {
  position: relative;
  overflow: hidden;
  padding: 56px;
  background: #FFFFFF;
  border: 1px solid var(--guides-ink-line);
  border-radius: 2px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.guides-panel > *:not(.guides-panel__image) {
  position: relative;
  z-index: 1;
}

.guides-panel__image {
  position: absolute;
  top: -70px;
  right: -80px;
  width: min(34vw, 340px);
  min-width: 260px;
  height: auto;
  opacity: 0.24;
  pointer-events: none;
}

.guides-section__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.guides-section__image {
  width: min(28vw, 280px);
  min-width: 210px;
  height: auto;
  margin-top: -42px;
  opacity: 0.85;
}

.guides-title {
  margin: 0 0 24px;
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
}

.guides-title em {
  font-style: italic;
}

.guides-page .divider {
  width: 64px;
  height: 1px;
  margin: 0 0 32px;
  background: #1a1210;
  opacity: 0.32;
}

.guides-page .paragraph-large {
  margin: 0 0 40px;
  font-size: 1.15rem;
  color: #1a1210;
  max-width: 64ch;
  font-weight: 300;
  line-height: 1.75;
}

.guides-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--guides-ink-line);
  border-bottom: 1px solid var(--guides-ink-line);
}

.guides-feature {
  position: relative;
  display: block;
  text-decoration: none;
  padding: 32px 36px 34px;
  color: #1a1210;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.guides-feature::after,
.guides-card::after {
  content: "Read";
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  color: #1a1210;
  border-bottom: 1px solid rgba(26, 18, 16, 0.42);
  padding-bottom: 5px;
}

.guides-feature + .guides-feature {
  border-left: 1px solid var(--guides-ink-line);
}

.guides-feature:hover {
  background: rgba(250, 244, 237, 0.7);
}

.guides-feature__label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--guides-accent);
  margin: 0 0 14px;
  font-weight: 400;
}

.guides-feature h3 {
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 300;
  margin: 0 0 14px;
}

.guides-feature p {
  color: var(--guides-text-soft);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.guides-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--guides-ink-line);
}

.guides-card {
  display: block;
  text-decoration: none;
  padding: 0 26px 32px;
  color: #1a1210;
  border-bottom: 1px solid var(--guides-ink-line);
  transition: color 0.25s ease, background-color 0.25s ease;
}

.guides-card:not(:nth-child(4n + 1)) {
  border-left: 1px solid var(--guides-ink-line);
}

.guides-card:hover {
  background: rgba(250, 244, 237, 0.5);
}

.guides-card__label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--guides-accent);
  margin: 28px 0 14px;
  font-weight: 400;
}

.guides-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 300;
  margin: 0 0 12px;
}

.guides-card p {
  font-size: 0.95rem;
  color: var(--guides-text-soft);
  line-height: 1.7;
  margin: 0;
}

.guides-section--temple {
  background:
    radial-gradient(circle at 14% 18%, rgba(228, 190, 146, 0.22), transparent 30%),
    radial-gradient(circle at 84% 22%, rgba(192, 144, 110, 0.18), transparent 34%),
    linear-gradient(160deg, rgba(16, 12, 10, 0.94), rgba(8, 7, 7, 0.98)),
    #0a0a0a;
  color: #f0ece5;
}

.guides-section--temple .section-eyebrow,
.guides-hero .section-eyebrow {
  color: rgba(240, 236, 229, 0.7);
}

.guides-section--temple .guides-title,
.guides-section--temple h2,
.guides-section--temple h3 {
  color: #f0ece5;
}

.guides-section--temple .paragraph-large {
  color: rgba(240, 236, 229, 0.82);
  margin-left: auto;
  margin-right: auto;
}

.guides-section--temple .paragraph-large a {
  display: inline-flex;
  color: rgba(244, 214, 186, 0.96);
  text-decoration: none;
  border-bottom: 1px solid rgba(228, 190, 146, 0.72);
  padding-bottom: 2px;
}

.guides-next-step {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.guides-next-step .guides-title {
  margin-left: auto;
  margin-right: auto;
}

.guides-next-step .divider {
  margin-left: auto;
  margin-right: auto;
  background: #f0ece5;
  opacity: 0.32;
}

.guides-next-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 0;
  margin-top: 32px;
}

.guides-next-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #f0ece5;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(240, 236, 229, 0.44);
  padding-bottom: 6px;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.guides-next-link + .guides-next-link::before {
  content: "";
  width: 28px;
  height: 1px;
  margin: 0 16px;
  background: rgba(240, 236, 229, 0.35);
}

.guides-next-link:hover {
  color: rgba(244, 214, 186, 0.95);
  border-color: rgba(228, 190, 146, 0.85);
}

@media (min-width: 769px) {
  .guides-hero__actions {
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 900px) {
  .guides-hero {
    isolation: isolate;
  }

  .guides-hero__inner {
    display: block;
  }

  .guides-hero__figure {
    position: absolute;
    top: 86px;
    right: -128px;
    z-index: -1;
    margin: 0;
    opacity: 0.58;
  }

  .guides-hero__figure img {
    width: min(76vw, 390px);
    min-width: 0;
  }

  .guides-section__header {
    display: block;
  }

  .guides-section__image {
    display: none;
  }

  .guides-feature-grid,
  .guides-card-grid {
    grid-template-columns: 1fr;
  }

  .guides-feature + .guides-feature,
  .guides-card:not(:nth-child(4n + 1)) {
    border-left: 0;
  }

  .guides-feature + .guides-feature {
    border-top: 1px solid var(--guides-ink-line);
  }
}

@media (max-width: 768px) {
  .guides-hero {
    padding: 0 20px;
  }

  .guides-hero h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .guides-hero__copy {
    margin-top: 14px;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .guides-section {
    padding: 88px 20px;
  }

  .guides-panel {
    padding: 36px 24px;
  }

  .guides-hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 18px;
  }

  .guides-page .btn-primary,
  .guides-hero__link {
    min-height: 44px;
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .guides-panel__image {
    width: 230px;
    min-width: 0;
    opacity: 0.16;
  }

  .guides-next-list {
    align-items: flex-start;
    flex-direction: column;
  }

  .guides-next-link + .guides-next-link::before {
    display: none;
  }
}